/* ==========================================================================
   THE BOXED — Design System
   Premium uramljeni posteri legendi fudbala + World Cup slicice
   ========================================================================== */

:root {
  /* Color */
  --bg: #0a0a0a;
  --bg-elevated: #151513;
  --bg-card: #181816;
  --line: #2a2a26;
  --gold: #c9a227;
  --gold-light: #e8c766;
  --gold-dim: #8a7320;
  --text: #f3f1ea;
  --text-muted: #9b9890;
  --text-faint: #5c5a54;
  --danger: #c44b3c;
  --success: #5c8a5c;

  /* Type */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max-w: 1240px;
  --pad: 24px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--text);
}

p { margin: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border-radius: var(--radius);
}
.btn:hover { background: var(--gold); color: #0a0a0a; box-shadow: 0 0 28px rgba(201,162,39,0.45); }
.btn:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.btn-solid {
  background: var(--gold);
  color: #0a0a0a;
  box-shadow: 0 0 18px rgba(201,162,39,0.25);
}
.btn-solid:hover { background: var(--gold-light); border-color: var(--gold-light); box-shadow: 0 0 32px rgba(201,162,39,0.55); }

.btn-full { width: 100%; }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* ---------- Gold timeline thread (signature element) ---------- */
.thread {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.thread::before,
.thread::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 20%, var(--gold-dim) 80%, transparent);
}
.thread-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
  box-shadow: 0 0 14px 2px rgba(201,162,39,0.6);
}

.thread-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 720px;
  padding: 0 var(--pad);
}
.thread-row .tick {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-dim);
}
.thread-row .tick.active { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.thread-line {
  position: relative;
  height: 1px;
  background: var(--line);
  margin: 0 auto;
  max-width: 720px;
}
.thread-line .fill {
  position: absolute;
  inset: 0;
  width: 60%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

/* Transparent header: blends into hero, solidifies on scroll (homepage only) */
.site-header.transparent {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.site-header.transparent.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(201,162,39,0.35));
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}

.header-actions { display: flex; align-items: center; gap: 20px; }
.cart-link { position: relative; display: flex; align-items: center; }
.cart-count {
  position: absolute;
  top: -8px; right: -12px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.burger {
  display: none;
  background: none; border: none;
  width: 28px; height: 22px;
  position: relative;
  cursor: pointer;
}
.burger span {
  position: absolute; left: 0; right: 0; height: 1px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }
.burger.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--line);
  z-index: 99;
  padding: 8px var(--pad) 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mobile-nav a.active { color: var(--gold-light); }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .burger { display: block; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.22) translateY(-9%);
  transform-origin: center center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.78) 35%, rgba(10,10,10,0.98) 100%);
  z-index: 1;
}
.hero-top-fade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.hero-content .eyebrow { display: block; margin-bottom: 18px; }
.hero-content h1 {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.05;
  font-weight: 700;
  color: var(--text);
}
.hero-content h1 .gold-word {
  background: linear-gradient(135deg, var(--gold-light) 10%, var(--gold) 55%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  max-width: 540px;
  margin: 22px auto 36px;
  color: var(--text-muted);
  font-size: 16px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-thread {
  position: absolute;
  bottom: 36px; left: 0; right: 0;
  z-index: 2;
}

@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 220px; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 96px 0; }
.section-tight { padding: 56px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.section-head p { margin-top: 16px; color: var(--text-muted); }

.bg-elevated { background: var(--bg-elevated); }

/* ---------- Product grid / cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 620px) {
  .product-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -12px rgba(201,162,39,0.25), 0 0 0 1px rgba(201,162,39,0.15);
}
.product-card a.card-link { display: block; }
.product-card .thumb-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #000;
}
.product-card .thumb-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.4s ease;
}
.product-card .thumb-wrap img.thumb-secondary {
  position: absolute; inset: 0; opacity: 0;
}
.product-card:hover .thumb-secondary { opacity: 1; }

.product-card .badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(10,10,10,0.75);
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 2;
}
.product-card .info { padding: 22px 20px 24px; }
.product-card .info h3 { font-size: 22px; margin-bottom: 6px; }
.product-card .info .sub {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.product-card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.price {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(201,162,39,0.35);
}
.price-from { font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-right: 6px; }

/* ---------- Feature strip ---------- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 760px) {
  .feature-strip { grid-template-columns: 1fr; gap: 28px; }
}
.feature-item { text-align: center; }
.feature-item .icon {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.feature-item h4 { font-size: 17px; margin-bottom: 8px; letter-spacing: 0.02em; }
.feature-item p { color: var(--text-muted); font-size: 14px; }

/* ==========================================================================
   Product detail page
   ========================================================================== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 860px) {
  .product-detail { grid-template-columns: 1fr; gap: 36px; }
}

.gallery-main {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
  position: relative;
}
.gallery-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}
.gallery-media.active { opacity: 1; z-index: 2; }
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(10,10,10,0.55);
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.gallery-arrow:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201,162,39,0.5);
}
.gallery-arrow.prev { left: 14px; }
.gallery-arrow.next { right: 14px; }
.gallery-dots {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.gallery-dots .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(243,241,234,0.4);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.gallery-dots .dot.active {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201,162,39,0.7);
}
.gallery-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.gallery-thumbs button {
  width: 76px; height: 96px;
  padding: 0; border: 1px solid var(--line);
  background: #000;
  cursor: pointer;
  overflow: hidden;
}
.gallery-thumbs button.active { border-color: var(--gold); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs .tag {
  display: block;
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 4px;
}

.pd-eyebrow { display: block; margin-bottom: 10px; }
.product-detail h1 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 10px; }
.pd-price { font-family: var(--font-display); font-size: 28px; color: var(--gold-light); margin-bottom: 24px; text-shadow: 0 0 18px rgba(201,162,39,0.35); }
.pd-desc { color: var(--text-muted); margin-bottom: 28px; font-size: 15px; }

.option-group { margin-bottom: 26px; }
.option-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.option-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.option-pill {
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.option-pill .pill-price { display: block; font-size: 11px; color: var(--text-faint); margin-top: 3px; }
.option-pill.active { border-color: var(--gold); color: var(--gold-light); }
.option-pill.active .pill-price { color: var(--gold-dim); }

.qty-row { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.qty-control {
  display: flex; align-items: center;
  border: 1px solid var(--line);
}
.qty-control button {
  width: 40px; height: 44px;
  background: none; border: none;
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
}
.qty-control button:hover { color: var(--gold-light); }
.qty-control input {
  width: 44px; height: 44px;
  text-align: center;
  background: none; border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
}

.pd-add-row { display: flex; gap: 14px; margin-bottom: 30px; }
.pd-note {
  font-size: 13px;
  color: var(--success);
  display: none;
  margin-bottom: 18px;
}
.pd-note.show { display: block; }

.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 18px 0;
  cursor: pointer;
  text-align: left;
}
.acc-trigger .plus { color: var(--gold); font-size: 18px; transition: transform 0.25s; }
.acc-trigger[aria-expanded="true"] .plus { transform: rotate(45deg); }
.acc-panel {
  display: none;
  padding: 0 0 18px;
  color: var(--text-muted);
  font-size: 14px;
}
.acc-panel.open { display: block; }
.acc-panel ul { margin: 0; padding-left: 18px; }
.acc-panel li { margin-bottom: 6px; }

/* ---------- Related ---------- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 600px;
}
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto;} }

/* ==========================================================================
   Cart page
   ========================================================================== */
.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.cart-layout.is-empty {
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; gap: 40px; }
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img { width: 84px; height: 104px; object-fit: cover; border: 1px solid var(--line); }
.cart-item .ci-name { font-family: var(--font-display); font-size: 19px; margin-bottom: 4px; }
.cart-item .ci-meta { font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; }
.cart-item .ci-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-item .ci-price { font-family: var(--font-display); color: var(--gold-light); font-size: 17px; }
.cart-item .ci-remove {
  background: none; border: none;
  color: var(--text-faint);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
}
.cart-item .ci-remove:hover { color: var(--danger); }
.cart-qty { display: flex; align-items: center; border: 1px solid var(--line); }
.cart-qty button { width: 30px; height: 32px; background: none; border: none; color: var(--text); cursor: pointer; }
.cart-qty span { width: 30px; text-align: center; font-size: 13px; }

.empty-cart {
  text-align: center;
  padding: 60px 48px;
  color: var(--text-muted);
  max-width: 460px;
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.empty-cart h2 { margin-bottom: 24px; }

.summary-box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.summary-box h3 { font-size: 20px; margin-bottom: 20px; }
.summary-row {
  display: flex; justify-content: space-between;
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 12px;
}
.summary-row.total {
  border-top: 1px solid var(--line);
  margin-top: 16px; padding-top: 16px;
  font-size: 17px;
  color: var(--text);
  font-family: var(--font-display);
}
.summary-row.total span:last-child { color: var(--gold-light); }

.checkout-form { margin-top: 36px; }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-grid-2 { grid-template-columns: 1fr; } }
.form-error { color: var(--danger); font-size: 12px; margin-top: 6px; display: none; }
.form-row.has-error input, .form-row.has-error textarea { border-color: var(--danger); }
.form-row.has-error .form-error { display: block; }

.payment-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-dim);
  padding: 16px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.payment-note strong { color: var(--gold-light); }

.order-success {
  text-align: center;
  padding: 70px 20px;
}
.order-success .icon { font-size: 48px; color: var(--gold); margin-bottom: 20px; }
.order-success h2 { margin-bottom: 14px; }
.order-success p { color: var(--text-muted); max-width: 420px; margin: 0 auto 28px; }

.submit-error {
  color: var(--danger);
  font-size: 13px;
  margin-top: 14px;
  display: none;
  text-align: center;
}
.submit-error.show { display: block; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .contact-cards-grid { grid-template-columns: 1fr; max-width: 360px; }
}
.contact-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 36px 24px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.contact-card-v2:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(201,162,39,0.2);
}
.contact-icon-badge {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
  transition: box-shadow 0.25s, border-color 0.25s, color 0.25s;
}
.contact-card-v2 a { display: block; text-decoration: none; }
.contact-card-v2 a:hover .contact-icon-badge {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(201,162,39,0.4);
}
.contact-label {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.contact-value {
  font-size: 14px;
  color: var(--text-muted);
  word-break: break-word;
}
.contact-card-v2 a:hover .contact-value { color: var(--text); }
.contact-note {
  text-align: center;
  color: var(--text-faint);
  font-size: 13px;
  margin-top: 36px;
}

/* ==========================================================================
   Footer — minimalan, centriran: logo + kontakt + copyright (bez navigacije)
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  text-align: center;
}
.footer-logo { display: inline-flex; }
.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 380px;
  margin: 18px auto 0;
}
.footer-contact-label {
  display: block;
  margin: 40px 0 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.footer-contact-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-list a {
  color: var(--text-muted);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.footer-contact-list a svg { color: var(--gold); flex: none; transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--gold-light); }
.footer-contact-list a:hover svg { color: var(--gold-light); }
.footer-copy {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--text-faint);
}

/* ==========================================================================
   Toast
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-elevated);
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 14px 24px;
  font-size: 14px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast strong { color: var(--gold-light); }

/* ==========================================================================
   Page hero (non-home pages)
   ========================================================================== */
.page-hero {
  padding: 160px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(34px, 5vw, 52px); }
.page-hero p { color: var(--text-muted); margin-top: 14px; }

.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--text-faint); }
.breadcrumb a:hover { color: var(--gold-light); }

main { padding-top: 76px; }
main.no-pad { padding-top: 0; }

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
