/* =========================================
   AMETHYST JEWELRY — GLOBAL STYLES
   ========================================= */

/* ── VARIABLES ── */
/* NOTE: Palette temporarily grayscale-only. Variable names preserved
   so color can be reintroduced later without touching component CSS. */
:root {
  --teal:           #2B2B2B;
  --teal-deep:      #000000;
  --teal-light:     #EDEDED;
  --teal-pale:      #F7F7F7;
  --amethyst:       #4A4A4A;
  --amethyst-deep:  #1A1A1A;
  --amethyst-light: #EFEFEF;
  --amethyst-pale:  #F8F8F8;
  --gold:           #6B6B6B;
  --gold-dark:      #4A4A4A;
  --gold-light:     #F2F2F2;
  --silver:         #C4C4C4;
  --cream:          #FAFAFA;
  --cream-dark:     #F0F0F0;
  --dark:           #111111;
  --mid:            #6B6B6B;
  --light:          #A8A8A8;
  --border:         #E2E2E2;
  --white:          #FFFFFF;

  --page-bg:        #F8F4EA;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --block-radius: 8px;
  --btn-radius: 4px;
  --block-gap: 12px;
  --block-inset: 2%;

  --nav-height: 72px;
  --announce-height: 42px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--page-bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); }
ul { list-style: none; }

/* ── BLOCK STACK ── */
/* The page is a vertical stack of rounded "block" sections that never
   touch the browser edge. .block-stack provides the side inset + the
   consistent gap between blocks; each direct child section is a .block. */
.block-stack {
  display: flex;
  flex-direction: column;
  gap: var(--block-gap);
  max-width: 1600px;
  margin: 0 auto;
  padding: calc(var(--announce-height) + var(--nav-height) + 28px) var(--block-inset) var(--block-inset);
}
.block {
  width: 100%;
  border-radius: var(--block-radius);
  overflow: hidden;
  position: relative;
}
.block-light { background: var(--white); color: var(--dark); }
.block-mist  { background: var(--cream); color: var(--dark); }
.block-dark  { background: var(--dark); color: rgba(255,255,255,0.82); }
.block-dark .section-header h2,
.block-dark .collection-intro h2 { color: var(--white); }

/* ── FULL-WIDTH ANNOUNCEMENT BAR (true top of page, edge-to-edge) ── */
.announce-bar-full {
  width: 100%;
  height: var(--announce-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 400;
}
.announce-bar-full span { opacity: 0.4; margin: 0 10px; }

/* ── FLOATING NAV (detached from flow, sits just below the announce bar) ── */
.floating-nav {
  position: fixed;
  top: calc(var(--announce-height) + 16px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 22px 32px;
  border-radius: var(--block-radius);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.09);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  width: 90%;
  max-width: 640px;
}
.floating-nav.scrolled {
  top: 16px;
  padding: 16px 26px;
  gap: 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.96);
}
.nav-left  { display: flex; gap: 20px; align-items: center; }
.nav-right { display: flex; gap: 16px; align-items: center; justify-content: flex-end; }

/* ── SHOP DROPDOWN / MEGA MENU ── */
.nav-dropdown { position: relative; display: flex; align-items: center; }

/* Mega menu panel - positioned relative to the whole floating nav, not just the trigger word */
.mega-menu-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  margin-top: 12px;
  background: var(--white);
  border-radius: var(--block-radius);
  box-shadow: 0 14px 36px rgba(0,0,0,0.14);
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 600;
  padding: 32px 28px 28px;
  display: grid;
  grid-template-columns: repeat(6, 176px);
  gap: 16px;
}
.mega-menu-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.mega-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  display: block;
}
.mega-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mega-tile:hover img { transform: scale(1.06); }
.mega-tile-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 8px;
  background: rgba(17,17,17,0.55);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
}
.nav-left a, .nav-right a {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-left a:hover, .nav-right a:hover { color: var(--dark); }
.nav-left a.active, .nav-right a.active { color: var(--dark); font-weight: 600; }
.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark);
  transition: all 0.3s;
  justify-self: center;
  display: flex;
  align-items: center;
}
.nav-logo-img { height: 30px; max-height: 30px; width: auto; max-width: 160px; display: block; transition: height 0.3s; object-fit: contain; }
.floating-nav.scrolled .nav-logo { font-size: 17px; }
.floating-nav.scrolled .nav-logo-img { height: 24px; max-height: 24px; }
.nav-icon {
  width: 18px; height: 18px;
  cursor: pointer;
  color: var(--mid);
  transition: color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.nav-icon:hover { color: var(--dark); }
.nav-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ── FOOTER (last block in the stack) ── */
footer.block {
  width: 100%;
  max-width: none;
  padding: 88px 72px 40px;
  color: rgba(255,255,255,0.45);
  border-radius: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.footer-teal-line { display: none; } /* replaced by block gap/rhythm */
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 7px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  display: block;
}
.footer-logo-img { height: 42px; max-height: 42px; width: auto; max-width: 220px; object-fit: contain; display: block; margin-bottom: 20px; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.4);
  max-width: 260px;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-pill {
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--block-radius);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
}
.social-pill:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}
.footer-bottom a { font-size: 11px; color: rgba(255,255,255,0.2); margin-left: 24px; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: var(--btn-radius);
  font-weight: 500;
  transition: all 0.25s;
  align-self: flex-start;
  width: auto;
}
.btn-dark        { background: var(--dark); color: var(--white); }
.btn-dark:hover  { background: var(--teal-deep); }
.btn-teal        { background: var(--teal); color: var(--white); }
.btn-teal:hover  { background: var(--teal-deep); }
.btn-amethyst    { background: var(--amethyst); color: var(--white); }
.btn-amethyst:hover { background: var(--amethyst-deep); }
.btn-gold        { background: var(--gold); color: var(--white); }
.btn-gold:hover  { background: var(--gold-dark); }
.btn-outline {
  display: inline-block;
  padding: 13px 34px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  color: var(--dark);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.25s;
  align-self: flex-start;
  width: auto;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-outline-amethyst {
  display: inline-block;
  padding: 13px 34px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--amethyst);
  border-radius: var(--btn-radius);
  color: var(--amethyst);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.25s;
  align-self: flex-start;
  width: auto;
}
.btn-outline-amethyst:hover { background: var(--amethyst); color: var(--white); }

/* ── TRUST BAR ── */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 22px; height: 22px; stroke-width: 1.4; fill: none; }
.trust-icon.teal  svg { stroke: var(--teal); }
.trust-icon.amethyst svg { stroke: var(--amethyst); }
.trust-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; color: var(--dark); margin-bottom: 3px; }
.trust-sub   { font-size: 12px; color: var(--mid); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 52px; }
.eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}
.eyebrow.amethyst { color: var(--amethyst); }
.section-header h2 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.section-header p {
  font-size: 14px;
  color: var(--mid);
  margin-top: 12px;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.75;
  font-weight: 300;
}

/* ── PRODUCT CARDS ── */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.prod-card { cursor: pointer; }
.prod-img {
  aspect-ratio: 1;
  background: var(--white);
  border: 1px solid #EAEAEA;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.prod-img::after {
  content: 'QUICK VIEW';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,26,26,0.9);
  color: var(--white);
  text-align: center;
  padding: 12px;
  font-size: 9px;
  letter-spacing: 2.5px;
  font-family: var(--font-sans);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.prod-card:hover .prod-img::after { transform: translateY(0); }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prod-card:hover .prod-img img { transform: scale(1.04); }
.prod-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 10px;
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  z-index: 1;
}
.badge-new      { background: var(--teal); color: var(--white); }
.badge-popular  { background: var(--amethyst); color: var(--white); }
.badge-gold     { background: var(--gold); color: var(--white); }
.badge-sale     { background: var(--dark); color: var(--white); }
.prod-sub { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 5px; font-weight: 500; }
.prod-name { font-family: var(--font-serif); font-size: 20px; font-weight: 400; margin-bottom: 6px; line-height: 1.3; }
.prod-price { font-size: 14px; color: var(--dark); font-weight: 500; }
.prod-price .was { text-decoration: line-through; color: var(--light); margin-right: 6px; font-weight: 300; font-size: 13px; }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 80px 56px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero-inner { max-width: 560px; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.page-hero h1 em { font-style: italic; color: var(--amethyst); }
.page-hero p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
  max-width: 440px;
}
.page-hero-decor {
  position: absolute;
  right: 56px; top: 50%;
  transform: translateY(-50%);
  opacity: 0.12;
}

/* ── NEWSLETTER BLOCK ── */
.newsletter {
  padding: 96px 56px;
  background: var(--amethyst-pale);
  text-align: center;
  position: relative;
}
.newsletter-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 56px;
  text-align: left;
}
.newsletter-video {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
}
.newsletter-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.newsletter-content { flex: 1; }
.newsletter-split .newsletter-content p { max-width: 480px; }
.newsletter-split .nl-form { margin: 0; }
.newsletter h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 14px;
  line-height: 1.15;
}
.newsletter h2 em { font-style: italic; color: var(--teal); }
.newsletter p { font-size: 15px; color: var(--mid); margin-bottom: 44px; font-weight: 300; }
.nl-form { display: flex; max-width: 500px; margin: 0 auto; }
.nl-input {
  flex: 1;
  padding: 16px 22px;
  border: 1px solid rgba(123,94,167,0.2);
  border-right: none;
  background: var(--white);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  color: var(--dark);
  transition: border-color 0.2s;
}
.nl-input:focus { border-color: var(--amethyst); }
.nl-input::placeholder { color: var(--light); }
.nl-btn {
  padding: 16px 28px;
  background: var(--amethyst);
  color: var(--white);
  border: none;
  border-radius: var(--btn-radius);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: background 0.25s;
  white-space: nowrap;
}
.nl-btn:hover { background: var(--amethyst-deep); }
.nl-note { font-size: 11px; color: var(--light); margin-top: 14px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 16px 56px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--light);
}
.breadcrumb a { color: var(--mid); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { font-size: 10px; }

/* ── UTILITY ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.text-center { text-align: center; }
.mt-sm { margin-top: 24px; }
.mt-md { margin-top: 48px; }
.mt-lg { margin-top: 80px; }
.divider { height: 1px; background: var(--border); margin: 48px 0; }
.gold-rule {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 24px auto;
}
.teal-rule {
  width: 48px; height: 1px;
  background: var(--teal);
  margin: 16px 0;
}

/* ── BLOCK HERO (full-bleed image inside rounded block) ── */
.block-hero {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
}
.block-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.block-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.3);
  z-index: 1;
}
.block-hero-content {
  position: relative;
  z-index: 2;
  padding: 64px;
  color: var(--white);
  max-width: 920px;
}
.block-hero-content .eyebrow { color: rgba(255,255,255,0.7); }
.block-hero-content h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 24px;
  white-space: nowrap;
}
.block-hero-content h1 em { color: var(--white); font-style: italic; opacity: 0.75; }
.block-hero-content p { color: rgba(255,255,255,0.75); margin-bottom: 44px; font-size: 15px; line-height: 1.75; font-weight: 300; max-width: 460px; }

/* ── COLLECTION SHOP LAYOUT ── */
.collection-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 640px;
  z-index: 400;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 36px rgba(0,0,0,0.14);
  display: flex; justify-content: center; gap: 4px;
  padding: 0 24px;
  border-radius: var(--block-radius);
}
.collection-nav a {
  padding: 18px 28px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mid); font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.collection-nav a:hover { color: var(--teal); }
.collection-nav a.tab-gem:hover, .collection-nav a.tab-gem.active { color: var(--amethyst); border-bottom-color: var(--amethyst); }
.collection-nav a.tab-tila:hover, .collection-nav a.tab-tila.active { color: var(--teal); border-bottom-color: var(--teal); }
.collection-nav a.tab-everyday:hover, .collection-nav a.tab-everyday.active { color: var(--gold-dark); border-bottom-color: var(--gold); }

.collection-block { padding: 88px 56px 64px; max-width: 1300px; margin: 0 auto; scroll-margin-top: 130px; }
.collection-intro { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.collection-intro .collection-kicker {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 14px; display: block;
}
.collection-intro h2 {
  font-family: var(--font-serif); font-size: 42px; font-weight: 300;
  margin-bottom: 18px; line-height: 1.15;
}
.collection-intro p { font-size: 15px; color: var(--mid); line-height: 1.8; font-weight: 300; }
.collection-intro .founder-note {
  margin-top: 20px; font-size: 13px; font-style: italic; color: var(--light);
}

.swatch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.swatch-card {
  border: 1px solid #EAEAEA;
  border-radius: 5px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
}
.swatch-visual {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.swatch-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.preview-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 3px 9px; font-size: 8px; letter-spacing: 1.2px; text-transform: uppercase;
  background: rgba(17,17,17,0.75); color: var(--white); font-weight: 500;
  z-index: 2;
}
.swatch-circle {
  width: 68px; height: 68px; border-radius: 50%;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.08);
}
.swatch-meta { padding: 16px 18px 18px; }
.swatch-sub { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--light); margin-bottom: 5px; }
.swatch-name { font-family: var(--font-serif); font-size: 18px; font-weight: 400; margin-bottom: 6px; line-height: 1.25; }
.swatch-price { font-size: 13px; color: var(--dark); font-weight: 500; }
.swatch-price.tbd { color: var(--light); font-style: italic; font-weight: 400; }
.pending-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 3px 9px; font-size: 8px; letter-spacing: 1.2px; text-transform: uppercase;
  background: rgba(26,26,26,0.85); color: var(--white); font-weight: 500;
}

.subcategory-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.subcat-tab {
  padding: 9px 22px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--border); color: var(--mid); cursor: pointer;
  transition: all 0.2s; background: var(--white);
}
.subcat-tab:hover, .subcat-tab.active { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-light); }
.subcategory-heading {
  font-family: var(--font-serif); font-size: 26px; font-weight: 300;
  text-align: center; margin: 56px 0 32px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.subcategory-heading:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }

.coming-soon-strip {
  max-width: 1300px; margin: 0 auto; padding: 56px;
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.coming-soon-pill {
  padding: 14px 32px; border: 1px dashed var(--border);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--light);
}

.care-block {
  max-width: 700px; margin: 0 auto; padding: 56px 24px;
  text-align: center; border-top: 1px solid var(--border);
}
.care-block h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.care-block p { font-size: 13px; color: var(--mid); line-height: 1.8; font-weight: 300; }

@media (max-width: 900px) {
  .collection-nav { overflow-x: auto; justify-content: flex-start; }
  .collection-block { padding: 56px 24px 40px; }
  .collection-intro h2 { font-size: 32px; }
  .swatch-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .subcategory-tabs { gap: 6px; }
}

@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 56px; --block-radius: 16px; }
  .floating-nav { top: 10px; padding: 10px 18px; gap: 16px; }
  .nav-left, .nav-right { display: none; }
  .nav-logo { font-size: 16px; letter-spacing: 3px; }
  .block-stack { padding: calc(var(--nav-height) + 20px) 3% 3%; gap: 8px; }
  .breadcrumb { padding: 14px 24px; }
  .page-hero { padding: 56px 24px; }
  .page-hero h1 { font-size: 44px; }
  .page-hero-decor { display: none; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-header h2 { font-size: 36px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .newsletter { padding: 60px 24px; }
  .newsletter-split { flex-direction: column; gap: 32px; text-align: center; }
  .newsletter-video { width: 100%; max-width: 260px; }
  .newsletter-split .newsletter-content p { max-width: 100%; }
  .newsletter-split .nl-form { margin: 0 auto; }
  .nl-form { flex-direction: column; }
  .nl-input { border-right: 1px solid rgba(0,0,0,0.15); border-bottom: none; }
  footer.block { padding: 56px 28px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .block-hero { min-height: 420px; }
  .block-hero-content { padding: 32px 24px; }
  .block-hero-content h1 { font-size: 34px; white-space: normal; }
}

@media (max-width: 480px) {
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .prod-name { font-size: 16px; }
  .btn { padding: 13px 24px; }
}

/* ── QUICK VIEW MODAL ── */
.quickview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.6);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.quickview-overlay.active { display: flex; }
.quickview-modal {
  background: var(--white);
  border-radius: var(--block-radius);
  max-width: 820px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  max-height: 88vh;
}
.quickview-image {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.quickview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.quickview-details {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.qv-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  font-weight: 500;
}
.qv-name {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}
.qv-price {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 24px;
}
.qv-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 32px;
}
.quickview-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 20px;
  line-height: 1;
  color: var(--mid);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.quickview-close:hover { color: var(--dark); border-color: var(--dark); }

@media (max-width: 700px) {
  .quickview-modal { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .quickview-image { aspect-ratio: 4/3; }
  .quickview-details { padding: 32px 24px; }
  .qv-name { font-size: 26px; }
}

@media (max-width: 1300px) {
  .mega-menu-panel { grid-template-columns: repeat(3, 176px); }
}
