/* ==========================================================
   3DFigure Atelier — Main Stylesheet v1.0
   Premium WooCommerce theme for collector resin figures.
   Dark. Editorial. Handcrafted.
   ========================================================== */

/* Bunny Fonts — GDPR-safe drop-in for Google Fonts */
@import url('https://fonts.bunny.net/css?family=playfair-display:500,500i,600,700&family=outfit:300,400,500,600,700&display=swap');

/* ==========================================================
   1. DESIGN TOKENS
   ========================================================== */
:root {
  /* Backgrounds */
  --bg:           #0a0a0a;
  --bg-2:         #111111;
  --bg-card:      #161616;
  --bg-elevated:  #1e1e1e;

  /* Borders */
  --border:       #242424;
  --border-2:     #333333;

  /* Gold accent */
  --gold:         #c9a84c;
  --gold-light:   #e4c97a;
  --gold-dark:    #9a7a30;
  --gold-alpha:   rgba(201, 168, 76, 0.10);
  --gold-alpha-2: rgba(201, 168, 76, 0.20);

  /* Text */
  --text:         #f0ece4;
  --text-muted:   #9a9080;
  --text-dim:     #504a40;

  /* Status */
  --green:        #4a9e6e;
  --green-alpha:  rgba(74, 158, 110, 0.12);
  --red:          #c04040;
  --purple:       #7c5cc4;
  --purple-alpha: rgba(124, 92, 196, 0.12);

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --s1:  0.25rem;   /*  4px */
  --s2:  0.5rem;    /*  8px */
  --s3:  0.75rem;   /* 12px */
  --s4:  1rem;      /* 16px */
  --s5:  1.25rem;   /* 20px */
  --s6:  1.5rem;    /* 24px */
  --s8:  2rem;      /* 32px */
  --s10: 2.5rem;    /* 40px */
  --s12: 3rem;      /* 48px */
  --s16: 4rem;      /* 64px */
  --s20: 5rem;      /* 80px */
  --s24: 6rem;      /* 96px */
  --s32: 8rem;      /* 128px */

  /* Layout */
  --max-w:     1440px;
  --content-w: 1240px;
  --narrow-w:  820px;

  /* Misc */
  --radius-sm: 2px;
  --radius:    4px;
  --radius-lg: 10px;
  --t:         160ms ease;
  --t-slow:    360ms ease;
  --header-h:  72px;
}

/* ==========================================================
   2. RESET & BASE
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; text-size-adjust: 100%; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }
table { border-collapse: collapse; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ==========================================================
   3. TYPOGRAPHY
   ========================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.1rem); }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-body);
}

p { line-height: 1.75; color: var(--text-muted); }
strong { font-weight: 600; color: var(--text); }
em { font-style: italic; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-head {
  text-align: center;
  margin-bottom: var(--s12);
}
.section-head .eyebrow { justify-content: center; margin-bottom: var(--s4); }
.section-head h2 { margin-bottom: var(--s3); }
.section-head p { max-width: 480px; margin: 0 auto; font-size: 0.95rem; }

/* ==========================================================
   4. LAYOUT
   ========================================================== */
.container {
  width: 100%;
  max-width: var(--content-w);
  margin-inline: auto;
  padding-inline: var(--s6);
}
.container--wide   { max-width: var(--max-w); }
.container--narrow { max-width: var(--narrow-w); }

.section          { padding-block: var(--s24); }
.section--lg      { padding-block: var(--s32); }
.section--sm      { padding-block: var(--s16); }
.section--dark    { background: var(--bg-2); }
.section--border  { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ==========================================================
   5. BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--gold);
  color: #080808;
  border: 1px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.2);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
  padding-inline: 0;
}
.btn--ghost:hover { color: var(--gold); }
.btn--sm   { padding: 0.65rem 1.4rem; font-size: 0.7rem; }
.btn--lg   { padding: 1.1rem 2.8rem; font-size: 0.78rem; }
.btn--full { width: 100%; }

/* ==========================================================
   6. BADGES
   ========================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  line-height: 1.4;
}
.badge--preorder { background: var(--gold-alpha);    color: var(--gold);   border: 1px solid var(--gold-alpha-2); }
.badge--instock  { background: var(--green-alpha);   color: var(--green);  border: 1px solid rgba(74,158,110,.25); }
.badge--soldout  { background: rgba(120,120,120,.22); color: var(--text); border: 1px solid var(--text-muted); }
.badge--painted  { background: var(--purple-alpha);  color: #9b7de8;       border: 1px solid rgba(124,92,196,.25); }
.badge--new      { background: rgba(255,255,255,.06);color: var(--text);   border: 1px solid var(--border-2); }
.badge--limited  { background: rgba(192,64,64,.12);  color: #e07070;       border: 1px solid rgba(192,64,64,.25); }

/* ==========================================================
   7. NAVIGATION
   ========================================================== */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding-inline: var(--s8);
  transition: background var(--t-slow), border-color var(--t-slow), backdrop-filter var(--t-slow);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.header-inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
}

/* Logo */
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo__img { height: 44px; width: auto; display: block; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1;
  transition: color var(--t);
}
.logo-text em { font-style: normal; color: var(--gold); }
.site-logo:hover .logo-text { color: var(--gold); }

/* Desktop nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--s8);
}
.primary-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color var(--t);
  padding-block: var(--s2);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t);
}
.primary-nav a:hover,
.primary-nav a.current-menu-item { color: var(--text); }
.primary-nav a:hover::after,
.primary-nav a.current-menu-item::after { width: 100%; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: var(--s4); }

.header-icon-btn {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--t);
  border-radius: var(--radius-sm);
}
.header-icon-btn:hover { color: var(--gold); }
.header-icon-btn { background: none; border: none; cursor: pointer; }

/* Header search drawer */
.header-search {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: var(--s4) var(--s8);
}
.site-header.search-open .header-search { display: block; }
.header-search__form {
  display: flex;
  align-items: center;
  gap: var(--s3);
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
}
.header-search__form svg { flex-shrink: 0; opacity: 0.7; }
.header-search__form input[type="search"] {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: var(--s3) var(--s2);
  font-size: 0.95rem;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--t);
}
.header-search__form input[type="search"]:focus { border-color: var(--gold); }
.header-search__form input[type="search"]::placeholder { color: var(--text-dim); }
.header-search__close {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: var(--s2);
  transition: color var(--t);
}
.header-search__close:hover { color: var(--gold); }

.cart-count {
  position: absolute;
  top: 0; right: 0;
  width: 15px; height: 15px;
  background: var(--gold);
  color: #080808;
  font-size: 0.55rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.hamburger__line {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: all var(--t);
  transform-origin: center;
}
.hamburger__line:first-child  { width: 22px; }
.hamburger__line:nth-child(2) { width: 16px; }
.hamburger__line:last-child   { width: 22px; }
.hamburger.open .hamburger__line:first-child  { transform: translateY(6.5px) rotate(45deg); width: 22px; }
.hamburger.open .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger__line:last-child   { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s6);
  padding: var(--s16);
}
.mobile-nav-overlay.open { display: flex; }

.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--t);
  text-align: center;
}
.mobile-nav-overlay a:hover { color: var(--text); }

.mobile-nav-close {
  position: absolute;
  top: var(--s6);
  right: var(--s6);
  color: var(--text-dim);
  transition: color var(--t);
}
.mobile-nav-close:hover { color: var(--text); }

/* ==========================================================
   8. HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 52% 48%;
  overflow: hidden;
}

/* Subtle gold radial on hero background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 25% 50%, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero__visual {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--bg-card);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.hero__visual:hover img { transform: scale(1.04); }

/* Featured product tag overlay */
.hero__product-tag {
  position: absolute;
  bottom: var(--s8);
  left: var(--s8);
  z-index: 3;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: var(--s4) var(--s5);
  border-radius: var(--radius-sm);
  max-width: 280px;
}
.hero__product-tag-label {
  display: block;
  font-size: 0.6rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 4px;
}
.hero__product-tag-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
/* Fade right edge into bg so it blends with content column */
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 55%, var(--bg) 100%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 8%, transparent 92%, var(--bg) 100%);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + var(--s16)) var(--s16) var(--s16) var(--s8);
  position: relative;
  z-index: 2;
}
.hero__eyebrow { margin-bottom: var(--s6); }

.hero__title {
  font-size: clamp(2.8rem, 4.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: var(--s6);
}
.hero__title em { font-style: italic; color: var(--gold); }

.hero__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: var(--s10);
}

.hero__actions {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s16);
}

/* Hero stats bar */
.hero__stats {
  display: flex;
  gap: var(--s8);
  padding-top: var(--s8);
  border-top: 1px solid var(--border);
}
.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}
.hero__stat-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--s8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  z-index: 3;
  opacity: 0.35;
  transition: opacity var(--t);
}
.scroll-indicator:hover { opacity: 0.65; }
.scroll-indicator__text {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: horizontal-tb;
}
.scroll-indicator__line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse-line 2.2s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.4; transform: scaleY(1);   }
  50%       { opacity: 1;   transform: scaleY(0.65); }
}

/* ==========================================================
   9. TRUST BAR
   ========================================================== */
.trust-bar {
  background: var(--bg-2);
  border-block: 1px solid var(--border);
  padding-block: var(--s4);
  overflow: hidden;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s6);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.73rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-item svg      { color: var(--gold); flex-shrink: 0; }
.trust-item strong   { color: var(--text); font-weight: 500; }
.trust-bar__sep      { width: 1px; height: 14px; background: var(--border-2); flex-shrink: 0; }

/* ==========================================================
   10. PRODUCT GRID
   ========================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}
.products-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ==========================================================
   11. PRODUCT CARD
   ========================================================== */
.product-card {
  background: var(--bg-card);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t-slow), box-shadow var(--t-slow);
  position: relative;
}
.product-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-elevated);
  flex-shrink: 0;
}
.product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.04); }
.product-card__img-wrap--empty {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
}
.product-card__no-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  opacity: 0.45;
}

.product-card__badge-wrap {
  position: absolute;
  top: var(--s3); left: var(--s3);
  z-index: 1;
  display: flex; gap: var(--s1); flex-wrap: wrap;
}

/* Hover overlay with quick CTA */
.product-card__hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.82) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: var(--s4);
  opacity: 0;
  transition: opacity var(--t-slow);
}
.product-card:hover .product-card__hover { opacity: 1; }

.product-card__quick {
  width: 100%;
  padding: 0.65rem 1rem;
  background: var(--gold);
  color: #080808;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: background var(--t);
}
.product-card__quick:hover { background: var(--gold-light); }

/* Card body */
.product-card__body {
  padding: var(--s3) var(--s2) var(--s4);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}
.product-card__franchise {
  font-size: 0.6rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.product-card__name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: auto;
  letter-spacing: -0.005em;
}
.product-card__name a { color: inherit; }
.product-card__name a:hover { color: var(--gold); }
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--s2);
}
.product-card__price-label {
  display: block;
  font-size: 0.55rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1px;
}
.product-card__price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-display);
}
.product-card__arrow {
  width: 26px; height: 26px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all var(--t);
  flex-shrink: 0;
}
.product-card:hover .product-card__arrow {
  border-color: var(--gold);
  color: var(--gold);
}

/* ==========================================================
   12. PROCESS SECTION
   ========================================================== */
.process-section {
  background: var(--bg-2);
  border-block: 1px solid var(--border);
  padding-block: var(--s24);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s12);
  position: relative;
}
/* Horizontal connector line between steps */
.process-grid::before {
  content: '';
  position: absolute;
  top: 29px;
  left: calc(50% / 3 + var(--s6));
  right: calc(50% / 3 + var(--s6));
  height: 1px;
  background: linear-gradient(to right, var(--border) 0%, var(--gold-alpha-2) 50%, var(--border) 100%);
}
.process-step { text-align: center; }
.process-step__num {
  width: 58px; height: 58px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s6);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--bg);
  position: relative;
  z-index: 1;
  transition: border-color var(--t), box-shadow var(--t);
}
.process-step:hover .process-step__num {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-alpha);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--s3);
}
.process-step p { font-size: 0.88rem; line-height: 1.75; }

/* ==========================================================
   12B. BROWSE BY FRANCHISE — TILES
   ========================================================== */
.franchises-section { padding-block: var(--s24); }
.franchises-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-top: var(--s10);
}
.franchise-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid transparent;
  transition: border-color var(--t), transform var(--t);
}
.franchise-tile:hover { border-color: var(--gold); transform: translateY(-3px); }
.franchise-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2,0.6,0.2,1);
  filter: brightness(0.55) saturate(0.9);
}
.franchise-tile:hover img { transform: scale(1.06); filter: brightness(0.7) saturate(1); }
.franchise-tile__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--s5) var(--s4) var(--s4);
  background: linear-gradient(to top, rgba(8,8,8,0.95) 30%, transparent 100%);
  z-index: 2;
}
.franchise-tile__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 2px;
}
.franchise-tile__count {
  font-size: 0.65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ==========================================================
   12C. EBAY CREDIBILITY CTA
   ========================================================== */
.ebay-cta { padding-block: var(--s24); }
.ebay-cta__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s12);
  align-items: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s12) var(--s10);
}
.ebay-cta__content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin: var(--s3) 0 var(--s4);
  line-height: 1.15;
}
.ebay-cta__content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--s8);
  max-width: 520px;
}
.ebay-cta__benefits {
  display: grid;
  gap: var(--s4);
}
.ebay-cta__benefit {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4) var(--s5);
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.ebay-cta__benefit svg { color: var(--gold); flex-shrink: 0; }

/* ==========================================================
   13. SPOTLIGHT / FEATURED EDITION
   ========================================================== */
.spotlight-section { padding-block: var(--s24); }
.spotlight-wrap {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 580px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}
.spotlight-visual {
  position: relative;
  overflow: hidden;
}
.spotlight-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.spotlight-section:hover .spotlight-visual img { transform: scale(1.03); }
.spotlight-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s16) var(--s12);
  border-left: 1px solid var(--border);
}
.spotlight-content .eyebrow { margin-bottom: var(--s6); }
.spotlight-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: var(--s2);
  line-height: 1.08;
}
.spotlight-edition {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: var(--s6);
}
.spotlight-quote {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
  padding-left: var(--s4);
  border-left: 2px solid var(--gold-alpha-2);
  margin-bottom: var(--s8);
}
.spotlight-meta {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-bottom: var(--s8);
}
.spotlight-meta-row {
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex;
  gap: var(--s2);
}
.spotlight-meta-row strong { color: var(--text-muted); font-weight: 500; }

/* ==========================================================
   14. TESTIMONIALS
   ========================================================== */
.testimonials-section {
  background: var(--bg-2);
  border-block: 1px solid var(--border);
  padding-block: var(--s24);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s8) var(--s6);
  position: relative;
  transition: border-color var(--t);
}
.testimonial-card:hover { border-color: var(--border-2); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--s3);
  right: var(--s5);
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.07;
  font-weight: 700;
  pointer-events: none;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--s4);
}
.testimonial-stars svg { color: var(--gold); }
.testimonial-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--s6);
}
.testimonial-author__name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}
.testimonial-author__info {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* ==========================================================
   15. INSTAGRAM STRIP
   ========================================================== */
.insta-section { padding-block: var(--s16); }
.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s5);
}
.insta-header h5 { margin: 0; }
.insta-link {
  font-size: 0.74rem;
  color: var(--text-dim);
  transition: color var(--t);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.insta-link:hover { color: var(--gold); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s2);
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow), brightness var(--t-slow);
  filter: brightness(0.82);
}
.insta-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

/* ==========================================================
   16. NEWSLETTER
   ========================================================== */
.newsletter-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-block: var(--s24);
}
.newsletter-inner {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}
.newsletter-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: var(--s3);
}
.newsletter-inner p {
  font-size: 0.92rem;
  margin-bottom: var(--s8);
}
.newsletter-form {
  display: flex;
  gap: var(--s2);
  max-width: 480px;
  margin: 0 auto var(--s3);
}
.newsletter-input {
  flex: 1;
  height: 50px;
  padding-inline: var(--s4);
  background: var(--bg-elevated);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.88rem;
  transition: border-color var(--t);
  outline: none;
}
.newsletter-input::placeholder { color: var(--text-dim); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-form .btn {
  height: 50px;
  padding-inline: var(--s6);
  flex-shrink: 0;
}
.newsletter-disclaimer {
  font-size: 0.68rem;
  color: var(--text-dim);
}

/* ==========================================================
   17. FOOTER
   ========================================================== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: var(--s16);
  padding-bottom: var(--s8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--s12);
  padding-bottom: var(--s12);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s8);
}
.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  display: block;
  margin-bottom: var(--s3);
  transition: color var(--t);
}
.footer-brand__name em { font-style: normal; color: var(--gold); }
.footer-brand__name:hover { color: var(--gold); }
.footer-brand__tag {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 220px;
  display: block;
  margin-bottom: var(--s6);
}
.footer-socials {
  display: flex;
  gap: var(--s2);
}
.footer-social-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--t);
}
.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h5 { margin-bottom: var(--s5); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--s3); }
.footer-col a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.72rem; color: var(--text-dim); }
.footer-legal { display: flex; gap: var(--s5); }
.footer-legal a {
  font-size: 0.7rem;
  color: var(--text-dim);
  transition: color var(--t);
}
.footer-legal a:hover { color: var(--text-muted); }

/* ==========================================================
   18. SHOP PAGE
   ========================================================== */
.shop-page-header {
  padding-top: calc(var(--header-h) + var(--s12));
  padding-bottom: var(--s12);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.shop-page-header__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s6);
  flex-wrap: wrap;
}
.shop-page-header h1 { font-size: clamp(2rem, 4vw, 3rem); }
.shop-page-header__sub {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: var(--s2);
}
.shop-sort select {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  color: var(--text-muted);
  font-size: 0.78rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  outline: none;
  cursor: pointer;
  transition: border-color var(--t);
  appearance: none;
  font-family: var(--font-body);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 24 24' stroke='%23504a40' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2.2rem;
}
.shop-sort select:focus { border-color: var(--gold); }

.shop-body {
  padding-block: var(--s16) var(--s24);
}
.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--s10);
  align-items: start;
}

/* Sidebar */
.shop-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--s6));
}
.sidebar-section {
  padding-bottom: var(--s6);
  margin-bottom: var(--s6);
  border-bottom: 1px solid var(--border);
}
.sidebar-section:last-child { border-bottom: none; margin-bottom: 0; }
.sidebar-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--s4);
}
.sidebar-option {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding-block: var(--s2);
  cursor: pointer;
}
.sidebar-option label {
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--t);
  flex: 1;
}
.sidebar-option:hover label { color: var(--text); }
.sidebar-count {
  font-size: 0.68rem;
  color: var(--text-dim);
}

/* Custom checkbox */
.sidebar-option input[type="checkbox"] {
  width: 15px; height: 15px;
  appearance: none;
  border: 1px solid var(--border-2);
  border-radius: 2px;
  background: var(--bg-card);
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--t);
  position: relative;
}
.sidebar-option input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.sidebar-option input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23080808' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Shop toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s6);
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--border);
}
.shop-result-count { font-size: 0.76rem; color: var(--text-dim); }

/* Active filters */
.active-filters {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  margin-bottom: var(--s4);
}
.active-filter {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.25rem 0.65rem;
  background: var(--gold-alpha);
  border: 1px solid var(--gold-alpha-2);
  border-radius: 2px;
  font-size: 0.7rem;
  color: var(--gold);
  cursor: pointer;
  transition: background var(--t);
}
.active-filter:hover { background: var(--gold-alpha-2); }

/* Pagination */
.woocommerce-pagination, .pagination {
  display: flex;
  justify-content: center;
  gap: var(--s2);
  margin-top: var(--s12);
  flex-wrap: wrap;
}
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding-inline: var(--s2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: all var(--t);
}
.page-numbers:hover,
.page-numbers.current { border-color: var(--gold); color: var(--gold); }
.page-numbers.next,
.page-numbers.prev {
  padding-inline: var(--s4);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================================
   19. SINGLE PRODUCT PAGE
   ========================================================== */
.product-page {
  padding-top: calc(var(--header-h) + var(--s8));
  padding-bottom: var(--s24);
}
.product-layout {
  display: grid;
  grid-template-columns: 53% 47%;
  gap: var(--s12);
  align-items: start;
}

/* Gallery */
.product-gallery { position: sticky; top: calc(var(--header-h) + var(--s6)); }
.gallery-main-img {
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--s3);
  cursor: zoom-in;
}
.gallery-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity var(--t);
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s2);
}
.gallery-thumb {
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--t);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--gold); }

/* Product summary */
.product-summary { display: flex; flex-direction: column; gap: var(--s5); }
.product-summary .woocommerce-breadcrumb,
.product-summary .breadcrumb { padding: 0; }

.product-badges { display: flex; gap: var(--s2); flex-wrap: wrap; }

.product-title-block h1 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--s1);
}
.product-franchise {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.78rem;
  color: var(--text-dim);
}
.product-rating__stars { display: flex; gap: 2px; }
.product-rating__stars svg { color: var(--gold); }
.product-rating a {
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}
.product-rating a:hover { color: var(--text-muted); }

/* Price */
.product-price-block {
  padding-block: var(--s4);
  border-block: 1px solid var(--border);
}
.price-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--s2);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  display: block;
}
.price-range-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: var(--s1);
}

/* Variant selectors */
.variant-group { display: flex; flex-direction: column; gap: var(--s3); }
.variant-group__label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.variant-options { display: flex; gap: var(--s2); flex-wrap: wrap; }

.variant-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: var(--s3) var(--s5);
  min-width: 76px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--t);
  background: var(--bg-card);
  text-align: center;
}
.variant-btn:hover { border-color: var(--text-muted); }
.variant-btn.active,
.variant-btn[aria-selected="true"] {
  border-color: var(--gold);
  background: var(--gold-alpha);
}
.variant-btn__scale { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.variant-btn__price { font-size: 0.68rem; color: var(--text-dim); }
.variant-btn.active .variant-btn__scale,
.variant-btn.active .variant-btn__price { color: var(--gold); }
.variant-btn.active .variant-btn__price { opacity: 0.75; }

/* Edition selector */
.edition-options { display: flex; gap: var(--s3); }
.edition-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4) var(--s4);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--t);
  background: var(--bg-card);
}
.edition-btn:hover { border-color: var(--text-muted); }
.edition-btn.active { border-color: var(--gold); background: var(--gold-alpha); }
.edition-btn__icon { font-size: 1.3rem; flex-shrink: 0; }
.edition-btn__name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  display: block;
}
.edition-btn__desc { font-size: 0.68rem; color: var(--text-dim); display: block; }

/* ATC section */
.atc-section { display: flex; flex-direction: column; gap: var(--s3); }
.atc-section .btn {
  padding: 1rem;
  font-size: 0.8rem;
  width: 100%;
  justify-content: center;
}

/* Production notice */
.production-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  padding: var(--s4);
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.production-notice svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* Trust grid */
.product-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  padding: var(--s4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.product-trust-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.product-trust-item svg { color: var(--gold); flex-shrink: 0; }

/* Accordion */
.product-accordions { margin-top: var(--s2); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--s4);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color var(--t);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: var(--s4);
}
.accordion-trigger:hover { color: var(--text); }
.accordion-trigger svg { flex-shrink: 0; color: var(--text-dim); transition: transform var(--t); }
.accordion-item.open .accordion-trigger { color: var(--text); }
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-body { display: none; padding-bottom: var(--s6); }
.accordion-item.open .accordion-body { display: block; }
.accordion-body p,
.accordion-body li { font-size: 0.85rem; line-height: 1.8; color: var(--text-muted); }
.accordion-body ul { padding-left: var(--s5); }
.accordion-body li { list-style: disc; margin-bottom: var(--s1); }

/* ==========================================================
   20. PAGE TEMPLATES
   ========================================================== */

/* Page banner */
.page-banner {
  padding-top: calc(var(--header-h) + var(--s16));
  padding-bottom: var(--s16);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at center, rgba(201,168,76,0.04), transparent 70%);
  pointer-events: none;
}
.page-banner h1 { position: relative; z-index: 1; margin-bottom: var(--s3); }
.page-banner p  { position: relative; z-index: 1; max-width: 520px; margin-inline: auto; font-size: 1rem; }

/* About */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
  padding-block: var(--s24);
}
.about-visual img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
}
.about-content { display: flex; flex-direction: column; gap: var(--s5); }
.about-content h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
.about-content p { font-size: 0.94rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  padding: var(--s8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: var(--s4);
}
.about-stat { text-align: center; }
.about-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--s1);
}
.about-stat__lbl {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Process timeline */
.process-timeline { display: flex; flex-direction: column; }
.timeline-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--s8);
  padding-block: var(--s8);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline-row:last-child { border-bottom: none; }
.timeline-col { display: flex; flex-direction: column; align-items: center; }
.timeline-num {
  width: 48px; height: 48px;
  border: 1px solid var(--gold-alpha-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  transition: border-color var(--t), box-shadow var(--t);
}
.timeline-row:hover .timeline-num {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-alpha);
}
.timeline-line {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin-top: var(--s3);
  min-height: 32px;
}
.timeline-row:last-child .timeline-line { display: none; }
.timeline-content {}
.timeline-content h3 { font-size: 1.5rem; margin-bottom: var(--s3); }
.timeline-content p  { font-size: 0.9rem; line-height: 1.8; }

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: start;
}
.faq-group { margin-bottom: var(--s8); }
.faq-group-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s4);
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--s2);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s4) var(--s5);
  background: var(--bg-card);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  border: none;
  text-align: left;
  transition: background var(--t);
  line-height: 1.5;
}
.faq-q:hover { background: var(--bg-elevated); }
.faq-q svg { flex-shrink: 0; color: var(--text-dim); transition: transform var(--t); }
.faq-q::-webkit-details-marker { display: none; }
.faq-item[open] .faq-q svg { transform: rotate(180deg); }
.faq-a {
  padding: var(--s4) var(--s5);
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.faq-a p { font-size: 0.85rem; line-height: 1.8; }

/* Commissions */
.commission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
  padding-block: var(--s24);
}
.commission-steps { display: flex; flex-direction: column; gap: var(--s4); }
.commission-step {
  display: flex;
  gap: var(--s4);
  padding: var(--s5);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--t);
}
.commission-step:hover { border-color: var(--border-2); }
.commission-step__num {
  width: 36px; height: 36px;
  border: 1px solid var(--gold-alpha-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}
.commission-step h4 { font-size: 0.9rem; margin-bottom: var(--s1); }
.commission-step p  { font-size: 0.82rem; }

.commission-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s10);
}
.commission-form-card h3 { font-size: 1.7rem; margin-bottom: var(--s2); }
.commission-form-card > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: var(--s8); }

.form-group { margin-bottom: var(--s5); }
.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--s2);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.88rem;
  padding: 0.8rem 1rem;
  transition: border-color var(--t);
  outline: none;
  font-family: var(--font-body);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }

/* ==========================================================
   21. 404 PAGE
   ========================================================== */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s16);
}
.page-404__wrap { max-width: 460px; }
.page-404__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--border-2);
  line-height: 1;
  display: block;
  margin-bottom: var(--s4);
}
.page-404 h1 { font-size: 1.8rem; margin-bottom: var(--s4); }
.page-404 p { margin-bottom: var(--s8); }

/* ==========================================================
   22. BREADCRUMBS
   ========================================================== */
.breadcrumb,
.woocommerce-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s2);
  font-size: 0.72rem;
  color: var(--text-dim);
  padding-block: var(--s3);
}
.breadcrumb a,
.woocommerce-breadcrumb a { transition: color var(--t); }
.breadcrumb a:hover,
.woocommerce-breadcrumb a:hover { color: var(--text-muted); }

/* ==========================================================
   23. NOTICES & MESSAGES (WooCommerce)
   ========================================================== */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: var(--s4) var(--s5);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: var(--s5);
  display: flex;
  align-items: center;
  gap: var(--s3);
  list-style: none;
}
.woocommerce-message { background: var(--green-alpha); border: 1px solid rgba(74,158,110,.25); color: var(--green); }
.woocommerce-info    { background: var(--gold-alpha);  border: 1px solid var(--gold-alpha-2); color: var(--gold); }
.woocommerce-error   { background: rgba(192,64,64,.1); border: 1px solid rgba(192,64,64,.25); color: #e07070; }

/* ==========================================================
   24. CART & CHECKOUT (WooCommerce)
   ========================================================== */
.woo-main { padding-top: calc(var(--header-h) + var(--s8)); min-height: 60vh; }

.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.woocommerce table.shop_table th {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  padding-block: var(--s3);
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.woocommerce table.shop_table td {
  padding-block: var(--s4);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: middle;
}
.woocommerce table.shop_table .product-name a { color: var(--text); font-weight: 500; }
.woocommerce table.shop_table .product-name a:hover { color: var(--gold); }
.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal { color: var(--text); }
.woocommerce table.shop_table tr.cart-subtotal td,
.woocommerce table.shop_table tr.order-total td { color: var(--text); font-weight: 600; }

/* Cart input */
.woocommerce input.qty {
  width: 56px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  text-align: center;
  padding: var(--s2) var(--s3);
  font-size: 0.88rem;
}
.woocommerce input.qty:focus { border-color: var(--gold); outline: none; }

/* Checkout fields */
.woocommerce-checkout .form-row label { color: var(--text-muted); font-size: 0.82rem; }
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 0.75rem 1rem;
  width: 100%;
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: border-color var(--t);
  outline: none;
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus { border-color: var(--gold); }

/* WC buttons */
.woocommerce #place_order,
.woocommerce-cart .wc-proceed-to-checkout a,
.woocommerce button[type="submit"] {
  background: var(--gold) !important;
  color: #080808 !important;
  border: 1px solid var(--gold) !important;
  font-family: var(--font-body) !important;
  font-size: 0.74rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 0.875rem 2rem !important;
  border-radius: var(--radius-sm) !important;
  cursor: pointer !important;
  transition: all var(--t) !important;
  width: 100%;
}
.woocommerce #place_order:hover,
.woocommerce-cart .wc-proceed-to-checkout a:hover {
  background: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
}

/* ==========================================================
   25. UTILITIES
   ========================================================== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-dim    { color: var(--text-dim); }
.text-center { text-align: center; }
.d-flex      { display: flex; }
.align-center{ align-items: center; }
.gap-2       { gap: var(--s2); }
.gap-4       { gap: var(--s4); }
.mt-4        { margin-top: var(--s4); }
.mt-8        { margin-top: var(--s8); }
.mb-4        { margin-bottom: var(--s4); }
.mb-8        { margin-bottom: var(--s8); }
.pt-0        { padding-top: 0 !important; }

/* ==========================================================
   26. ANIMATIONS
   ========================================================== */
@keyframes fadeUp   { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes slideIn  { from { opacity:0; transform:translateX(-12px); } to { opacity:1; transform:none; } }

.anim-fadeup  { animation: fadeUp  0.5s ease both; }
.anim-fadein  { animation: fadeIn  0.4s ease both; }
.anim-slidein { animation: slideIn 0.4s ease both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }

/* Intersection observer — elements start hidden, JS adds .visible */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ==========================================================
   27. RESPONSIVE — TABLET ≤1100px
   ========================================================== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual {
    height: 62vh;
    order: -1;
  }
  .hero__visual::after {
    background:
      linear-gradient(to bottom, var(--bg) 0%, transparent 8%, transparent 88%, var(--bg) 100%);
  }
  .hero__content {
    padding: var(--s12) var(--s8);
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
  }
  .hero__eyebrow { justify-content: center; }
  .hero__desc { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }

  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s8); }
  .shop-layout { grid-template-columns: 200px 1fr; gap: var(--s8); }
  .product-layout { grid-template-columns: 1fr 1fr; gap: var(--s8); }
  .franchises-grid { grid-template-columns: repeat(3, 1fr); }
  .ebay-cta__inner { grid-template-columns: 1fr; gap: var(--s8); padding: var(--s8) var(--s6); }
  .spotlight-wrap { grid-template-columns: 1fr; }
  .spotlight-visual { height: 380px; }
  .about-hero-grid { grid-template-columns: 1fr; gap: var(--s10); }
  .commission-layout { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================
   28. RESPONSIVE — MOBILE ≤768px
   ========================================================== */
@media (max-width: 768px) {
  :root {
    --s24: 4rem;
    --s32: 5rem;
  }
  .site-header { padding-inline: var(--s4); }
  .primary-nav { display: none; }
  .hamburger { display: flex; }

  .hero__visual { height: 52vh; }
  .hero__content { padding: var(--s10) var(--s4); }

  .trust-bar__sep { display: none; }
  .trust-bar__inner { gap: var(--s4); }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s3); }
  .process-grid  { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .shop-toolbar-row { gap: var(--s3); }
  .shop-title { font-size: 1.4rem; }
  .franchises-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__product-tag { left: var(--s4); bottom: var(--s4); padding: var(--s3) var(--s4); }
  .hero__product-tag-name { font-size: 0.95rem; }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .edition-options { flex-direction: column; }
  .product-trust  { grid-template-columns: 1fr; }

  .faq-layout { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }

  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .spotlight-content { padding: var(--s8); }
}

/* ==========================================================
   29. RESPONSIVE — SMALL ≤480px
   ========================================================== */
@media (max-width: 480px) {
  .container { padding-inline: var(--s4); }
  .products-grid { grid-template-columns: 1fr 1fr; gap: var(--s2); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { flex-direction: column; gap: var(--s4); align-items: center; }
  .about-stats { grid-template-columns: 1fr; }
}

/* ==========================================================
   30. PAGE TEMPLATE COMPONENTS
   ========================================================== */

/* Shared page hero (About, Process, Commissions, FAQ) */
.page-hero {
  padding-top: calc(var(--header-h) + var(--s20));
  padding-bottom: var(--s16);
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at center, rgba(201,168,76,0.04), transparent 70%);
  pointer-events: none;
}
.page-hero h1 { position: relative; z-index: 1; margin-bottom: var(--s4); }
.page-hero__sub {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-inline: auto;
  font-size: 1rem;
  color: var(--text-muted);
}

/* Generic page main wrapper */
.page-main { padding-top: var(--header-h); min-height: 60vh; }

/* Page article (page.php, single.php) */
.page-article { padding-block: var(--s16); max-width: 760px; margin-inline: auto; }
.page-article__title { margin-bottom: var(--s8); }
.page-article__meta { font-size: 0.75rem; color: var(--text-dim); margin-bottom: var(--s8); }
.page-article__content { font-size: 0.95rem; line-height: 1.85; color: var(--text-muted); }
.page-article__content h2,
.page-article__content h3 { color: var(--text); margin-block: var(--s8) var(--s4); }
.page-article__content p   { margin-bottom: var(--s5); }
.page-article__content ul,
.page-article__content ol  { padding-left: var(--s6); margin-bottom: var(--s5); }
.page-article__content li  { margin-bottom: var(--s2); }
.page-article__content a   { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-section { padding-block: var(--s24); }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}
.about-split__text { display: flex; flex-direction: column; gap: var(--s5); }
.about-split__text h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
.about-split__text p { font-size: 0.94rem; }
.about-split__visual img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.about-split__placeholder {
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-stats-section { padding-block: var(--s16); background: var(--bg-2); border-block: 1px solid var(--border); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
  text-align: center;
}
.about-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--s2);
}
.about-stat__label {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-values { padding-block: var(--s24); }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s8);
}
.about-value {
  padding: var(--s8) var(--s6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--t);
}
.about-value:hover { border-color: var(--border-2); }
.about-value svg { color: var(--gold); margin-bottom: var(--s5); }
.about-value h4 { font-size: 1.1rem; margin-bottom: var(--s3); }
.about-value p  { font-size: 0.84rem; }

.about-cta { padding-block: var(--s16); background: var(--bg-2); border-top: 1px solid var(--border); }
.about-cta__inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  padding: var(--s12);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.about-cta__inner h3 { margin-bottom: var(--s3); }
.about-cta__inner p  { margin-bottom: var(--s8); }

/* ── PROCESS ─────────────────────────────────────────────── */
.process-detail { padding-block: var(--s24); }
.process-detail-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s10);
  align-items: start;
  padding-block: var(--s8);
  border-bottom: 1px solid var(--border);
}
.process-detail-step:last-child { border-bottom: none; }
.process-detail-step__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border-2);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color var(--t);
}
.process-detail-step:hover .process-detail-step__num { color: var(--gold); opacity: 0.6; }
.process-detail-step__content h3 { font-size: 1.6rem; margin-bottom: var(--s4); }
.process-detail-step__content p  { font-size: 0.9rem; line-height: 1.8; margin-bottom: var(--s3); }
.process-detail-step__content p:last-child { margin-bottom: 0; }

.finish-section { padding-block: var(--s24); }
.finish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.finish-card {
  padding: var(--s8) var(--s6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--t), transform var(--t-slow);
}
.finish-card:hover { border-color: var(--gold-alpha-2); transform: translateY(-3px); }
.finish-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: var(--s4);
  line-height: 1;
}
.finish-card h4 { font-size: 1.15rem; margin-bottom: var(--s3); }
.finish-card p  { font-size: 0.84rem; margin-bottom: var(--s5); }
.finish-card__tag {
  display: inline-flex;
  padding: 0.25rem 0.7rem;
  background: var(--gold-alpha);
  border: 1px solid var(--gold-alpha-2);
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* ── COMMISSIONS ─────────────────────────────────────────── */
.commissions-info,
.commissions-process { padding-block: var(--s24); }

.commissions-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: start;
}
.commissions-split h2 { font-size: 1.5rem; margin-bottom: var(--s6); }

.check-list,
.cross-list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.check-list li,
.cross-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: var(--s6);
  position: relative;
  line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}
.cross-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
}

.commissions-form-section { padding-block: var(--s24); }
.commissions-form-wrap {
  max-width: 680px;
  margin-inline: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s12);
}

.commission-form .form-group { margin-bottom: var(--s5); }
.commission-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--s2);
}
.commission-form label span[aria-hidden] { color: var(--gold); }
.commission-form input,
.commission-form select,
.commission-form textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.88rem;
  padding: 0.8rem 1rem;
  transition: border-color var(--t);
  outline: none;
  font-family: var(--font-body);
}
.commission-form input::placeholder,
.commission-form textarea::placeholder { color: var(--text-dim); }
.commission-form input:focus,
.commission-form select:focus,
.commission-form textarea:focus { border-color: var(--gold); }
.commission-form textarea { resize: vertical; min-height: 120px; }
.commission-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.form-group--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
}
.form-group--checkbox input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
}
.form-group--checkbox a { color: var(--gold); }
.form-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: var(--s6);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.form-note a { color: var(--gold); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { padding-block: var(--s24); }
.faq-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--s12);
  align-items: start;
}
.faq-nav {
  position: sticky;
  top: calc(var(--header-h) + var(--s6));
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.faq-nav__link {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: var(--s2) var(--s3);
  border-left: 2px solid var(--border);
  transition: color var(--t), border-color var(--t);
  line-height: 1.5;
}
.faq-nav__link:hover { color: var(--text); border-color: var(--border-2); }
.faq-content { display: flex; flex-direction: column; gap: var(--s12); }
.faq-cat {}
.faq-cat__heading {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s5);
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--border);
}

/* ── SHOP ARCHIVE ────────────────────────────────────────── */
.shop-main { padding-top: calc(var(--header-h) + var(--s10)); padding-bottom: var(--s24); }

.shop-toolbar-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s6);
}
.shop-toolbar-left { display: flex; align-items: baseline; gap: var(--s3); flex-wrap: wrap; }
.shop-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.shop-count {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Franchise chips */
.franchise-chips-wrap {
  position: relative;
  margin-bottom: var(--s8);
  overflow: hidden;
}
.franchise-chips-wrap::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--bg));
  pointer-events: none;
}
.franchise-chips {
  display: flex;
  gap: var(--s2);
  overflow-x: auto;
  padding-bottom: var(--s2);
  scrollbar-width: none;
}
.franchise-chips::-webkit-scrollbar { display: none; }
.franchise-chip {
  flex-shrink: 0;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all var(--t);
  line-height: 1;
}
.franchise-chip:hover { border-color: var(--border-2); color: var(--text); }
.franchise-chip.active { border-color: var(--gold); color: var(--gold); background: var(--gold-alpha); }

.shop-content {}
.shop-empty {
  text-align: center;
  padding: var(--s16) var(--s8);
  border: 1px dashed var(--border-2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
  grid-column: 1 / -1;
}
.shop-empty__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin: 0;
}
.shop-empty__hint  { color: var(--text-muted); font-size: 0.95rem; margin: 0; }
.shop-empty__chips {
  display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: center;
  max-width: 560px;
  margin-top: var(--s2);
}
.shop-empty__actions { margin-top: var(--s4); }
.shop-empty p { font-size: 0.9rem; }

/* Sidebar list links */
.sidebar-heading {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--s4);
}
.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem var(--s3);
  font-size: 0.95rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
}
.sidebar-list__link:hover { color: var(--text); background: var(--bg-elevated); }
.sidebar-list__link.active { color: var(--gold); background: var(--gold-alpha); }
.sidebar-clear { font-size: 0.75rem; color: var(--text-dim); opacity: 0.7; }
.sidebar-clear-all {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: color var(--t);
}
.sidebar-clear-all:hover { color: var(--gold); }
.sidebar-active-filters { padding-bottom: var(--s4); margin-bottom: var(--s4); }

/* ── SINGLE PRODUCT ──────────────────────────────────────── */
.product-main { padding-top: var(--header-h); padding-bottom: var(--s24); }

/* Gallery aliases (templates use __main / __thumbs) */
.product-gallery__main {
  aspect-ratio: 1/1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--s3);
  cursor: zoom-in;
  position: relative;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity var(--t);
}
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s2);
}
.gallery-zoom {
  position: absolute;
  bottom: var(--s3);
  right: var(--s3);
  width: 34px;
  height: 34px;
  background: rgba(10,10,10,0.7);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--t);
  backdrop-filter: blur(4px);
}
.gallery-zoom:hover { color: var(--gold); border-color: var(--gold); }

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s8);
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.gallery-lightbox__close {
  position: absolute;
  top: var(--s6);
  right: var(--s6);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  background: var(--bg-card);
  transition: all var(--t);
}
.gallery-lightbox__close:hover { color: var(--text); border-color: var(--text-muted); }

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  color: var(--text-muted);
  background: var(--bg-card);
  transition: all var(--t);
  cursor: pointer;
  z-index: 2;
}
.gallery-lightbox__nav:hover { color: var(--text); border-color: var(--text-muted); background: var(--bg-elevated); }
.gallery-lightbox__nav--prev { left: var(--s6); }
.gallery-lightbox__nav--next { right: var(--s6); }

.gallery-lightbox__counter {
  position: absolute;
  bottom: var(--s6);
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
}

@media (max-width: 600px) {
  .gallery-lightbox__nav { width: 44px; height: 44px; }
  .gallery-lightbox__nav--prev { left: var(--s3); }
  .gallery-lightbox__nav--next { right: var(--s3); }
}

/* Product info panel */
.product-info { display: flex; flex-direction: column; }
.product-info__franchise {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s2);
}
.product-info__name {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: var(--s4);
}
.product-info__badge-row {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-bottom: var(--s6);
}
.product-info__sku {
  font-size: 0.6rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-info__short-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  padding-bottom: var(--s6);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s6);
}
.product-info__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-block: var(--s4);
}

/* On-request pricing (painted not actively listed) */
.price-on-request { display: flex; flex-direction: column; gap: var(--s2); }
.price-on-request .price-from-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-right: var(--s1);
}
.price-on-request__hint {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: none;
}

/* =====================================================
   Enquiry modal
   ===================================================== */
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s4);
  overflow-y: auto;
}
.enquiry-modal[hidden] { display: none; }
.enquiry-modal__panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  padding: 2.5rem 2.25rem 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  max-height: calc(100vh - var(--s8));
  overflow-y: auto;
}
.enquiry-modal__close {
  position: absolute;
  top: var(--s4);
  right: var(--s4);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--t);
}
.enquiry-modal__close:hover { color: var(--text); border-color: var(--text-muted); }
.enquiry-modal__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--gold);
  margin: 0 0 var(--s3);
  padding-right: var(--s10);
  line-height: 1.2;
}
.enquiry-modal__intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1.75rem;
}

.enquiry-form__row { margin-bottom: var(--s5); }
.enquiry-form__row--checkbox { margin-bottom: var(--s6); margin-top: var(--s2); }
.enquiry-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  margin-bottom: 0;
}
.enquiry-form__grid .enquiry-form__row { margin-bottom: var(--s5); }
.enquiry-form__label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: var(--s3);
}
.enquiry-form__input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--t);
}
.enquiry-form__input:focus,
.enquiry-form__input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}
.enquiry-form__check input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.enquiry-form__textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
  line-height: 1.5;
}
.enquiry-form__check {
  display: flex;
  gap: var(--s3);
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
  padding: var(--s3) 0;
}
.enquiry-form__check input { margin-top: 4px; flex-shrink: 0; }
.enquiry-form__actions {
  display: flex;
  gap: var(--s4);
  justify-content: flex-end;
  margin-top: var(--s8);
  padding-top: var(--s6);
  border-top: 1px solid var(--border-2);
}
.enquiry-form__actions .btn { flex: 0 1 auto; padding-inline: var(--s6); }
.enquiry-form__feedback {
  margin-top: var(--s5);
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.2em;
}
.enquiry-form__feedback--ok    { color: #6ce28a; }
.enquiry-form__feedback--error { color: #ff8484; }

/* Honeypot — visually hidden but reachable for bots */
.enquiry-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Submit spinner */
.enquiry-form__actions .btn[aria-busy="true"] { opacity: 0.7; cursor: wait; }
.enquiry-form__actions .btn[aria-busy="true"]::after {
  content: "";
  display: inline-block;
  width: 14px; height: 14px;
  margin-left: 8px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  vertical-align: middle;
  animation: atelier-spin 0.7s linear infinite;
}
@keyframes atelier-spin { to { transform: rotate(360deg); } }

/* External checkout notice on cart/checkout pages */
.atelier-external-notice {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--gold);
  color: var(--text);
  padding: var(--s5) var(--s6);
  border-radius: var(--radius-sm);
  margin: var(--s6) 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.atelier-external-notice strong { color: var(--gold); display: block; margin-bottom: var(--s2); }

@media (max-width: 480px) {
  .enquiry-modal { padding: var(--s3); }
  .enquiry-modal__panel { padding: 2rem 1.25rem 1.5rem; }
  .enquiry-modal__title { font-size: 1.3rem; padding-right: var(--s8); }
  .enquiry-form__grid { grid-template-columns: 1fr; gap: 0; }
  .enquiry-form__actions { flex-direction: column-reverse; gap: var(--s3); }
  .enquiry-form__actions .btn { width: 100%; }
}

/* Option group (scale + edition) */
.product-option-group { margin-bottom: var(--s6); }
.product-option-group__label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.product-option-group__selected { color: var(--text-muted); font-weight: 400; }

/* Variant + edition selectors (aliases for existing .variant-options / .edition-options) */
.variant-selector  { display: flex; gap: var(--s2); flex-wrap: wrap; }
.edition-selector  { display: flex; gap: var(--s3); flex-wrap: wrap; }

/* ATC row */
.atc-row {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-bottom: var(--s6);
}
.atc-row .production-notice {
  flex: 1;
  min-width: 200px;
  margin: 0;
}

/* Product trust grid (alias .product-trust) */
.product-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  padding: var(--s4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-top: var(--s5);
}

/* Spec list inside accordion */
.spec-list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.spec-list li {
  display: flex;
  gap: var(--s3);
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.spec-list li strong {
  min-width: 90px;
  flex-shrink: 0;
  color: var(--text-muted);
  font-weight: 500;
}

/* Related products section */
.related-section {
  margin-top: var(--s16);
  padding-top: var(--s16);
  border-top: 1px solid var(--border);
}

/* 404 page aliases */
.page-404 .error-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s16) var(--s8);
}
.error-404__num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--border-2);
  line-height: 1;
  display: block;
  margin-bottom: var(--s4);
}
.error-404 h1 { margin-bottom: var(--s4); }
.error-404 p  { max-width: 380px; margin-bottom: var(--s8); }
.error-404__actions { display: flex; gap: var(--s4); flex-wrap: wrap; justify-content: center; }

/* ── RESPONSIVE ADDITIONS ────────────────────────────────── */
@media (max-width: 1100px) {
  .about-split          { grid-template-columns: 1fr; }
  .about-values-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-stats          { grid-template-columns: repeat(2, 1fr); }
  .process-detail-step  { grid-template-columns: 56px 1fr; gap: var(--s6); }
  .finish-grid          { grid-template-columns: 1fr 1fr; }
  .commissions-split    { grid-template-columns: 1fr; gap: var(--s8); }
  .faq-layout           { grid-template-columns: 160px 1fr; }
  .product-gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .page-hero { padding-top: calc(var(--header-h) + var(--s12)); }
  .about-values-grid    { grid-template-columns: 1fr; }
  .about-stats          { grid-template-columns: repeat(2, 1fr); }
  .finish-grid          { grid-template-columns: 1fr; }
  .faq-layout           { grid-template-columns: 1fr; }
  .faq-nav              { flex-direction: row; flex-wrap: wrap; position: static; margin-bottom: var(--s6); }
  .faq-nav__link        { border-left: none; border-bottom: 2px solid var(--border); padding: var(--s2) var(--s3); }
  .commissions-form-wrap { padding: var(--s8) var(--s5); }
  .commission-form .form-row { grid-template-columns: 1fr; }
  .product-trust-grid   { grid-template-columns: 1fr; }
  .atc-row              { flex-wrap: wrap; }
  .atc-row .btn         { width: 100%; }
  .error-404__actions   { flex-direction: column; align-items: center; }
}

/* === Product page: urgency / made-to-order callout === */
.product-urgency {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s4) var(--s5);
  margin: var(--s4) 0 var(--s6);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}
.product-urgency__pulse {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  animation: pulseGlow 2s ease-in-out infinite;
}
.product-urgency__pulse::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}
@keyframes pulseRing {
  0%   { opacity: 0.5; transform: scale(0.8); }
  100% { opacity: 0;   transform: scale(1.6); }
}
.product-urgency__text strong {
  color: var(--gold);
  margin-right: 6px;
}

/* === Hero: mini trust ribbon under CTAs === */
.hero__mini-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-top: var(--s5);
  padding-top: var(--s4);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.hero__mini-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.hero__mini-trust-item svg {
  color: var(--gold);
  opacity: 0.85;
}

/* === Single product: Why eBay trust block === */
.why-ebay {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  margin: var(--s4) 0 var(--s4);
  background: rgba(96, 165, 250, 0.06);
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}
.why-ebay__icon {
  flex: 0 0 auto;
  color: #60a5fa;
  margin-top: 2px;
}
.why-ebay__body strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 600;
}

/* ==========================================================
   v2 OVERRIDES — design refinements (May 2026)
   ========================================================== */

/* Header: keep translucent always (no scrolled solid) + bigger nav */
.site-header,
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.55) !important;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  box-shadow: none;
}
.primary-nav { gap: var(--s8); }
.primary-nav a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Brand wordmark (replaces logo image) */
.site-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--text);
  text-transform: none;
}
.site-brand:hover .site-brand__name { color: var(--gold); }

/* Card: kill the arrow circle, bigger price */
.product-card__arrow,
.product-card__arrow svg { display: none !important; }
.product-card__price {
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--gold);
  letter-spacing: 0.01em;
}
.product-card__price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Shop / archive grid: consistent 4 columns at desktop, tighter gaps on mobile */
.products-grid,
ul.products,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: var(--s6);
  list-style: none;
  padding: 0;
}
@media (max-width: 1100px) {
  .products-grid, ul.products, .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: var(--s5); }
}
@media (max-width: 760px) {
  .products-grid, ul.products, .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: var(--s3); }
}
@media (max-width: 460px) {
  .products-grid, ul.products, .woocommerce ul.products { grid-template-columns: 1fr !important; gap: var(--s3); }
}

/* Hide pagination — replaced by Load More button */
.woocommerce-pagination,
.atelier-pagination,
nav.woocommerce-pagination { display: none !important; }

/* Load more button */
.atelier-loadmore-wrap { text-align: center; margin: var(--s10) 0 var(--s4); }
.atelier-loadmore {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.atelier-loadmore:hover { background: var(--gold); color: var(--bg); }
.atelier-loadmore:disabled { opacity: 0.5; cursor: not-allowed; }
.atelier-loadmore.loading::after {
  content: ''; width: 14px; height: 14px;
  border: 2px solid currentColor; border-right-color: transparent;
  border-radius: 50%;
  animation: lm-spin 0.7s linear infinite;
}
@keyframes lm-spin { to { transform: rotate(360deg); } }

/* Hide SKU on single product */
.product-info__sku { display: none !important; }

/* Stronger typographic personality */
body { font-family: var(--font-body); font-feature-settings: 'ss01', 'cv11'; }
h1, h2, h3, .hero__title, .product-info__name {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.hero__title { font-weight: 500; }
.hero__title em { font-style: italic; color: var(--gold); }

/* Product description: kill big emoji icons that make it look cheap */
.atelier-product-desc h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin-top: 1.5em;
}

/* === XL Buy / Enquire CTA — centered, prominent === */
.atc-row--centered {
  display: flex;
  justify-content: center;
  margin: var(--s5) 0;
}
.btn--xl {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 20px 64px;
  min-width: 280px;
  border-radius: 6px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.atc-cta {
  box-shadow: 0 6px 22px rgba(201, 168, 76, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.atc-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}
.atc-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: -8px;
  margin-bottom: var(--s5);
}
.edition-btn__hint {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
}
