:root {
  --bg: #f8f4ec;
  --bg-soft: #fffdf8;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-solid: #fffdfa;
  --marble: #f3eadb;
  --line: rgba(154, 113, 33, 0.16);
  --line-strong: rgba(154, 113, 33, 0.28);
  --gold: #b98422;
  --gold-2: #e5be66;
  --gold-3: #f6df9d;
  --bronze: #6e4a0e;
  --text: #241805;
  --muted: #6f5b36;
  --muted-2: #9c8356;
  --ok: #2b7a4b;
  --danger: #b84b3f;
  --shadow: 0 22px 60px rgba(96, 67, 19, 0.11);
  --shadow-soft: 0 12px 34px rgba(96, 67, 19, 0.08);
  --radius: 24px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 0%, rgba(229, 190, 102, .23), transparent 28rem),
    radial-gradient(circle at 92% 6%, rgba(185, 132, 34, .12), transparent 26rem),
    linear-gradient(115deg, rgba(255,255,255,.8) 0 16%, transparent 16% 18%, rgba(255,255,255,.42) 18% 28%, transparent 28% 100%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 54%, #f2eadc 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(248, 244, 236, 0.92);
  backdrop-filter: blur(14px);
}
.age-gate.hidden { display: none; }
.age-card {
  width: min(540px, 100%);
  background:
    linear-gradient(140deg, rgba(255,255,255,.98), rgba(246,239,224,.96)),
    var(--panel-solid);
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}
.age-card img { width: 260px; margin: 0 auto 18px; filter: drop-shadow(0 12px 28px rgba(185,132,34,.16)); }
.age-card h1 { margin: 4px 0 10px; font-size: clamp(2rem, 5vw, 3.2rem); color: var(--text); }
.age-card p { color: var(--muted); line-height: 1.65; }
.age-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 22px 0 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 10px clamp(16px, 4vw, 42px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(98, 70, 19, .06);
  backdrop-filter: blur(18px);
}
.brand img { width: min(230px, 46vw); filter: drop-shadow(0 10px 18px rgba(185,132,34,.12)); }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 4px; flex-wrap: wrap; }
.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--bronze);
  font-size: 0.89rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  color: #241805;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2));
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(185,132,34,.14);
}
.nav-toggle { display: none; }

.section-shell { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.page { display: none; padding: 36px 0 70px; }
.page.active { display: block; }

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 1000;
  font-size: 0.76rem;
  margin: 0 0 10px;
}
h1, h2, h3 { line-height: 1.05; margin: 0; }
.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: 44px;
}
.hero h1, .content-page h1, .product-hero h1 {
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  letter-spacing: -0.065em;
}
.hero h1, .product-hero h1 {
  max-width: 780px;
  background: linear-gradient(90deg, #2b1a03, var(--bronze), var(--gold), #d7a23d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text { color: var(--muted); font-size: 1.08rem; line-height: 1.78; max-width: 630px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  cursor: pointer;
  font-weight: 1000;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(96,67,19,.14); }
.btn.primary { background: linear-gradient(90deg, var(--gold), var(--gold-2)); color: #241805; border-color: rgba(255,255,255,.4); }
.btn.secondary { background: rgba(255,255,255,.78); color: var(--bronze); }
.btn.ghost { background: transparent; color: var(--muted); }
.btn.small { padding: 9px 14px; min-height: 38px; font-size: .88rem; }

.hero-banner-stage { display: grid; gap: 12px; }
.hero-banners { position: relative; min-height: 430px; }
.hero-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  border-radius: 34px;
  overflow: hidden;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr .95fr;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  transition: opacity .5s ease;
  background:
    radial-gradient(circle at 80% 16%, rgba(229,190,102,.22), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(243,234,219,.88));
}
.hero-banner-slide.active { opacity: 1; pointer-events: auto; }
.hero-banner-slide::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(185,132,34,.16);
}
.hero-banner-slide::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -80px;
  bottom: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,190,102,.24), transparent 64%);
}
.hero-banner-copy, .hero-banner-art { position: relative; z-index: 1; }
.hero-banner-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(185,132,34,.11);
  color: var(--bronze);
  font-size: .75rem;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-banner-copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 14px 0 12px; color: var(--text); }
.hero-banner-copy p { margin: 0; line-height: 1.75; color: var(--muted); max-width: 430px; }
.hero-banner-art { display: grid; place-items: center; min-height: 270px; }
.hero-banner-art img { max-height: 272px; width: 100%; object-fit: contain; filter: drop-shadow(0 16px 30px rgba(96,67,19,.18)); }

.banners { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 18px; }
.banner, .category-banner, .info-panel, .notice-panel, .content-cards article, .location-card, .contact-form {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.banner-wide {
  grid-column: span 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(100deg, rgba(229,190,102,.20), rgba(255,255,255,.76)), var(--panel);
}
.banner h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 10px; }
.banner p { color: var(--muted); margin: 0; line-height: 1.65; }
.category-banner {
  min-height: 170px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(243,234,219,.86));
}
.category-banner::after {
  content: "";
  position: absolute;
  inset: auto -24% -55% 24%;
  height: 170px;
  background: radial-gradient(circle, rgba(229,190,102,.26), transparent 68%);
  transform: rotate(-15deg);
}
.category-banner span { color: var(--muted); font-weight: 900; z-index: 1; }
.category-banner strong { font-size: 3.2rem; letter-spacing: -0.05em; z-index: 1; color: var(--text); }
.category-banner a { color: var(--bronze); font-weight: 1000; z-index: 1; }

.home-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; margin-top: 16px; }
.info-panel, .notice-panel { padding: 28px; }
.info-panel h2 { font-size: clamp(1.8rem, 4vw, 3.3rem); margin-bottom: 12px; }
.info-panel p, .notice-panel p { color: var(--muted); line-height: 1.72; }
.notice-panel h3 { font-size: 1.6rem; margin-bottom: 12px; color: var(--bronze); }

.product-hero { padding: 34px 0 14px; }
.product-hero p:not(.eyebrow) { color: var(--muted); max-width: 760px; line-height: 1.65; }
.product-controls {
  display: grid;
  grid-template-columns: 1.6fr repeat(2, minmax(180px, .7fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  margin-top: 20px;
}
.product-controls label { display: grid; gap: 6px; color: var(--muted); font-weight: 900; font-size: .84rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: 14px;
  padding: 12px 13px;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185,132,34,.12); }
.catalog-summary { display: flex; justify-content: space-between; gap: 16px; margin-top: 20px; color: var(--muted); flex-wrap: wrap; }
.catalog-summary p { margin: 0; }
.muted { color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 18px; }
.product-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.product-image {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(229,190,102,.12), rgba(255,255,255,.92)),
    #fffdf8;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 13px; background: rgba(255,255,255,.74); }
.placeholder-art {
  width: 100%;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 18px;
  text-align: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.placeholder-art::before {
  content: "";
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(229,190,102,.28), rgba(255,255,255,.7));
  box-shadow: inset 0 0 0 8px rgba(255,255,255,.35);
}
.placeholder-art .icon { display: none; }
.placeholder-art .placeholder-title { font-weight: 1000; color: var(--bronze); font-size: .9rem; line-height: 1.25; }
.placeholder-art .placeholder-meta { color: var(--muted-2); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; }
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.product-card h3 { font-size: 1rem; line-height: 1.25; letter-spacing: -0.02em; }
.price { color: var(--gold); font-size: 1.12rem; font-weight: 1000; white-space: nowrap; }
.product-meta { color: var(--muted); display: grid; gap: 4px; font-size: .82rem; line-height: 1.35; }
.card-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; align-items: center; }
.card-actions a { color: var(--bronze); font-weight: 1000; font-size: .82rem; }
.disabled-link { pointer-events: none; opacity: .45; }
.pager { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 28px; }
.pager button { min-width: 110px; }
.pager span { color: var(--muted); font-weight: 900; }

.content-page { padding-top: 40px; }
.content-page > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 850px; }
.content-page h1 { max-width: 1000px; margin-bottom: 16px; color: var(--text); }
.content-cards { display: grid; gap: 16px; margin: 28px 0; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.content-cards article { padding: 24px; }
.content-cards h3 { color: var(--bronze); margin-bottom: 10px; }
.content-cards p { color: var(--muted); line-height: 1.65; }
.locations-intro { margin-bottom: 26px; }
.locations-grid { display: grid; gap: 22px; margin-top: 26px; }
.location-card { display: grid; grid-template-columns: minmax(280px,.82fr) minmax(320px,1.18fr); gap: 22px; padding: 22px; align-items: stretch; overflow: hidden; }
.location-details { display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.location-number {
  width: fit-content;
  color: #241805;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .74rem;
  font-weight: 1000;
  letter-spacing: .14em;
}
.location-card h2 { color: var(--bronze); font-size: clamp(1.35rem, 2.4vw, 2rem); }
.location-card p { color: var(--muted); line-height: 1.65; margin: 0; }
.location-card a:not(.btn) { color: var(--bronze); font-weight: 1000; }
.location-address { font-size: 1.02rem; }
.location-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.map-embed { min-height: 300px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line-strong); background: radial-gradient(circle, rgba(229,190,102,.16), transparent 60%), rgba(255,255,255,.9); }
.map-embed iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; filter: saturate(.96) contrast(1.02); }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.contact-list { margin-top: 22px; color: var(--muted); }
.contact-form { padding: 24px; display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: var(--muted); font-weight: 900; }
.form-note { color: var(--muted); margin: 0; font-size: .9rem; }

.availability-modal { position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center; padding: 18px; }
.availability-modal.hidden { display: none; }
.availability-backdrop { position: absolute; inset: 0; background: rgba(53, 38, 9, .42); backdrop-filter: blur(8px); }
.availability-dialog {
  position: relative;
  width: min(560px, 100%);
  background: linear-gradient(180deg, #fffdfa, #f5eddf);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 28px 80px rgba(96,67,19,.24);
}
.modal-close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.95); color: var(--bronze); font-size: 1.5rem; cursor: pointer; }
.availability-copy, .availability-note { color: var(--muted); line-height: 1.7; }
.selected-product { margin: 14px 0 18px; font-weight: 1000; color: var(--bronze); font-size: 1.08rem; }
.availability-label { display: grid; gap: 8px; color: var(--bronze); font-weight: 900; }
.selected-location-card { margin-top: 16px; border: 1px solid var(--line); border-radius: 18px; padding: 16px; background: rgba(255,255,255,.84); }
.selected-location-card.hidden { display: none; }
.selected-location-card h3 { color: var(--bronze); margin-bottom: 8px; }
.selected-location-card p { color: var(--muted); margin: 4px 0; }
.selected-location-card a { color: var(--bronze); font-weight: 1000; }
.availability-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255,253,248,.94);
  padding: 28px clamp(16px, 4vw, 42px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  box-shadow: 0 -10px 28px rgba(96,67,19,.06);
}
.site-footer img { width: 180px; }
.site-footer p { margin: 6px 0 0; line-height: 1.55; }

@media (max-width: 1020px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-toggle { display: inline-flex; color: #241805; background: linear-gradient(90deg, var(--gold), var(--gold-2)); border: 0; border-radius: 999px; padding: 10px 16px; font-weight: 1000; }
  .main-nav { grid-column: 1 / -1; display: none; justify-content: flex-start; padding-bottom: 10px; }
  .main-nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 34px; }
  .product-controls { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .brand img { width: 190px; }
  .banners, .home-grid, .two-col, .three-col, .location-card, .contact-layout { grid-template-columns: 1fr; }
  .map-frame, .map-frame iframe, .map-embed, .map-embed iframe { min-height: 260px; }
  .banner-wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .hero-banner-slide { grid-template-columns: 1fr; min-height: 520px; }
  .product-controls { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .stack-on-mobile, .availability-actions { flex-direction: column; align-items: stretch; }
}

@media (max-width: 520px) {
  .section-shell { width: min(100% - 22px, 1180px); }
  .page { padding-top: 18px; }
  .hero-banner-slide { padding: 22px; min-height: 540px; }
  .hero-banner-art img { max-height: 230px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-topline { flex-direction: column; }
  .price { white-space: normal; }
  .age-card { padding: 24px 18px; }
}

/* FINAL THEME: Option 5 — White Marble Gold */
:root {
  --bg: #faf8f2;
  --bg-2: #ffffff;
  --panel: rgba(255, 255, 255, 0.94);
  --panel-2: rgba(253, 249, 240, 0.96);
  --line: rgba(179, 132, 42, 0.22);
  --gold: #bd8a2d;
  --gold-2: #d9b46c;
  --gold-3: #6b4611;
  --text: #231708;
  --muted: #735f3d;
  --danger: #c2503f;
  --ok: #2d7f53;
  --shadow: 0 22px 55px rgba(78, 59, 22, 0.11);
  --radius: 22px;
  --header-bg: rgba(255, 255, 255, 0.88);
  --header-link: #4b3512;
  --footer-bg: #fffdf7;
  --footer-text: #735f3d;
  --hero-start: #2a1a05;
  --hero-end: #d6a544;
  --secondary-btn-bg: #fffaf0;
  --secondary-btn-text: #6b4611;
}

body {
  background:
    radial-gradient(circle at 8% 6%, rgba(217, 180, 108, 0.22), transparent 28rem),
    radial-gradient(circle at 92% 10%, rgba(189, 138, 45, 0.12), transparent 30rem),
    radial-gradient(circle at 50% 100%, rgba(217, 180, 108, 0.16), transparent 34rem),
    linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(250,248,242,0.98) 40%, rgba(246,239,225,0.96) 100%);
  color: var(--text);
}

.site-header {
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(189, 138, 45, .2);
  box-shadow: 0 10px 35px rgba(78, 59, 22, .08);
}
.main-nav a { color: #5f451b; }
.main-nav a:hover, .main-nav a.active {
  color: #241705;
  background: linear-gradient(90deg, #f3db9f, #c9932e);
}
.nav-toggle { color: #241705; background: linear-gradient(90deg, #f3db9f, #c9932e); }

.age-gate { background: rgba(255, 250, 240, 0.82); }
.age-card {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(252,247,237,.98)),
    radial-gradient(circle at 50% 0%, rgba(217,180,108,.22), transparent 18rem);
  border-color: var(--line);
}
.age-card p, .age-card small { color: var(--muted); }

.hero h1,
.content-page h1,
.product-hero h1 {
  background: linear-gradient(90deg, #271a07, #8a5d16 45%, #d3a146 85%);
  -webkit-background-clip: text;
  color: transparent;
}
.hero-text,
.product-hero p:not(.eyebrow),
.content-page > p:not(.eyebrow),
.info-panel p,
.notice-panel p,
.content-cards p,
.catalog-summary,
.product-meta,
.location-card p,
.contact-list,
.form-note,
.pager span { color: var(--muted); }

.btn.primary {
  background: linear-gradient(90deg, #f4d99b, #c59131);
  color: #201405;
  border-color: rgba(132,92,22,.24);
}
.btn.secondary, .btn.ghost {
  background: rgba(255,255,255,.72);
  color: var(--gold-3);
  border-color: var(--line);
}

.banner,
.category-banner,
.info-panel,
.notice-panel,
.content-cards article,
.location-card,
.contact-form,
.product-controls,
.product-card,
.availability-dialog,
.selected-location-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(253,249,240,.95));
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.banner-wide {
  background:
    radial-gradient(circle at 100% 0%, rgba(217,180,108,.18), transparent 22rem),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(253,248,236,.95));
}
.category-banner.vape,
.category-banner.mods,
.category-banner.glass,
.category-banner.vaporizers {
  background:
    radial-gradient(circle at 78% 12%, rgba(217,180,108,.22), transparent 12rem),
    linear-gradient(135deg, #fffdf8, #f8efd9);
}
.category-banner span,
.category-banner a { color: var(--gold-3); }
.category-banner strong { color: #2b1b06; }
.category-banner::after { background: radial-gradient(circle, rgba(189, 138, 45, .20), transparent 68%); }
.notice-panel h3,
.content-cards h3,
.location-card h2 { color: var(--gold-3); }

.product-controls { background: rgba(255,255,255,.78); }
input, select, textarea {
  background: rgba(255,255,255,.92);
  color: var(--text);
  border-color: rgba(179,132,42,.24);
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(189,138,45,.12); }

.product-card { background: linear-gradient(180deg, #ffffff, #fbf6ea); }
.product-image {
  background:
    radial-gradient(circle at 50% 32%, rgba(217,180,108,.14), transparent 60%),
    linear-gradient(135deg, #ffffff, #fbf6ea);
}
.product-image img { background: transparent; padding: 14px; object-fit: contain; }
.placeholder-art .icon { filter: saturate(.95); }
.placeholder-art .placeholder-title { color: var(--gold-3); }
.placeholder-art .placeholder-meta { color: var(--muted); }
.price { color: #9a681b; }
.card-actions { margin-top: auto; }

.location-number {
  background: linear-gradient(90deg, #f4d99b, #c59131);
  color: #221505;
}
.map-embed {
  background: linear-gradient(135deg, #ffffff, #fbf6ea);
  border-color: var(--line);
}
.map-embed iframe { filter: saturate(.95) contrast(1.02); }

.site-footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(217,180,108,.14), transparent 18rem),
    #fffdf7;
  color: var(--footer-text);
  border-top-color: var(--line);
}

.availability-backdrop { background: rgba(35, 23, 8, .35); }
.availability-dialog {
  background:
    radial-gradient(circle at 100% 0%, rgba(217,180,108,.16), transparent 18rem),
    linear-gradient(135deg, #ffffff, #fbf6ea);
}
.modal-close { background: #fffaf0; color: var(--gold-3); }
.availability-copy,
.availability-note,
.selected-location-card p { color: var(--muted); }
.selected-product,
.availability-label,
.selected-location-card h3,
.selected-location-card a { color: var(--gold-3); }

.hero-banner-slide,
.theme-pulse,
.theme-pulsex,
.theme-foger,
.theme-raz,
.theme-puffco {
  background:
    radial-gradient(circle at 76% 22%, rgba(217,180,108,.25), transparent 18rem),
    radial-gradient(circle at 12% 88%, rgba(189,138,45,.10), transparent 14rem),
    linear-gradient(135deg, #ffffff, #f6ecd5 58%, #fffaf0);
  border-color: var(--line);
}
.hero-banner-slide::before { border-color: rgba(189,138,45,.16); }
.hero-banner-tag {
  background: rgba(189, 138, 45, .12);
  color: var(--gold-3);
  border: 1px solid rgba(189, 138, 45, .18);
}
.hero-banner-copy h2 { color: #2a1a05; }
.hero-banner-copy p { color: var(--muted); }
.hero-banner-art img { filter: drop-shadow(0 16px 28px rgba(78, 59, 22, .18)); }
.hero-banner-dots button { background: rgba(189,138,45,.22); }
.hero-banner-dots button.active { background: var(--gold); }

@media (max-width: 1020px) {
  .main-nav.open { background: rgba(255,255,255,.78); border-radius: 18px; }
}

/* FINAL HERO: full-size animated banners using actual product images */
.hero-animated-showcase {
  width: min(1500px, calc(100% - 28px));
  min-height: auto;
  display: block;
  padding-top: 22px;
}
.hero-animated-showcase .hero-banner-stage {
  width: 100%;
}
.hero-video-banners {
  position: relative;
  min-height: clamp(520px, 45vw, 700px);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(247, 221, 155, .38), transparent 22rem),
    linear-gradient(135deg, #ffffff, #f7efe0 55%, #fffaf0);
  box-shadow: 0 28px 75px rgba(78, 59, 22, .14);
  border: 1px solid rgba(189, 138, 45, .22);
}
.hero-video-banners::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px solid rgba(189, 138, 45, .16);
  pointer-events: none;
  z-index: 5;
}
.hero-video-banners::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.42) 50%, transparent 58% 100%),
    repeating-linear-gradient(135deg, rgba(189,138,45,.035) 0 1px, transparent 1px 16px);
  opacity: .42;
  mix-blend-mode: screen;
  animation: bannerLightSweep 7s linear infinite;
  pointer-events: none;
  z-index: 4;
}
.hero-video-banners .hero-banner-slide,
.hero-video-banners .hero-banner-slide.active {
  position: absolute;
  inset: 0;
  min-height: auto;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: clamp(28px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(20px, 4vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 26%, rgba(247, 221, 155, .38), transparent 22rem),
    radial-gradient(circle at 18% 88%, rgba(189, 138, 45, .11), transparent 17rem),
    linear-gradient(135deg, #ffffff 0%, #fbf5e9 48%, #f3e6ca 100%);
  animation: heroSlideCycle 35s infinite;
  transform: scale(1.01);
}
.hero-video-banners .hero-banner-slide:nth-child(1) { animation-delay: 0s; }
.hero-video-banners .hero-banner-slide:nth-child(2) { animation-delay: 7s; }
.hero-video-banners .hero-banner-slide:nth-child(3) { animation-delay: 14s; }
.hero-video-banners .hero-banner-slide:nth-child(4) { animation-delay: 21s; }
.hero-video-banners .hero-banner-slide:nth-child(5) { animation-delay: 28s; }
.hero-video-banners .hero-banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.74) 0%, rgba(255,255,255,.36) 38%, rgba(255,255,255,0) 68%),
    radial-gradient(circle at 8% 8%, rgba(255,255,255,.95), transparent 24rem);
  z-index: 0;
}
.hero-video-banners .hero-banner-slide::after {
  content: "";
  position: absolute;
  inset: -24% -16% auto auto;
  width: 62%;
  height: 76%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.58), rgba(247,221,155,.2) 34%, transparent 70%);
  transform: rotate(-18deg);
  animation: galaxyDrift 9s ease-in-out infinite alternate;
  z-index: 0;
}
.banner-glow-ring {
  position: absolute;
  width: 620px;
  height: 250px;
  right: 2%;
  top: 10%;
  border: 2px solid rgba(220, 180, 88, .42);
  border-radius: 50%;
  transform: rotate(-17deg);
  filter: blur(.2px);
  opacity: .74;
  z-index: 1;
  animation: orbitPulse 6s ease-in-out infinite alternate;
}
.banner-glow-ring::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: inherit;
}
.banner-shimmer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 67% 34%, rgba(255,255,255,.62) 0 2px, transparent 3px),
    radial-gradient(circle at 73% 22%, rgba(246,210,130,.7) 0 1px, transparent 3px),
    radial-gradient(circle at 85% 42%, rgba(255,255,255,.72) 0 2px, transparent 3px),
    radial-gradient(circle at 48% 72%, rgba(246,210,130,.42) 0 1px, transparent 3px);
  opacity: .74;
  z-index: 2;
  animation: sparkleFloat 5.5s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-video-banners .hero-banner-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
}
.hero-video-banners .hero-banner-copy .eyebrow {
  color: #a9771c;
  letter-spacing: .22em;
  margin-bottom: 16px;
}
.hero-video-banners .hero-banner-copy h1,
.hero-video-banners .hero-banner-copy h2 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: .9;
  letter-spacing: -.075em;
  margin: 0 0 20px;
  max-width: 760px;
  background: linear-gradient(90deg, #2a1a05, #85580f 42%, #cf9c32 74%, #f0cc7d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
}
.hero-video-banners .hero-banner-copy p:not(.eyebrow) {
  color: #6f5b36;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.65;
  max-width: 560px;
  margin: 0;
}
.banner-meta-line {
  margin-top: 26px;
  color: #8b6730;
  font-weight: 900;
  letter-spacing: .14em;
  font-size: clamp(.78rem, 1vw, .95rem);
  text-transform: uppercase;
  display: inline-flex;
  padding-top: 18px;
  border-top: 1px solid rgba(189,138,45,.32);
}
.actual-product-cluster {
  position: relative;
  z-index: 3;
  min-height: clamp(320px, 33vw, 500px);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.actual-product-cluster::before {
  content: "";
  position: absolute;
  width: min(96%, 660px);
  height: 34%;
  bottom: 2%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,.92), rgba(236,205,139,.3) 56%, transparent 70%);
  filter: blur(3px);
  z-index: -1;
}
.product-shot {
  position: absolute;
  max-width: min(42%, 250px);
  max-height: clamp(220px, 28vw, 460px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(58, 41, 13, .18));
  background: transparent !important;
  animation: productFloat 4.8s ease-in-out infinite alternate;
}
.cluster-two .product-shot { max-width: min(50%, 330px); max-height: clamp(250px, 30vw, 480px); }
.cluster-three .product-shot { max-width: min(45%, 300px); }
.cluster-four .product-shot { max-width: min(35%, 250px); }
.product-shot.shot-a { left: 7%; bottom: 9%; transform: rotate(-5deg); animation-delay: .1s; }
.product-shot.shot-b { left: 32%; bottom: 11%; transform: rotate(2deg); animation-delay: .45s; z-index: 3; }
.product-shot.shot-c { right: 18%; bottom: 9%; transform: rotate(-1deg); animation-delay: .8s; z-index: 2; }
.product-shot.shot-d { right: 1%; bottom: 13%; transform: rotate(5deg); animation-delay: 1.1s; }
.cluster-two .shot-a { left: 10%; bottom: 8%; }
.cluster-two .shot-b { left: 45%; bottom: 8%; max-width: min(54%, 360px); }
.raz-products .shot-c { right: -3%; bottom: 15%; max-width: min(42%, 290px); }
.puffco-products .shot-a { left: 2%; bottom: 10%; max-width: min(46%, 330px); }
.puffco-products .shot-b { left: 38%; bottom: 15%; max-width: min(36%, 260px); }
.puffco-products .shot-c { right: 2%; bottom: 6%; max-width: min(34%, 240px); }
.banner-geekbar-pulse {
  background:
    radial-gradient(circle at 76% 22%, rgba(252,213,129,.35), transparent 20rem),
    linear-gradient(135deg, #fffefa, #f7edda 54%, #fff7e5) !important;
}
.banner-geekbar-pulsex {
  background:
    radial-gradient(circle at 76% 22%, rgba(191,172,255,.18), transparent 20rem),
    radial-gradient(circle at 88% 70%, rgba(246,203,116,.24), transparent 20rem),
    linear-gradient(135deg, #fffefa, #f5ead9 54%, #fff8e8) !important;
}
.banner-foger {
  background:
    radial-gradient(circle at 78% 22%, rgba(31,31,31,.1), transparent 18rem),
    radial-gradient(circle at 88% 72%, rgba(218,173,83,.26), transparent 20rem),
    linear-gradient(135deg, #fffefa, #f7eddb 55%, #fff8e8) !important;
}
.banner-raz {
  background:
    radial-gradient(circle at 76% 18%, rgba(93,144,255,.12), transparent 20rem),
    radial-gradient(circle at 88% 72%, rgba(200,147,255,.12), transparent 20rem),
    linear-gradient(135deg, #fffefa, #f5ead9 54%, #fff8e8) !important;
}
.banner-puffco {
  background:
    radial-gradient(circle at 74% 18%, rgba(20,20,20,.09), transparent 20rem),
    radial-gradient(circle at 86% 72%, rgba(218,173,83,.22), transparent 20rem),
    linear-gradient(135deg, #fffefa, #f7eddb 54%, #fff8e8) !important;
}

@keyframes heroSlideCycle {
  0% { opacity: 0; transform: scale(1.015) translateX(16px); }
  3% { opacity: 1; transform: scale(1) translateX(0); }
  17% { opacity: 1; transform: scale(1.006) translateX(-4px); }
  20% { opacity: 0; transform: scale(1.012) translateX(-16px); }
  100% { opacity: 0; transform: scale(1.015) translateX(16px); }
}
@keyframes productFloat {
  from { translate: 0 0; }
  to { translate: 0 -14px; }
}
@keyframes bannerLightSweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}
@keyframes galaxyDrift {
  from { transform: translate(0, 0) rotate(-18deg) scale(1); opacity: .78; }
  to { transform: translate(-26px, 18px) rotate(-12deg) scale(1.04); opacity: .95; }
}
@keyframes orbitPulse {
  from { transform: rotate(-17deg) scale(.98); opacity: .46; }
  to { transform: rotate(-12deg) scale(1.04); opacity: .82; }
}
@keyframes sparkleFloat {
  from { transform: translateY(0); opacity: .48; }
  to { transform: translateY(-18px); opacity: .86; }
}

@media (max-width: 1020px) {
  .hero-video-banners { min-height: 760px; }
  .hero-video-banners .hero-banner-slide,
  .hero-video-banners .hero-banner-slide.active {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 10px;
  }
  .actual-product-cluster { min-height: 360px; }
  .product-shot { max-height: 300px; }
}
@media (max-width: 760px) {
  .hero-animated-showcase { width: min(100% - 22px, 1500px); padding-top: 12px; }
  .hero-video-banners { min-height: 740px; border-radius: 24px; }
  .hero-video-banners .hero-banner-slide,
  .hero-video-banners .hero-banner-slide.active { padding: 28px 20px; }
  .hero-video-banners .hero-banner-copy h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-video-banners .hero-banner-copy p:not(.eyebrow) { font-size: .98rem; }
  .banner-meta-line { letter-spacing: .08em; line-height: 1.7; }
  .actual-product-cluster { min-height: 330px; }
  .cluster-four .product-shot,
  .cluster-three .product-shot,
  .cluster-two .product-shot { max-width: 44%; max-height: 230px; }
  .product-shot.shot-a { left: 0; bottom: 12%; }
  .product-shot.shot-b { left: 25%; bottom: 16%; }
  .product-shot.shot-c { right: 14%; bottom: 12%; }
  .product-shot.shot-d { right: -2%; bottom: 18%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video-banners .hero-banner-slide,
  .product-shot,
  .banner-glow-ring,
  .banner-shimmer,
  .hero-video-banners::after,
  .hero-video-banners .hero-banner-slide::after { animation: none !important; }
  .hero-video-banners .hero-banner-slide:first-child { opacity: 1 !important; transform: none !important; }
}


/* Customer-facing final overrides */
.hero-reference { display: grid; gap: 20px; }
.reference-banner-frame { position: relative; border-radius: 28px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(180deg, #fffdfa, #f8efe1); box-shadow: var(--shadow); }
.reference-banner-slider { position: relative; min-height: 0; aspect-ratio: 1672 / 941; }
.banner-image-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .55s ease; background: #f8f2e7; }
.banner-image-slide.active { opacity: 1; pointer-events: auto; }
.banner-image-slide img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-intro-card { border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,239,225,.95)); padding: 26px; box-shadow: var(--shadow); }
.hero-intro-card h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 8px 0 12px; line-height: 1.08; }
.hero-intro-card .hero-text { margin: 0; font-size: 1.05rem; color: var(--muted); line-height: 1.8; max-width: 820px; }
.hero-banner-dots { display: flex; justify-content: center; gap: 10px; padding: 16px 0 18px; background: linear-gradient(180deg, rgba(255,255,255,0), rgba(252,247,239,.94)); }
.hero-banner-dots button { width: 11px; height: 11px; border-radius: 999px; border: 0; background: rgba(189,138,45,.25); cursor: pointer; transition: all .2s ease; }
.hero-banner-dots button.active { width: 32px; background: var(--gold); }
.theme-showcase, .hero-actions { display: none !important; }
.catalog-summary .muted { max-width: 860px; }
.product-image { background: linear-gradient(180deg, #fffdfa, #f7efe2); }
.placeholder-art { background: linear-gradient(180deg, #fffdfa, #f6ecdc); color: var(--gold-3); border: 1px dashed rgba(189,138,45,.25); }
@media (max-width: 800px) { .hero-intro-card { padding: 20px; } }

/* Final customer homepage/header/product styling */
.customer-header {
  display: block !important;
  padding: 0 !important;
  background: rgba(255, 252, 246, 0.98) !important;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 38px rgba(111, 76, 14, 0.08);
}
.top-announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  min-height: 36px;
  padding: 8px 18px;
  background: linear-gradient(90deg, #fff7e8, #f6e4bf, #fff7e8);
  color: var(--gold-3);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.top-announcement a { color: var(--gold-3); text-decoration: underline; text-underline-offset: 3px; }
.header-main-row {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.header-main-row .brand { grid-column: 2; display: block; }
.header-main-row .brand img { width: min(280px, 60vw); margin: 0 auto; }
.header-quick-links { justify-self: end; display: flex; gap: 12px; align-items: center; }
.header-quick-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--gold-3);
  font-weight: 900;
  background: rgba(255,255,255,.72);
}
.customer-header .main-nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 14px;
  justify-content: center;
  border-top: 1px solid rgba(189, 138, 45, .14);
}
.customer-header .main-nav a {
  color: var(--gold-3) !important;
  background: transparent;
  border-radius: 0;
  padding: 14px 10px 8px;
}
.customer-header .main-nav a:hover,
.customer-header .main-nav a.active {
  background: transparent !important;
  color: #19110a !important;
  box-shadow: inset 0 -2px 0 var(--gold);
  transform: none;
}
.hero-reference {
  display: grid !important;
  grid-template-columns: 1fr !important;
  min-height: auto !important;
  padding-top: 22px;
  gap: 20px;
}
.reference-banner-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffdfa, #f8efe1);
  box-shadow: var(--shadow);
}
.reference-banner-slider { position: relative; min-height: 0; aspect-ratio: 1672 / 941; }
.banner-image-slide {
  position: absolute !important;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
  background: #f8f2e7;
  padding: 0 !important;
  display: block !important;
  transform: none !important;
  animation: none !important;
}
.banner-image-slide.active { opacity: 1; pointer-events: auto; }
.banner-image-slide::before,
.banner-image-slide::after { display: none !important; }
.banner-image-slide img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-banner-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(252,247,239,.94));
}
.hero-banner-dots button {
  width: 11px; height: 11px; border-radius: 999px; border: 0;
  background: rgba(189,138,45,.25); cursor: pointer; transition: all .2s ease;
}
.hero-banner-dots button.active { width: 32px; background: var(--gold); }
.hero-intro-card, .theme-showcase, .home-grid, .banners { display: none !important; }
.best-sellers-section,
.instagram-section {
  margin-top: 30px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(249,242,230,.96));
  box-shadow: var(--shadow);
}
.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.section-heading-row h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.04em;
  margin: 6px 0 10px;
}
.section-heading-row p:not(.eyebrow) { color: var(--muted); line-height: 1.7; max-width: 780px; margin: 0; }
.best-seller-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
}
.best-seller-tabs button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  color: var(--gold-3);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}
.best-seller-tabs button.active,
.best-seller-tabs button:hover {
  color: #1c1204;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-color: rgba(255,255,255,.3);
}
.best-seller-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 260px);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  scroll-snap-type: x mandatory;
}
.best-seller-card {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 34px rgba(116, 78, 11, .09);
  display: flex;
  flex-direction: column;
}
.best-seller-image {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(232,190,103,.18), transparent 38%),
    linear-gradient(180deg, #fffdfa, #f8efe1);
  border-bottom: 1px solid rgba(189,138,45,.14);
  overflow: hidden;
}
.best-seller-image img,
.product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 0 !important;
  background: transparent !important;
  filter: drop-shadow(0 16px 24px rgba(83,57,15,.14));
}
.best-seller-body { padding: 15px; display: grid; gap: 8px; }
.best-seller-body span { color: var(--gold-3); font-size: .76rem; font-weight: 1000; text-transform: uppercase; letter-spacing: .12em; }
.best-seller-body h3 { font-size: 1rem; line-height: 1.28; min-height: 2.55em; }
.best-seller-body strong { color: var(--gold); font-size: 1.08rem; }
.product-image {
  position: relative;
  aspect-ratio: 1 / 1 !important;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(232,190,103,.18), transparent 38%),
    linear-gradient(180deg, #fffdfa, #f7efe2) !important;
}
.placeholder-art {
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdfa, #f6ecdc) !important;
  color: var(--gold-3);
  border: 1px dashed rgba(189,138,45,.25);
}
.instagram-heading { align-items: center; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  border-radius: 20px !important;
  overflow: hidden;
  background: #fff !important;
}
.final-footer {
  display: block !important;
  background: #11100d !important;
  color: #dccd9d !important;
  padding: 42px clamp(16px, 4vw, 42px) 24px !important;
}
.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer-grid section {
  border: 1px solid rgba(232,190,103,.18);
  border-radius: 20px;
  padding: 20px;
  background: rgba(255,255,255,.04);
}
.footer-grid h3 { color: var(--gold-2); margin-bottom: 10px; }
.footer-grid p { color: #dccd9d; line-height: 1.7; margin: 0; }
.footer-brand-block img { width: 220px; margin-bottom: 14px; }
.footer-contact-form { display: grid; gap: 10px; }
.footer-contact-form input,
.footer-contact-form textarea {
  background: rgba(255,255,255,.08);
  border-color: rgba(232,190,103,.22);
  color: #fff8e3;
}
.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder { color: rgba(255,248,227,.62); }
.footer-bottom {
  width: min(1180px, 100%);
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(232,190,103,.18);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #dccd9d;
}
.footer-bottom a { color: var(--gold-2); font-weight: 900; }
@media (max-width: 1020px) {
  .header-main-row { grid-template-columns: 1fr auto; }
  .header-main-row .brand { grid-column: 1; justify-self: start; }
  .header-quick-links { display: none; }
  .customer-header .main-nav { padding-inline: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .top-announcement { font-size: .68rem; gap: 10px; }
  .reference-banner-frame { border-radius: 16px; }
  .best-sellers-section, .instagram-section { padding: 18px; border-radius: 22px; }
  .section-heading-row { flex-direction: column; align-items: flex-start; }
  .best-seller-track { grid-auto-columns: minmax(220px, 80vw); }
  .footer-grid { grid-template-columns: 1fr; }
}


/* Final customer homepage/header/product/footer styling */
.customer-header.site-header {
  display: block;
  padding: 0;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(189, 138, 45, .18);
  box-shadow: 0 16px 34px rgba(98, 72, 27, .08);
}
.top-announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 8px 16px;
  background: linear-gradient(90deg, #1a1204, #9a6b16, #1a1204);
  color: #fff8e6;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.top-announcement a { color: #fff4cf; text-decoration: underline; text-underline-offset: 3px; }
.header-main-row {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 0 10px;
}
.customer-header .brand { grid-column: 2; justify-self: center; }
.customer-header .brand img { width: min(250px, 52vw); }
.header-quick-links { justify-self: end; display: flex; gap: 12px; align-items: center; }
.header-quick-links a {
  color: var(--gold-3);
  font-size: .9rem;
  font-weight: 900;
  padding: 8px 12px;
  border: 1px solid rgba(189, 138, 45, .2);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
}
.customer-header .main-nav {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  justify-content: center;
  padding: 0 0 12px;
  border-top: 1px solid rgba(189, 138, 45, .12);
}
.customer-header .main-nav a { color: #624006; }
.customer-header .main-nav a:hover,
.customer-header .main-nav a.active { color: #1b1200; background: linear-gradient(90deg, #d9a93d, #f4d990); }
.hero-reference.section-shell {
  width: min(100%, 1480px);
  margin-top: 18px;
  padding: 0 clamp(8px, 2vw, 18px);
}
.reference-banner-frame {
  border-radius: 14px;
  border: 1px solid rgba(189, 138, 45, .22);
  box-shadow: 0 22px 50px rgba(93, 65, 18, .12);
}
.reference-banner-slider { aspect-ratio: 1672/941; }
.banner-image-slide img { object-fit: cover; }
.best-sellers-section,
.instagram-section {
  margin-top: 34px;
  border: 1px solid rgba(189, 138, 45, .18);
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,239,225,.92));
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 26px;
}
.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 18px;
}
.section-heading-row h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -.04em;
  color: var(--text);
}
.section-heading-row p:not(.eyebrow) { color: var(--muted); line-height: 1.7; max-width: 620px; margin: 8px 0 0; }
.best-seller-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scrollbar-width: thin;
}
.best-seller-tabs button {
  flex: 0 0 auto;
  border: 1px solid rgba(189, 138, 45, .2);
  background: #fffaf0;
  color: var(--gold-3);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 900;
  cursor: pointer;
}
.best-seller-tabs button.active {
  color: #1d1202;
  background: linear-gradient(90deg, #d9a93d, #f4d990);
  box-shadow: 0 12px 24px rgba(134, 94, 20, .16);
}
.best-seller-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 2px 12px;
  scroll-snap-type: x mandatory;
}
.best-seller-card {
  flex: 0 0 min(270px, 78vw);
  scroll-snap-align: start;
  border: 1px solid rgba(189, 138, 45, .18);
  background: rgba(255,255,255,.96);
  border-radius: 22px;
  box-shadow: 0 18px 32px rgba(96, 67, 19, .10);
  overflow: hidden;
}
.best-seller-image,
.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(232,190,103,.16), transparent 42%),
    linear-gradient(135deg, #fffefa, #f6edde 66%, #fffaf0);
}
.best-seller-image::before,
.product-image::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 16px;
  pointer-events: none;
}
.best-seller-image::after,
.product-image::after {
  content: "";
  position: absolute;
  inset: auto -24% -18% 20%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(207,156,50,.16), transparent 70%);
  transform: rotate(-10deg);
}
.product-cutout,
.product-image > img:not(.product-card-logo),
.best-seller-image > img:not(.product-card-logo) {
  position: relative;
  z-index: 2;
  width: 84% !important;
  height: 84% !important;
  max-width: 84% !important;
  max-height: 84% !important;
  object-fit: contain !important;
  padding: 0 !important;
  background: transparent !important;
  filter: drop-shadow(0 18px 20px rgba(80,56,17,.18));
}
.product-card-logo {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 12px;
  width: 86px !important;
  height: auto !important;
  max-width: 30% !important;
  padding: 7px !important;
  border-radius: 12px;
  background: rgba(255,255,255,.74) !important;
  border: 1px solid rgba(189, 138, 45, .16);
  filter: none !important;
}
.best-seller-body { padding: 16px; display: grid; gap: 9px; }
.best-seller-body span { color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; }
.best-seller-body h3 { font-size: 1rem; line-height: 1.28; min-height: 2.5em; }
.best-seller-body strong { color: var(--gold-3); font-size: 1.1rem; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  background: #fff !important;
  border-radius: 18px !important;
  overflow: hidden;
  border: 1px solid rgba(189,138,45,.18) !important;
}
.instagram-profile-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-3);
  font-weight: 900;
}
.customer-footer {
  display: block;
  background: #15110a;
  color: #f2dfbd;
  padding: 42px clamp(16px, 4vw, 42px) 24px;
}
.footer-grid {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .7fr .7fr 1.15fr 1.15fr;
  gap: 28px;
  align-items: start;
}
.footer-brand-block img { width: 210px; margin-bottom: 14px; }
.footer-brand-block p,
.footer-policy-block p,
.footer-bottom,
.customer-footer .form-note { color: #d8c39b; line-height: 1.7; }
.footer-age { font-weight: 900; color: #f5d990 !important; }
.footer-column,
.footer-policy-block,
.footer-contact-form { display: grid; gap: 10px; }
.customer-footer h3 { color: #f6d68d; margin: 0 0 8px; }
.footer-column a { color: #f2dfbd; font-weight: 800; }
.footer-contact-form label { display: grid; gap: 7px; color: #f2dfbd; font-weight: 800; }
.footer-contact-form input,
.footer-contact-form textarea { background: rgba(255,255,255,.08); color: #fff8e8; border-color: rgba(246,214,141,.28); }
.footer-bottom {
  width: min(1220px, 100%);
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(246,214,141,.16);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .9rem;
}
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: 1fr; }
  .header-main-row { grid-template-columns: auto auto; }
  .customer-header .brand { grid-column: auto; justify-self: start; }
  .header-quick-links { display: none; }
}
@media (max-width: 760px) {
  .top-announcement { gap: 8px; font-size: .72rem; }
  .customer-header .main-nav { justify-content: flex-start; }
  .reference-banner-frame { border-radius: 12px; }
  .section-heading-row { display: block; }
  .best-sellers-section, .instagram-section { padding: 20px 14px; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* Final image sizing override: same-size transparent product cutouts */
.product-cutout,
.product-image > img:not(.product-card-logo),
.best-seller-image > img:not(.product-card-logo) {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  padding: 0 !important;
  background: transparent !important;
}
.product-image, .best-seller-image { isolation: isolate; }


/* Refinements after review */
.reference-banner-frame { position: relative; padding: 0 !important; overflow: hidden !important; }
.reference-banner-slider { display: block; aspect-ratio: 1672 / 941; }
.hero-banner-dots { position: absolute; z-index: 8; left: 0; right: 0; bottom: 12px; padding: 0 !important; background: transparent !important; }
.banner-image-slide img { height: 100% !important; object-fit: cover !important; }
.instagram-heading .btn { display: none !important; }
.instagram-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-image, .best-seller-image { background: radial-gradient(circle at 50% 46%, rgba(232,190,103,.15), transparent 44%), linear-gradient(135deg, #fffefa, #f6edde 68%, #fffaf0); }
.product-cutout,
.product-image > img:not(.product-card-logo),
.best-seller-image > img:not(.product-card-logo) {
  width: 92% !important;
  height: 92% !important;
  max-width: 92% !important;
  max-height: 92% !important;
  object-fit: contain !important;
  padding: 0 !important;
  background: transparent !important;
  filter: drop-shadow(0 18px 20px rgba(80,56,17,.18));
}
.placeholder-art { width: 100%; height: 100%; display: grid; place-content: center; text-align: center; padding: 20px; }
.footer-link-grid { grid-template-columns: 1.35fr repeat(4, minmax(160px, .8fr)); }
.static-main { padding: 46px 0 72px; }
.policy-card { border: 1px solid rgba(189,138,45,.18); border-radius: 28px; background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,239,225,.93)); box-shadow: var(--shadow); padding: clamp(24px, 4vw, 46px); }
.policy-card h1 { font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: -.06em; margin: 8px 0 18px; }
.policy-card > p { color: var(--muted); line-height: 1.75; max-width: 880px; }
.policy-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 28px; }
.policy-grid.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.policy-grid article { border: 1px solid rgba(189,138,45,.16); border-radius: 20px; padding: 22px; background: rgba(255,255,255,.72); }
.policy-grid h2, .contact-policy-card h2 { color: var(--gold-3); margin-bottom: 10px; }
.policy-grid p, .static-contact-layout p { color: var(--muted); line-height: 1.7; }
.static-contact-layout a { color: var(--gold-3); font-weight: 900; }
@media (max-width: 1080px) { .instagram-grid, .footer-link-grid, .policy-grid, .policy-grid.two-col { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .instagram-grid, .footer-link-grid, .policy-grid, .policy-grid.two-col { grid-template-columns: 1fr; } .hero-banner-dots { bottom: 8px; } }


/* Live Instagram feed embed fix */
.instagram-live-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
  padding-top: 4px;
}
.instagram-post-card {
  min-width: 0;
  min-height: 560px;
  border: 1px solid rgba(189, 138, 45, .18);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(96, 67, 19, .10);
}
.instagram-embed {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  background: #fff;
}
.instagram-section {
  overflow: visible !important;
}
@media (max-width: 1180px) {
  .instagram-live-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 720px) {
  .instagram-live-grid { grid-template-columns: 1fr !important; }
  .instagram-post-card, .instagram-embed { min-height: 600px; height: 600px; }
}


/* Visible Instagram gallery fallback for customer-facing static site */
.instagram-gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin-top: 26px;
}
.instagram-image-card {
  position: relative;
  overflow: hidden;
  min-height: auto !important;
  aspect-ratio: 4 / 5;
  padding: 0 !important;
  background: #fffdf8 !important;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(109, 77, 22, 0.10);
}
.instagram-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.instagram-image-card::after {
  content: "@galaxyelgin20";
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255,255,255,.88);
  color: var(--gold-3);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .03em;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}
.instagram-post-card .instagram-embed { display: none !important; }
@media (max-width: 1020px) { .instagram-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } }
@media (max-width: 640px) { .instagram-gallery-grid { grid-template-columns: 1fr !important; } }


/* Footer/location/Instagram carousel updates */
.footer-link-grid { grid-template-columns: 1.35fr repeat(3, minmax(170px, .8fr)) !important; }
.instagram-section { width: min(1500px, calc(100% - 24px)); }
.instagram-section .section-heading-row { margin-bottom: 14px; }
.instagram-accounts-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.instagram-accounts-row span {
  border: 1px solid rgba(189,138,45,.18);
  background: rgba(255,255,255,.72);
  color: var(--gold-3);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .78rem;
  font-weight: 900;
}
.instagram-gallery-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: 11px !important;
  margin-top: 18px !important;
  transition: opacity .22s ease, transform .22s ease;
}
.instagram-gallery-grid.is-changing { opacity: .35; transform: translateY(4px); }
.instagram-image-card {
  aspect-ratio: 1 / 1 !important;
  border-radius: 14px !important;
  min-height: auto !important;
}
.instagram-image-card::after {
  content: attr(data-account) !important;
  left: 8px !important;
  bottom: 8px !important;
  padding: 5px 8px !important;
  font-size: .64rem !important;
}
@media (max-width: 1280px) { .instagram-gallery-grid { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } }
@media (max-width: 900px) { .instagram-gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } .footer-link-grid { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 580px) { .instagram-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .footer-link-grid { grid-template-columns: 1fr !important; } }


/* Option B final polish + imported transparent product images */
body[data-theme="champagne-lux"] { background: linear-gradient(180deg, #fffdf8 0%, #f8f2e8 52%, #f1e5d2 100%); }
.customer-header { background: rgba(255,253,248,.985) !important; }
.top-announcement { background: linear-gradient(90deg, #fbecd2, #fff8ea, #fbecd2); color: #7a5516; }
.reference-banner-frame { border-radius: 22px !important; background: #fffaf0 !important; }
.reference-banner-slider { aspect-ratio: 1672 / 941 !important; }
.hero-banner-dots { bottom: 10px !important; }
.product-image, .best-seller-image { background: radial-gradient(circle at 50% 48%, rgba(232,190,103,.18), transparent 44%), linear-gradient(135deg, #fffefa, #f6edde 68%, #fffaf0) !important; }
.product-cutout, .product-image > img:not(.product-card-logo), .best-seller-image > img:not(.product-card-logo) { width: 96% !important; height: 96% !important; max-width: 96% !important; max-height: 96% !important; object-fit: contain !important; filter: drop-shadow(0 18px 22px rgba(80,56,17,.20)); }
.product-card-logo { position: absolute; z-index: 4; top: 12px; left: 12px; width: 88px !important; height: auto !important; max-width: 32% !important; opacity: .96; padding: 7px !important; border-radius: 12px; background: rgba(255,255,255,.78) !important; border: 1px solid rgba(189,138,45,.16); filter: none !important; }


/* Final Option B White / Gold Luxury polish */
body[data-theme="champagne-lux"] {
  background:
    radial-gradient(circle at 16% 0%, rgba(241, 214, 157, .28), transparent 30rem),
    radial-gradient(circle at 92% 4%, rgba(215, 169, 76, .16), transparent 26rem),
    linear-gradient(180deg, #fffefa 0%, #f8f1e6 52%, #f1e4d0 100%) !important;
  color: #251604;
}
.customer-header.site-header,
.customer-header {
  background: #0e0d0a !important;
  border-bottom: 1px solid rgba(218, 174, 86, .32) !important;
  box-shadow: 0 16px 34px rgba(37, 22, 4, .10);
}
.top-announcement {
  background: linear-gradient(90deg, #f4d58c, #fff0bc, #f4d58c) !important;
  color: #2b1a02 !important;
  font-weight: 900;
}
.top-announcement a { color: #2b1a02 !important; }
.customer-header .main-nav { background: #fffdf8 !important; border-top: 1px solid rgba(218,174,86,.20); }
.customer-header .main-nav a { color: #4f3106 !important; }
.customer-header .main-nav a:hover,
.customer-header .main-nav a.active { background: linear-gradient(90deg, #d6a13a, #f0d58f) !important; color: #1b1200 !important; }
.header-quick-links a { color: #f7df9e !important; border-color: rgba(247,223,158,.28) !important; }
.reference-banner-frame {
  border-radius: 20px !important;
  border: 1px solid rgba(218,174,86,.22) !important;
  background: #fffdfa !important;
  box-shadow: 0 22px 50px rgba(95, 69, 27, .13) !important;
}
.hero-banner-dots { bottom: 10px !important; }
.product-card, .best-seller-card, .instagram-section, .best-sellers-section, .content-page, .location-card, .contact-form {
  background: rgba(255,255,255,.96) !important;
  border-color: rgba(218,174,86,.20) !important;
  box-shadow: 0 18px 38px rgba(95,69,27,.10) !important;
}
.product-image, .best-seller-image {
  background:
    radial-gradient(circle at 50% 48%, rgba(232,190,103,.18), transparent 44%),
    linear-gradient(135deg, #fffefa, #f6edde 68%, #fffaf0) !important;
  border-bottom: 1px solid rgba(218,174,86,.16) !important;
}
.product-cutout,
.product-image > img:not(.product-card-logo),
.best-seller-image > img:not(.product-card-logo) {
  width: 96% !important;
  height: 96% !important;
  max-width: 96% !important;
  max-height: 96% !important;
  object-fit: contain !important;
  padding: 0 !important;
  background: transparent !important;
  filter: drop-shadow(0 18px 22px rgba(80,56,17,.20)) !important;
}
.product-card-logo { display: none !important; }
.price, .best-seller-body strong { color: #9d6f16 !important; }
.btn.primary { background: linear-gradient(90deg, #d6a13a, #f0d58f) !important; color: #1b1200 !important; }
.btn.secondary { background: #14120e !important; color: #f7df9e !important; }
