/* =============================================================
   VEEGEMS — Fine Jewellery
   A dark, high-end storefront. Design system + components.
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg:        #060605;
  --bg-2:      #0b0b0a;
  --surface:   #121210;
  --surface-2: #171714;
  --line:      rgba(255,255,255,0.20);
  --line-soft: rgba(255,255,255,0.08);

  --text:      #f4f4f2;
  --muted:     #a7a7a4;
  --muted-2:   #6e6e6c;

  /* Monochrome accent (kept named "gold" so the whole codebase recolors here) */
  --gold:      #ffffff;
  --gold-soft: #e9e9e7;
  --gold-deep: #8a8a8a;
  --gold-grad: linear-gradient(120deg, #ffffff 0%, #ededed 100%);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", system-ui, -apple-system, Segoe UI, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --maxw: 1320px;
  --pad: clamp(20px, 5vw, 80px);
  --radius: 2px;

  --header-h: 78px;
  --announce-h: 40px;
  /* total fixed chrome (announcement strip + header) */
  --chrome-h: calc(var(--header-h) + var(--announce-h));
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: #0a0a0a; }

/* Visible keyboard focus — a clear gold ring on the dark UI. Uses
   :focus-visible so mouse/touch users never see it, only keyboard users. */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 1px; }
:focus:not(:focus-visible) { outline: none; }

/* Skip link — lets keyboard users jump past the header straight to content. */
.skip-link {
  position: fixed; top: 10px; left: 50%; transform: translateX(-50%) translateY(-200%);
  z-index: 10001; background: var(--gold-grad); color: #0a0a0a;
  padding: 12px 22px; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: var(--radius); transition: transform .3s var(--ease);
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.05; letter-spacing: 0.005em; }
.display { font-size: clamp(3rem, 11vw, 9.5rem); font-weight: 500; }
.h-xl { font-size: clamp(2.2rem, 5.5vw, 4.4rem); }
.h-lg { font-size: clamp(1.8rem, 4vw, 3rem); }
.h-md { font-size: clamp(1.4rem, 2.6vw, 2rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold);
}
.lede { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--muted); max-width: 56ch; }
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.serif-i { font-style: italic; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(72px, 11vw, 160px); }
.section--tight { padding-block: clamp(48px, 7vw, 90px); }
.center { text-align: center; }
.stack > * + * { margin-top: 1.1rem; }
.divider-line { height: 1px; background: var(--line); border: 0; }

.section-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: clamp(38px, 5vw, 64px); }
.section-head.center { align-items: center; }
.section-head.between { flex-direction: row; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--text);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 34px; font-family: var(--sans); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--text);
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; transition: color .5s var(--ease), border-color .5s var(--ease);
  background: transparent;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold-grad); transform: translateY(101%); transition: transform .55s var(--ease);
}
.btn:hover { color: #0a0a0a; border-color: transparent; }
.btn:hover::before { transform: translateY(0); }
.btn--gold { background: var(--gold-grad); color: #0c0a06; border-color: transparent; }
.btn--gold::before { background: #ffffff; }
.btn--gold:hover { color: #0c0a06; }
.btn--ghost { border-color: var(--line); }
.btn--block { width: 100%; }
.btn--sm { padding: 12px 24px; font-size: 0.72rem; }
.btn[disabled] { opacity: 0.45; pointer-events: none; }

.link-underline {
  position: relative; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  padding-bottom: 4px;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center;
  background: var(--bg); transition: opacity .8s var(--ease), visibility .8s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__mark {
  font-family: var(--serif); font-size: clamp(3rem, 12vw, 6rem); letter-spacing: 0.1em;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative; animation: floaty 3s ease-in-out infinite;
}
.preloader__bar {
  margin-top: 24px; width: 160px; height: 1px; background: var(--line-soft); overflow: hidden;
}
.preloader__bar i { display: block; height: 100%; width: 40%; background: var(--gold); animation: load 1.1s var(--ease) infinite; }
@keyframes load { 0% { transform: translateX(-120%);} 100% { transform: translateX(420%);} }

/* ---------- Announcement bar (static, centered) ---------- */
.announce {
  background: #050505; border-bottom: 1px solid var(--line-soft);
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
  overflow: hidden;
}
.announce__row { display: flex; align-items: center; justify-content: center; gap: 18px; padding-block: 11px; white-space: nowrap; }
.announce__dot { color: var(--gold); font-style: normal; opacity: 0.7; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (max-width: 680px) {
  /* keep just the first message on small screens so it never overflows */
  .announce__row span:not(:first-child), .announce__dot { display: none; }
}

/* ---------- Header ---------- */
/* Announcement strip + header share one fixed bar, so the header can no
   longer sit on top of (overlap) the announcement strip. */
.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.header {
  position: relative;
  transition: background .5s var(--ease), backdrop-filter .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.header__inner {
  height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header.scrolled {
  background: rgba(8,8,7,0.78); backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line-soft);
}
.brand { display: inline-flex; align-items: baseline; gap: 8px; font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0.34em; text-transform: uppercase; }
.brand b { font-weight: 500; }
.brand .spark { color: var(--gold); font-size: 0.7em; }
.nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); }
.nav a { font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); position: relative; opacity: 0.88; transition: opacity .3s; white-space: nowrap; }
.nav a:hover, .nav a.active { opacity: 1; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header__actions { display: flex; align-items: center; gap: 16px; }

/* language switch (PL / EN) */
.lang-switch { display: inline-flex; align-items: center; gap: 6px; }
.lang-opt { font-size: 0.7rem; letter-spacing: 0.16em; color: var(--muted); transition: color .3s; padding: 4px 1px; }
.lang-opt:hover { color: var(--text); }
.lang-opt.active { color: var(--gold); }
.lang-sep { color: var(--muted-2); font-size: 0.64rem; }
.m-langwrap { margin-top: 28px; }
.m-langwrap .lang-opt { font-size: 0.95rem; letter-spacing: 0.2em; padding: 6px 4px; }
.m-langwrap .lang-sep { font-size: 0.9rem; }
.icon-btn { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; transition: background .3s, color .3s; position: relative; }
.icon-btn:hover { background: rgba(255,255,255,0.08); color: var(--gold); }
.cart-count {
  position: absolute; top: 2px; right: 0; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--gold-grad); color: #0a0a0a; border-radius: 999px; font-size: 0.62rem; font-weight: 500;
  display: grid; place-items: center; transform: scale(0); transition: transform .35s var(--ease);
}
.cart-count.show { transform: scale(1); }
.burger { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.burger span { width: 22px; height: 1.5px; background: var(--text); transition: transform .4s var(--ease), opacity .3s; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: var(--bg-2);
  transform: translateY(-100%); transition: transform .6s var(--ease); display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 30px) var(--pad) 40px; visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .m-foot { margin-top: auto; color: var(--muted); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
body.no-scroll { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; text-align: center; overflow: hidden; padding-top: var(--chrome-h); }
.hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 26px; padding-inline: var(--pad); }
.hero__mark { width: clamp(96px, 14vw, 168px); margin-bottom: 6px; }
.hero__title { font-size: clamp(3.4rem, 13vw, 11rem); line-height: 0.92; letter-spacing: 0.04em; }
.hero__sub { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.9rem); color: var(--muted); }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }
.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--muted); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; }
.scroll-cue i { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: .4; transform-origin: top;} 50% { transform: scaleY(1); opacity: 1; transform-origin: top;} }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }

/* ---------- Category tiles ---------- */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cat {
  position: relative; aspect-ratio: 3/4; overflow: hidden; border: 1px solid var(--line-soft);
  background: var(--surface); display: flex; align-items: flex-end; isolation: isolate;
}
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(0,0,0,0.8)); z-index: 1; }
.cat:hover img { transform: scale(1.08); }
.cat__label { position: relative; z-index: 2; padding: 22px; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.cat__label h3 { font-size: 1.5rem; }
.cat__label .arrow { color: var(--gold); transform: translateX(-6px); opacity: 0; transition: .45s var(--ease); }
.cat:hover .arrow { transform: translateX(0); opacity: 1; }

/* ---------- Product grid + cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 30px) clamp(14px, 1.6vw, 22px); }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card { position: relative; display: flex; flex-direction: column; }
.card__media {
  position: relative; aspect-ratio: 1; overflow: hidden; background: var(--surface);
  border: 1px solid var(--line-soft); transition: border-color .5s;
}
.card:hover .card__media { border-color: var(--line); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), opacity .6s; }
.card:hover .card__media img { transform: scale(1.07); }
.card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 6px 11px; background: rgba(8,8,7,0.6); backdrop-filter: blur(6px); border: 1px solid var(--line); color: var(--gold-soft);
}
.card__quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  transform: translateY(14px); opacity: 0; transition: .5s var(--ease);
}
.card:hover .card__quick { transform: translateY(0); opacity: 1; }
.quick-add {
  width: 100%; padding: 13px; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(8,8,7,0.78); backdrop-filter: blur(10px); border: 1px solid var(--line); color: var(--text);
  transition: background .35s, color .35s;
}
.quick-add:hover { background: var(--gold-grad); color: #0a0a0a; border-color: transparent; }
.card__body { padding: 16px 2px 0; display: flex; flex-direction: column; gap: 5px; }
.card__cat { font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted-2); }
.card__name { font-family: var(--serif); font-size: 1.28rem; line-height: 1.2; }
.card__name a { transition: color .3s; }
.card__name a:hover { color: var(--gold-soft); }
.card__price { font-size: 0.92rem; color: var(--muted); letter-spacing: 0.02em; }

/* ---------- Feature / values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 60px); }
.value { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.value__ic { width: 54px; height: 54px; color: var(--gold); }
.value h3 { font-size: 1.4rem; }
.value p { color: var(--muted); font-size: 0.95rem; max-width: 34ch; }

/* ---------- Editorial banner ---------- */
.editorial { position: relative; min-height: 80vh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.editorial__bg { position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, #161616, #050505 70%); }
.editorial__bg::before { content: ""; position: absolute; inset: 0; background: url("../img/products/tennis-bracelet.svg") center/cover no-repeat; opacity: 0.16; }
.editorial__content { position: relative; z-index: 2; max-width: 760px; padding-inline: var(--pad); display: flex; flex-direction: column; align-items: center; gap: 24px; }
.editorial blockquote { font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1.2; font-style: italic; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.quote { border: 1px solid var(--line-soft); padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; gap: 18px; background: var(--surface); }
.quote .stars { color: var(--gold); letter-spacing: 4px; font-size: 0.8rem; }
.quote p { font-family: var(--serif); font-size: 1.2rem; font-style: italic; line-height: 1.5; }
.quote cite { font-style: normal; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2); }

/* ---------- Newsletter ---------- */
.newsletter { text-align: center; }
.newsletter__form { display: flex; gap: 12px; max-width: 480px; margin: 28px auto 0; flex-wrap: wrap; }
.field {
  flex: 1 1 240px; background: transparent; border: 1px solid var(--line); padding: 16px 18px;
  letter-spacing: 0.04em; transition: border-color .35s; border-radius: var(--radius);
}
.field:focus { outline: none; border-color: var(--gold); }
.field::placeholder { color: var(--muted-2); letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.74rem; }

/* ---------- Instagram strip ---------- */
.iggrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.iggrid a { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--surface); border: 1px solid var(--line-soft); }
.iggrid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .4s; opacity: 0.82; }
.iggrid a:hover img { transform: scale(1.1); opacity: 1; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); padding-top: clamp(56px, 7vw, 96px); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.footer h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; font-weight: 400; }
.footer__brand .brand { font-size: 1.8rem; margin-bottom: 16px; }
.footer__brand p { color: var(--muted); max-width: 34ch; font-size: 0.95rem; }
.footer__links a { display: block; padding: 7px 0; color: var(--muted); font-size: 0.9rem; transition: color .3s, padding-left .3s; }
.footer__links a:hover { color: var(--gold-soft); padding-left: 6px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-block: 26px; border-top: 1px solid var(--line-soft); font-size: 0.74rem; letter-spacing: 0.1em; color: var(--muted-2); }
.pay-icons { display: flex; gap: 14px; align-items: center; color: var(--muted); }
.pay-icons span { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; }

/* ---------- Cart drawer ---------- */
.overlay { position: fixed; inset: 0; z-index: 1100; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden; transition: opacity .5s, visibility .5s; backdrop-filter: blur(2px); }
.overlay.show { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1200; width: min(440px, 92vw);
  background: var(--bg-2); border-left: 1px solid var(--line); transform: translateX(100%);
  transition: transform .55s var(--ease); display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line-soft); }
.drawer__head h3 { font-size: 1.3rem; letter-spacing: 0.06em; }
.drawer__items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.drawer__empty { padding: 60px 10px; text-align: center; color: var(--muted); display: flex; flex-direction: column; gap: 20px; align-items: center; }
.line-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.line-item__img { aspect-ratio: 1; background: var(--surface); border: 1px solid var(--line-soft); }
.line-item__img img { width: 100%; height: 100%; object-fit: cover; }
.line-item__name { font-family: var(--serif); font-size: 1.1rem; }
.line-item__meta { font-size: 0.72rem; color: var(--muted-2); letter-spacing: 0.06em; margin-top: 2px; }
.line-item__price { font-size: 0.88rem; color: var(--muted); margin-top: 8px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-soft); margin-top: 10px; }
.qty button { width: 30px; height: 30px; display: grid; place-items: center; color: var(--muted); transition: color .3s; }
.qty button:hover { color: var(--gold); }
.qty span { min-width: 30px; text-align: center; font-size: 0.85rem; }
.line-item__remove { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); transition: color .3s; align-self: start; }
.line-item__remove:hover { color: var(--gold); }
.drawer__foot { padding: 22px 24px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.drawer__row { display: flex; justify-content: space-between; align-items: baseline; }
.drawer__row .lbl { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.drawer__row .val { font-family: var(--serif); font-size: 1.5rem; }
.drawer__note { font-size: 0.7rem; color: var(--muted-2); text-align: center; letter-spacing: 0.08em; }

/* ---------- Toast ---------- */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 1300; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.toast {
  background: var(--surface-2); border: 1px solid var(--line); padding: 14px 22px; display: flex; align-items: center; gap: 12px;
  font-size: 0.78rem; letter-spacing: 0.1em; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: translateY(20px); opacity: 0; transition: .45s var(--ease);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .tick { color: var(--gold); }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { padding-top: calc(var(--chrome-h) + clamp(34px, 6vw, 96px)); padding-bottom: clamp(30px, 5vw, 60px); text-align: center; position: relative; }
.page-hero .eyebrow { display: block; margin-bottom: 18px; }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-top: 18px; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Shop filters ---------- */
.shop-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; padding-bottom: 22px; border-bottom: 1px solid var(--line-soft); }
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { padding: 9px 20px; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line-soft); border-radius: 999px; transition: .35s var(--ease); }
.chip:hover { color: var(--text); border-color: var(--line); }
.chip.active { background: var(--gold-grad); color: #0a0a0a; border-color: transparent; }
.sort select { background: var(--bg-2); border: 1px solid var(--line-soft); padding: 11px 16px; letter-spacing: 0.1em; font-size: 0.78rem; cursor: pointer; }
.sort select:focus { outline: none; border-color: var(--gold); }
.count-label { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }

/* ---------- Product detail ---------- */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; padding-top: calc(var(--chrome-h) + 36px); }
.pdp__gallery { position: relative; }
.pdp__main { aspect-ratio: 1; background: var(--surface); border: 1px solid var(--line-soft); overflow: hidden; }
.pdp__main img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pdp__thumbs button { width: 76px; aspect-ratio: 1; border: 1px solid var(--line-soft); overflow: hidden; opacity: 0.6; transition: opacity .3s, border-color .3s; }
.pdp__thumbs button.active, .pdp__thumbs button:hover { opacity: 1; border-color: var(--gold); }
.pdp__info { position: sticky; top: calc(var(--chrome-h) + 24px); display: flex; flex-direction: column; gap: 20px; }
.pdp__price { font-family: var(--serif); font-size: 1.8rem; color: var(--gold-soft); }
.pdp__desc { color: var(--muted); }
.option-group { display: flex; flex-direction: column; gap: 10px; }
.option-group > span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.option-row { display: flex; gap: 8px; flex-wrap: wrap; }
.opt { padding: 10px 18px; border: 1px solid var(--line-soft); font-size: 0.78rem; letter-spacing: 0.08em; transition: .3s; }
.opt:hover { border-color: var(--line); }
.opt.active { background: var(--gold-grad); color: #0a0a0a; border-color: transparent; }
.pdp__buy { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.pdp__buy .qty { margin-top: 0; }
.accordion { border-top: 1px solid var(--line-soft); margin-top: 10px; }
.acc { border-bottom: 1px solid var(--line-soft); }
.acc__head { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; }
.acc__head .pm { color: var(--gold); transition: transform .4s; }
.acc.open .acc__head .pm { transform: rotate(45deg); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); color: var(--muted); }
.acc__body p { padding-bottom: 18px; }

/* ---------- Cart page ---------- */
.cart-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.cart-list { border-top: 1px solid var(--line-soft); }
.cart-row { display: grid; grid-template-columns: 110px 1fr auto; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line-soft); align-items: center; }
.cart-row__img { aspect-ratio: 1; background: var(--surface); border: 1px solid var(--line-soft); }
.cart-row__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-row__name { font-family: var(--serif); font-size: 1.4rem; }
.cart-row__meta { font-size: 0.74rem; color: var(--muted-2); letter-spacing: 0.06em; margin-top: 4px; }
.cart-row__price { font-family: var(--serif); font-size: 1.3rem; text-align: right; }
.summary { border: 1px solid var(--line); padding: clamp(24px, 3vw, 38px); background: var(--surface); position: sticky; top: calc(var(--chrome-h) + 20px); display: flex; flex-direction: column; gap: 16px; }
.summary h3 { font-size: 1.5rem; margin-bottom: 6px; }
.summary__row { display: flex; justify-content: space-between; font-size: 0.92rem; color: var(--muted); }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.summary__total .val { font-family: var(--serif); font-size: 1.8rem; color: var(--gold-soft); }
#paypal-box { min-height: 10px; }
.empty-cart { text-align: center; padding: clamp(60px, 12vw, 140px) 0; display: flex; flex-direction: column; align-items: center; gap: 24px; }

/* ---------- About ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.about-split.flip > .about-media { order: 2; }
.about-media { aspect-ratio: 4/5; background: var(--surface); border: 1px solid var(--line-soft); overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.stat .n { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem); color: var(--gold-soft); }
.stat .l { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .iggrid { grid-template-columns: repeat(4, 1fr); }
  .pdp { grid-template-columns: 1fr; }
  .pdp__info { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .burger { display: flex; }
  /* the language switch moves into the mobile menu to keep the bar uncluttered */
  .header__actions .lang-switch { display: none; }
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .values, .quotes, .stat-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__brand { grid-column: 1 / -1; }
  .about-split { grid-template-columns: 1fr; }
  .about-split.flip > .about-media { order: 0; }
  .section-head.between { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .iggrid { grid-template-columns: repeat(3, 1fr); }
  .card__quick { position: static; transform: none; opacity: 1; margin-top: 12px; }
  .card__quick .quick-add { background: transparent; border-color: var(--line); }
}
