/* =============================================================
   LUSTRE — Premium Fine-Jewelry E-commerce Template
   Plain HTML5 + CSS3 + vanilla JS. No frameworks, no build tools.
   No external image files — every visual is a CSS gradient, shape,
   inline SVG, or Unicode glyph. Works fully offline.
   -------------------------------------------------------------
   TABLE OF CONTENTS
   1.  Design tokens (:root)  ← REBRAND HERE
   2.  Reset & base
   3.  Layout helpers
   4.  Buttons & badges
   5.  Announcement bar
   6.  Header / nav / search / cart
   7.  Hero (home)
   8.  Section headings
   9.  Categories
   10. Products
   11. Promo banner
   12. Featured strip
   13. Trust strip
   14. Newsletter
   15. CTA band
   16. Footer
   17. Toast
   18. Scroll-reveal
   19. Page banner / breadcrumb
   20. Shop: sidebar + sort + pagination
   21. Product detail / gallery / tabs / quantity
   22. About page
   23. Contact page
   24. Responsive breakpoints
============================================================= */

/* -------------------------------------------------------------
   1. DESIGN TOKENS  ← REBRAND HERE
   Change these once to re-skin the whole template.
------------------------------------------------------------- */
:root {
  /* Brand palette — luxury dark + gold */
  --bg:        #0e0e0e;   /* near-black page background        */
  --ink:       #f3eee4;   /* warm ivory text                   */
  --accent:    #c9a227;   /* gold accent                       */
  --accent-2:  #e9cd6b;   /* lighter gold for gradients        */
  --accent-dk: #a9851c;   /* deeper gold for hovers            */
  --muted:     #9a948a;   /* muted text                        */
  --surface:   #161513;   /* card / panel surface              */
  --surface-2: #1f1d19;   /* raised surface                    */
  --line:      rgba(255,255,255,.08); /* hairline borders      */
  --line-2:    rgba(255,255,255,.14);

  /* Typography */
  --font-head: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.4);
  --shadow:    0 12px 34px rgba(0,0,0,.45);
  --shadow-lg: 0 26px 64px rgba(0,0,0,.55);
  --glow:      0 0 0 1px rgba(201,162,39,.4), 0 14px 40px rgba(201,162,39,.18);

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --header-h: 74px;

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* -------------------------------------------------------------
   2. RESET & BASE
------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.1;
  letter-spacing: .005em;
  font-weight: 600;
  color: var(--ink);
}

::selection { background: var(--accent); color: #0e0e0e; }

/* -------------------------------------------------------------
   3. LAYOUT HELPERS
------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: 96px 0; }
.section--alt { background: var(--surface); }
.section--tight { padding: 64px 0; }

/* -------------------------------------------------------------
   4. BUTTONS & BADGES
------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  transition: transform .2s var(--ease), background .2s var(--ease),
              box-shadow .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1408;
  box-shadow: 0 10px 26px rgba(201,162,39,.28);
}
.btn--primary:hover { box-shadow: 0 16px 38px rgba(201,162,39,.42); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-2);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn--light { background: var(--ink); color: #15130f; }
.btn--light:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.btn--add {
  width: 100%;
  margin-top: 16px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-2);
  padding: 12px;
  font-size: .74rem;
}
.btn--add:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1408;
  border-color: transparent;
  transform: translateY(-2px);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .64rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}
.badge--sale { background: var(--accent); color: #15130f; }
.badge--new  { background: var(--ink); color: #15130f; }

/* -------------------------------------------------------------
   5. ANNOUNCEMENT BAR
------------------------------------------------------------- */
.announcement {
  background: #000;
  color: var(--ink);
  font-size: .82rem;
  border-bottom: 1px solid var(--line);
}
.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 9px var(--gutter);
  position: relative;
}
.announcement strong { color: var(--accent); }
.announcement__close {
  position: absolute;
  right: var(--gutter);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  opacity: .65;
  transition: opacity .2s;
}
.announcement__close:hover { opacity: 1; }
.announcement.is-hidden { display: none; }

/* -------------------------------------------------------------
   6. HEADER / NAV / SEARCH / CART
------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,14,14,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.45); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: .02em;
  color: var(--ink);
}
.logo__mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
}
.logo__mark svg { width: 28px; height: 28px; }
.logo--light { color: var(--ink); }

.nav { margin-left: 14px; }
.nav__list { display: flex; gap: 30px; }
.nav__link {
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width .25s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--ink); }
.nav__link.active::after { width: 100%; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.search {
  position: relative;
  display: flex;
  align-items: center;
}
.search__icon {
  position: absolute;
  left: 14px;
  color: var(--muted);
  display: flex;
}
.search__input {
  width: 210px;
  padding: 10px 16px 10px 40px;
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-pill);
  font-size: .85rem;
  color: var(--ink);
  background: var(--surface);
  transition: border-color .2s, background .2s, width .25s var(--ease);
}
.search__input::placeholder { color: var(--muted); }
.search__input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
}

.cart {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line-2);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .04em;
  transition: border-color .2s, background .2s;
}
.cart:hover { border-color: var(--accent); }
.cart svg { width: 19px; height: 19px; }
.cart__count {
  min-width: 22px; height: 22px;
  padding: 0 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #15130f;
  font-size: .72rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s var(--ease);
}
.cart__count.is-bump { animation: bump .35s var(--ease); }
@keyframes bump {
  0%,100% { transform: scale(1); }
  40% { transform: scale(1.45); }
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: var(--radius-pill);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------
   7. HERO (home)
------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 84% -8%, rgba(201,162,39,.16), transparent 60%),
    radial-gradient(760px 520px at -5% 110%, rgba(201,162,39,.08), transparent 55%),
    var(--bg);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 90px 0 100px;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(2.8rem, 6.4vw, 5rem);
  font-weight: 500;
  line-height: 1.04;
  margin-bottom: 22px;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__text {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 34px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-head); font-size: 2rem; font-weight: 600; color: var(--ink); }
.hero__stats span { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }

/* Hero visual — pure CSS jewel display */
.hero__visual { position: relative; min-height: 470px; }
.hero__blob {
  position: absolute;
  inset: 6% 6% 6% 8%;
  background:
    radial-gradient(circle at 35% 30%, rgba(233,205,107,.55), transparent 55%),
    conic-gradient(from 210deg, #2a2620, #46402f, #2a2620, #46402f, #2a2620);
  border-radius: 46% 54% 58% 42% / 48% 44% 56% 52%;
  animation: morph 14s ease-in-out infinite;
  filter: blur(1px);
}
@keyframes morph {
  0%,100% { border-radius: 46% 54% 58% 42% / 48% 44% 56% 52%; }
  50% { border-radius: 58% 42% 44% 56% / 54% 58% 42% 46%; }
}
.hero__card {
  position: absolute;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__card--main {
  inset: 13% 15% 13% 17%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__product-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  background:
    radial-gradient(circle at 50% 38%, rgba(233,205,107,.35), transparent 60%),
    linear-gradient(150deg, #1c1a16, #2c281f);
}
.hero__product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-weight: 500;
  font-size: .9rem;
  border-top: 1px solid var(--line);
}
.hero__product-meta strong { font-family: var(--font-head); font-size: 1.2rem; color: var(--accent); }

.hero__card--float {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 17px;
  font-size: .78rem;
}
.hero__card--float span:first-child { font-size: 1.7rem; }
.hero__card--float small { color: var(--muted); display: block; letter-spacing: .04em; }
.hero__card--float strong { font-family: var(--font-head); font-size: 1.05rem; }
.hero__card--float-1 { top: 6%; right: 0; animation: floaty 5s ease-in-out infinite; }
.hero__card--float-2 { bottom: 7%; left: -2%; animation: floaty 6s ease-in-out infinite reverse; }
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* -------------------------------------------------------------
   8. SECTION HEADINGS
------------------------------------------------------------- */
.section__head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section__title { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 500; }
.section__subtitle { color: var(--muted); margin-top: 12px; font-size: 1.04rem; }

/* -------------------------------------------------------------
   9. CATEGORIES
------------------------------------------------------------- */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--cat, linear-gradient(160deg, #20201b, #100f0d));
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,162,39,.4); }
.category-card__emoji {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-62%);
  font-size: 4.6rem;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.5));
  transition: transform .4s var(--ease);
}
.category-card:hover .category-card__emoji { transform: translate(-50%,-62%) scale(1.12); }
.category-card__body {
  position: relative;
  background: linear-gradient(transparent, rgba(8,8,8,.92));
  padding: 32px 22px 24px;
}
.category-card__body h3 { font-size: 1.5rem; font-weight: 500; }
.category-card__link {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.category-card:hover .category-card__link { color: var(--accent); }

/* -------------------------------------------------------------
   10. PRODUCTS
------------------------------------------------------------- */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.products--four { grid-template-columns: repeat(4, 1fr); }

.product {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,162,39,.35); }

.product__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--p, linear-gradient(150deg, #1d1b16, #2b2820));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 36%, rgba(233,205,107,.28), transparent 60%);
}
.product__emoji {
  position: relative;
  font-size: 4.4rem;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.5));
  transition: transform .45s var(--ease);
}
.product:hover .product__emoji { transform: scale(1.16) rotate(-3deg); }

.product__body { padding: 20px 20px 22px; }
.product__cat {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  font-weight: 600;
}
.product__name { font-family: var(--font-head); font-size: 1.35rem; font-weight: 500; margin: 5px 0 8px; }
.product__rating { color: var(--accent-2); font-size: .9rem; letter-spacing: 1px; }
.product__rating span { color: var(--muted); font-size: .78rem; letter-spacing: 0; }
.product__price { display: flex; align-items: baseline; gap: 9px; margin-top: 12px; }
.price { font-family: var(--font-head); font-weight: 600; font-size: 1.35rem; color: var(--ink); }
.price--old { color: var(--muted); text-decoration: line-through; font-size: .95rem; }

/* -------------------------------------------------------------
   11. PROMO BANNER
------------------------------------------------------------- */
.promo {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  background:
    radial-gradient(500px 300px at 90% 10%, rgba(201,162,39,.18), transparent 60%),
    linear-gradient(120deg, #18160f, #211d12 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.promo__content { padding: 64px 56px; }
.promo__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 16px;
}
.promo__title { font-size: clamp(2.2rem, 4.4vw, 3.4rem); font-weight: 500; margin-bottom: 16px; }
.promo__text { color: var(--muted); max-width: 380px; margin-bottom: 30px; }

.promo__visual { position: relative; height: 100%; min-height: 300px; }
.promo__circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 190px; height: 190px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #15130f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 3.2rem;
  box-shadow: 0 0 0 14px rgba(201,162,39,.14);
}
.promo__circle small { font-size: 1rem; letter-spacing: .24em; font-family: var(--font-body); font-weight: 700; }
.promo__emoji { position: absolute; font-size: 2.3rem; animation: floaty 5s ease-in-out infinite; }
.promo__emoji--1 { top: 16%; left: 16%; }
.promo__emoji--2 { top: 22%; right: 18%; animation-delay: 1s; }
.promo__emoji--3 { bottom: 14%; left: 26%; animation-delay: 2s; }

/* -------------------------------------------------------------
   12. FEATURED STRIP (editorial highlight)
------------------------------------------------------------- */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.featured__visual {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 40% 35%, rgba(233,205,107,.4), transparent 58%),
    linear-gradient(150deg, #201d16, #100f0c);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.featured__visual span { filter: drop-shadow(0 10px 22px rgba(0,0,0,.5)); }
.featured h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; margin-bottom: 18px; }
.featured p { color: var(--muted); margin-bottom: 16px; }
.featured__list { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 30px; }
.featured__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.featured__list li::before {
  content: '\2727';
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1.4;
}

/* -------------------------------------------------------------
   13. TRUST STRIP
------------------------------------------------------------- */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.trust-item:hover { transform: translateY(-4px); border-color: rgba(201,162,39,.35); }
.trust-item__icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--accent);
}
.trust-item h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 500; }
.trust-item p { font-size: .84rem; color: var(--muted); }

/* -------------------------------------------------------------
   14. NEWSLETTER
------------------------------------------------------------- */
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(600px 320px at 100% 0%, rgba(201,162,39,.14), transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
}
.newsletter__title { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 500; margin-bottom: 10px; }
.newsletter__content p { color: var(--muted); max-width: 420px; }
.newsletter__field { display: flex; gap: 10px; }
.newsletter__input {
  flex: 1;
  padding: 15px 18px;
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-pill);
  background: var(--bg);
  color: var(--ink);
  font-size: .95rem;
  transition: border-color .2s;
}
.newsletter__input::placeholder { color: var(--muted); }
.newsletter__input:focus { outline: none; border-color: var(--accent); }
.newsletter__input.is-error { border-color: #e0534d; }
.newsletter__msg { font-size: .85rem; margin-top: 12px; min-height: 1.2em; font-weight: 500; }
.newsletter__msg.is-error { color: #e0534d; }
.newsletter__msg.is-success { color: var(--accent-2); }

/* -------------------------------------------------------------
   15. CTA BAND
------------------------------------------------------------- */
.cta-band {
  text-align: center;
  background:
    radial-gradient(620px 360px at 50% -20%, rgba(201,162,39,.2), transparent 60%),
    linear-gradient(135deg, #18160f, #221d12);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 70px 48px;
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 540px; margin: 0 auto 30px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* -------------------------------------------------------------
   16. FOOTER
------------------------------------------------------------- */
.footer { background: #0a0a0a; color: var(--muted); border-top: 1px solid var(--line); }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 76px var(--gutter) 56px;
}
.footer__tagline { font-size: .9rem; margin: 18px 0 22px; max-width: 290px; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  transition: background .2s, transform .2s, border-color .2s;
}
.footer__social-link:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }

.footer__col h4 {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: .9rem; transition: color .2s; }
.footer__col a:hover { color: var(--accent); }

.footer__bottom { border-top: 1px solid var(--line); }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px var(--gutter);
  font-size: .84rem;
}
.footer__legal { display: flex; gap: 22px; }
.footer__legal a:hover { color: var(--accent); }

/* -------------------------------------------------------------
   17. TOAST
------------------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--surface-2);
  border: 1px solid rgba(201,162,39,.4);
  color: var(--ink);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: .88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
  pointer-events: none;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; }

/* -------------------------------------------------------------
   18. SCROLL-REVEAL
------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------
   19. PAGE BANNER + BREADCRUMB (inner pages)
------------------------------------------------------------- */
.page-banner {
  background:
    radial-gradient(900px 420px at 86% -20%, rgba(201,162,39,.16), transparent 60%),
    radial-gradient(800px 420px at 0% 120%, rgba(201,162,39,.08), transparent 55%),
    var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 58px;
  text-align: center;
}
.page-banner__title { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 500; }
.page-banner__subtitle { color: var(--muted); margin-top: 14px; font-size: 1.04rem; max-width: 600px; margin-inline: auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.breadcrumb a { color: var(--accent); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb span[aria-hidden] { color: var(--line-2); }
.breadcrumb .is-current { color: var(--ink); }

/* -------------------------------------------------------------
   20. SHOP: SIDEBAR + SORT + PAGINATION
------------------------------------------------------------- */
.shop-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 40px;
  align-items: start;
}
.shop-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.filter-group {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.filter-group__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.filter-list { display: flex; flex-direction: column; gap: 12px; }
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s;
}
.filter-check:hover { color: var(--ink); }
.filter-check input { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; }
.filter-check .filter-count { margin-left: auto; color: var(--line-2); font-size: .8rem; }

/* Price range slider (visual) */
.price-range { padding-top: 4px; }
.price-range input[type="range"] { width: 100%; accent-color: var(--accent); cursor: pointer; }
.price-range__labels {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 600;
}

/* Metal swatches */
.metal-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.metal-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 1.5px var(--line-2);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.metal-dot:hover { transform: scale(1.12); }
.metal-dot.is-active { box-shadow: 0 0 0 2px var(--accent); }
.metal-dot--gold { background: linear-gradient(135deg, #e9cd6b, #b8860b); }
.metal-dot--silver { background: linear-gradient(135deg, #e8e8e8, #a9a9a9); }
.metal-dot--rose { background: linear-gradient(135deg, #f2c1b6, #c98b7a); }
.metal-dot--platinum { background: linear-gradient(135deg, #f5f5f5, #cfd4d8); }

.filter-clear {
  width: 100%;
  padding: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all .2s var(--ease);
}
.filter-clear:hover { background: var(--accent); color: #15130f; border-color: var(--accent); }

/* Sort bar */
.shop-main { min-width: 0; }
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.sort-bar__count { font-size: .9rem; color: var(--muted); }
.sort-bar__count strong { color: var(--ink); font-family: var(--font-head); font-size: 1.1rem; }
.sort-bar__right { display: flex; align-items: center; gap: 12px; }
.sort-select {
  padding: 11px 16px;
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s;
}
.sort-select:focus { outline: none; border-color: var(--accent); }

.filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--surface);
}

/* Shop grid uses 3 columns */
.products--shop { grid-template-columns: repeat(3, 1fr); }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 54px;
}
.pagination__item {
  min-width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--muted);
  background: var(--surface);
  transition: all .2s var(--ease);
}
.pagination__item:hover { border-color: var(--accent); color: var(--ink); transform: translateY(-2px); }
.pagination__item.is-active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #15130f; border-color: transparent; }
.pagination__item.is-disabled { opacity: .35; pointer-events: none; }

/* -------------------------------------------------------------
   21. PRODUCT DETAIL / GALLERY / TABS / QUANTITY
------------------------------------------------------------- */
.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
.gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.gallery__main {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 40%, rgba(233,205,107,.35), transparent 60%),
    var(--gallery, linear-gradient(150deg, #211d16, #100f0c));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: background .3s var(--ease);
}
.gallery__emoji { filter: drop-shadow(0 14px 30px rgba(0,0,0,.55)); }
.gallery__badge { top: 18px; left: 18px; }
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.gallery__thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: var(--t, linear-gradient(150deg, #211d16, #100f0c));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  cursor: pointer;
  border: 1.5px solid var(--line);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.gallery__thumb:hover { transform: translateY(-3px); }
.gallery__thumb.is-active { border-color: var(--accent); }

.pd-info__cat {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  font-weight: 600;
}
.pd-info__title { font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 500; margin: 10px 0 14px; }
.pd-info__rating { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.pd-info__rating .stars { color: var(--accent-2); letter-spacing: 1px; }
.pd-info__rating .rating-meta { font-size: .86rem; color: var(--muted); }
.pd-info__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.pd-info__price .price { font-size: 2.2rem; }
.pd-info__price .price--old { font-size: 1.1rem; }
.pd-info__price .price-save {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #15130f;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.pd-info__desc { color: var(--muted); margin: 20px 0 28px; max-width: 480px; }

.pd-option { margin-bottom: 26px; }
.pd-option__label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pd-option__label .pd-option__value { color: var(--accent); font-weight: 600; }

.size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-chip {
  min-width: 46px;
  padding: 9px 12px;
  text-align: center;
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-sm);
  font-size: .86rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--surface);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.size-chip:hover { border-color: var(--accent); color: var(--ink); }
.size-chip.is-active { background: var(--accent); color: #15130f; border-color: var(--accent); }

.metal-select { display: flex; flex-wrap: wrap; gap: 12px; }

.pd-actions { display: flex; flex-direction: column; gap: 14px; margin: 30px 0; }
.pd-actions__row { display: flex; gap: 14px; }
.pd-actions__row .btn { flex: 1; }
.btn--buy { background: var(--ink); color: #15130f; }
.btn--buy:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

/* Quantity selector */
.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.qty__btn {
  width: 46px; height: 48px;
  font-size: 1.3rem;
  color: var(--ink);
  background: var(--surface);
  transition: background .2s;
}
.qty__btn:hover { background: var(--surface-2); }
.qty__input {
  width: 48px;
  height: 48px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--line-2);
  border-right: 1.5px solid var(--line-2);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  -moz-appearance: textfield;
}
.qty__input::-webkit-outer-spin-button,
.qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty__input:focus { outline: none; }
.pd-qty-row { display: flex; align-items: center; gap: 16px; }

.pd-meta {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .88rem;
  color: var(--muted);
}
.pd-meta span strong { color: var(--ink); font-weight: 600; }

/* Tabs */
.tabs { margin-top: 80px; }
.tabs__nav {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.tabs__btn {
  padding: 14px 24px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--muted);
  position: relative;
  transition: color .2s;
}
.tabs__btn::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .25s var(--ease);
}
.tabs__btn:hover { color: var(--ink); }
.tabs__btn.is-active { color: var(--ink); }
.tabs__btn.is-active::after { width: 100%; }
.tabs__panel { display: none; padding: 30px 0; max-width: 760px; color: var(--muted); }
.tabs__panel.is-active { display: block; animation: fadeIn .35s var(--ease); }
.tabs__panel h4 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 500; margin: 18px 0 10px; }
.tabs__panel p { margin-bottom: 14px; color: var(--muted); }
.tabs__panel ul { display: flex; flex-direction: column; gap: 9px; }
.tabs__panel ul li { padding-left: 22px; position: relative; color: var(--ink); }
.tabs__panel ul li::before { content: '\2727'; position: absolute; left: 0; color: var(--accent); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Spec table */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table th, .spec-table td { text-align: left; padding: 13px 0; font-size: .92rem; }
.spec-table th { font-family: var(--font-head); font-weight: 500; font-size: 1.05rem; color: var(--ink); width: 220px; }
.spec-table td { color: var(--muted); }

/* Reviews */
.review { padding: 22px 0; border-bottom: 1px solid var(--line); }
.review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.review__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 600; color: #15130f;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.review__name { font-family: var(--font-head); font-weight: 500; font-size: 1.1rem; color: var(--ink); }
.review__stars { color: var(--accent-2); font-size: .85rem; }
.review__date { color: var(--muted); font-size: .8rem; margin-left: auto; }
.review p { color: var(--muted); }

/* Related products */
.related { margin-top: 96px; }

/* -------------------------------------------------------------
   22. ABOUT PAGE
------------------------------------------------------------- */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-story__visual {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 42% 36%, rgba(233,205,107,.42), transparent 58%),
    linear-gradient(150deg, #211d16, #100f0c);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-story__visual span { filter: drop-shadow(0 12px 26px rgba(0,0,0,.55)); }
.about-story h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; margin-bottom: 18px; }
.about-story p { color: var(--muted); margin-bottom: 16px; }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 20px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.stat-card:hover { transform: translateY(-5px); border-color: rgba(201,162,39,.35); }
.stat-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.stat-card span { color: var(--muted); font-size: .9rem; margin-top: 6px; display: block; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,162,39,.35); }
.value-card__icon {
  width: 58px; height: 58px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  background: var(--surface-2);
  margin-bottom: 20px;
}
.value-card h3 { font-family: var(--font-head); font-size: 1.45rem; font-weight: 500; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: .92rem; }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-item {
  display: flex; gap: 16px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.why-item__check {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #15130f;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
}
.why-item h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 500; margin-bottom: 6px; }
.why-item p { font-size: .9rem; color: var(--muted); }

/* -------------------------------------------------------------
   23. CONTACT PAGE
------------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px;
}
.contact-form-card h2 { font-size: 1.9rem; font-weight: 500; margin-bottom: 8px; }
.contact-form-card > p { color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  font-size: .95rem;
  font-family: var(--font-body);
  transition: border-color .2s, background .2s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { outline: none; border-color: var(--accent); background: var(--surface-2); }
.form-field input.is-error,
.form-field textarea.is-error { border-color: #e0534d; }
.form-msg { font-size: .88rem; margin-top: 8px; min-height: 1.2em; font-weight: 500; }
.form-msg.is-error { color: #e0534d; }
.form-msg.is-success { color: var(--accent-2); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.info-card__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
}
.info-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 500; margin-bottom: 4px; }
.info-card p { font-size: .9rem; color: var(--muted); }
.info-card a { color: var(--accent); }

.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid var(--line); }
.hours-table td { padding: 11px 0; font-size: .9rem; }
.hours-table td:first-child { color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--ink); font-family: var(--font-head); font-weight: 600; }

.map-placeholder {
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(400px 200px at 30% 40%, rgba(201,162,39,.18), transparent 60%),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 44px),
    var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  border: 1px solid var(--line);
  position: relative;
}
.map-placeholder span { position: relative; filter: drop-shadow(0 6px 14px rgba(0,0,0,.5)); }
.map-placeholder::after {
  content: '\1F4CD  Lustre Boutique \2014 17 Hatton Garden, London';
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-body);
}

/* FAQ accordion */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq-item.is-open { border-color: rgba(201,162,39,.4); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink);
}
.faq-q__icon { flex-shrink: 0; font-size: 1.4rem; color: var(--accent); transition: transform .3s var(--ease); }
.faq-item.is-open .faq-q__icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-a__inner { padding: 0 24px 22px; color: var(--muted); font-size: .94rem; }

/* -------------------------------------------------------------
   24. RESPONSIVE BREAKPOINTS
------------------------------------------------------------- */
@media (max-width: 1024px) {
  .categories,
  .products,
  .products--four,
  .trust { grid-template-columns: repeat(2, 1fr); }

  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { min-height: 400px; max-width: 480px; }

  .promo { grid-template-columns: 1fr; }
  .promo__visual { min-height: 230px; order: -1; }
  .promo__content { padding: 46px 38px; }

  .featured { grid-template-columns: 1fr; gap: 36px; }
  .newsletter { grid-template-columns: 1fr; gap: 24px; padding: 42px 34px; }

  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .search__input { width: 160px; }

  /* Shop sidebar drawer */
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(82vw, 340px);
    background: var(--bg);
    z-index: 99;
    padding: calc(var(--header-h) + 20px) 22px 22px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .35s var(--ease);
    box-shadow: var(--shadow-lg);
    border-right: 1px solid var(--line);
  }
  .shop-sidebar.is-open { transform: translateX(0); }
  .filter-toggle { display: inline-flex; }
  .products--shop { grid-template-columns: repeat(3, 1fr); }

  .product-detail { grid-template-columns: 1fr; gap: 38px; }
  .gallery { position: static; max-width: 520px; }
  .gallery__main { font-size: 8rem; }

  .about-story { grid-template-columns: 1fr; gap: 34px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Mobile nav drawer */
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    background: var(--bg);
    padding: calc(var(--header-h) + 24px) 28px 28px;
    box-shadow: var(--shadow-lg);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    margin: 0;
    z-index: 99;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link { display: block; padding: 14px 0; font-size: .95rem; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }

  .hamburger { display: flex; }

  /* hide desktop search on small screens */
  .search { display: none; }

  body.nav-open { overflow: hidden; }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease);
    z-index: 98;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }

  .products--shop { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 50px 28px; }
}

@media (max-width: 560px) {
  .categories,
  .products,
  .products--four,
  .products--shop,
  .trust { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .hero__stats { gap: 26px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .newsletter__field { flex-direction: column; }
  .newsletter__field .btn { width: 100%; }
  .gallery__main { font-size: 6rem; }
  .pd-actions__row { flex-direction: column; }
  .contact-form-card { padding: 28px 22px; }
  .announcement__inner { padding-right: 40px; font-size: .76rem; text-align: center; }
  .logo { font-size: 1.45rem; }
  .cart span:not(.cart__count) { display: none; }
}
