/*
  css/belfiore.css
  Belfiore Jewelry — Main Stylesheet (v2)
  Navy / White / Gold palette, Cormorant Garamond + Montserrat
*/

/* ── VARIABLES ─────────────────────────────────────────────────────── */
:root {
  --navy:       #1b2a4a;
  --navy-deep:  #111e36;
  --navy-light: #2d4070;
  --gold:       #b8963e;
  --gold-light: #d4af6a;
  --gold-pale:  #f8f3ea;
  --white:      #ffffff;
  --off-white:  #fafaf8;
  --border:     #dde3ec;
  --text-mid:   #5a6a85;
  --nav-h:      72px;
}

/* ── RESET ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ──────────────────────────────────────────────── */
.announce-bar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  letter-spacing: 2px;
  text-align: center;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.announce-bar .center { flex: 1; text-align: center; }
.retailer-link {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 2px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s;
}
.retailer-link:hover { color: #fff; }

/* ── HEADER ────────────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 18px rgba(27,42,74,0.1); }

.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
}

/* Logo */
.logo {
  grid-column: 2;
  text-align: center;
  text-decoration: none;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 10px;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.logo-tagline {
  font-size: 8px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* Header actions */
.header-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}
.header-actions a,
.header-actions button {
  background: none; border: none;
  cursor: pointer; color: var(--navy);
  font-size: 10px; letter-spacing: 2px;
  text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
  font-family: 'Montserrat', sans-serif; font-weight: 400; padding: 0;
}
.header-actions a:hover,
.header-actions button:hover { color: var(--gold); }
.cart-bubble {
  background: var(--navy); color: white;
  width: 16px; height: 16px; border-radius: 50%;
  font-size: 9px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 1.5px; background: var(--navy); display: block; transition: all 0.3s; }

/* Header search reveal */
.header-search-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  border-top: 1px solid transparent;
  transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.28s ease;
}
.header-search-panel.open {
  max-height: 88px;
  opacity: 1;
  pointer-events: auto;
  padding: 0 40px 18px;
  border-top-color: var(--border);
}
.header-search-form {
  max-width: 520px;
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--navy);
}
.header-search-form input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 8px 10px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--navy);
}
.header-search-form input::placeholder {
  color: var(--text-mid);
  letter-spacing: 1px;
}
.header-search-form button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
  padding: 8px 0 8px 10px;
}
.header-search-form button:hover { color: var(--gold); }

/* ── NAVIGATION ────────────────────────────────────────────────────── */
nav.main-nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: relative;
  z-index: 800;
}
.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-list { list-style: none; display: flex; }
.nav-item { position: relative; }

.nav-item > a {
  display: block;
  padding: 0 20px;
  line-height: 48px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  color: var(--navy);
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}
.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20px; right: 20px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.nav-item:hover > a,
.nav-active > a { color: var(--gold); }
.nav-item:hover > a::after,
.nav-active > a::after { transform: scaleX(1); }

/* Vertical dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 210px;
  box-shadow: 0 12px 40px rgba(27,42,74,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 700;
  list-style: none;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { display: block; }
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: all 0.18s;
  font-weight: 400;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a::before {
  content: '–';
  color: var(--gold);
  font-size: 12px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.18s;
}
.dropdown li a:hover {
  color: var(--gold);
  background: var(--gold-pale);
  padding-left: 26px;
}
.dropdown li a:hover::before { opacity: 1; transform: translateX(0); }

/* ── HERO CAROUSEL ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - 130px);
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
  background: var(--navy-deep);
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s ease;
}
.slide.active { opacity: 1; }
.slide-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-content {
  position: absolute;
  bottom: 14%; left: 9%;
  color: white;
  max-width: 520px;
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.9s ease 0.35s;
}
.slide.active .slide-content { opacity: 1; transform: translateY(0); }
.slide-eyebrow {
  font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 14px; display: block;
}
.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 22px;
}
.slide-title em { font-style: italic; }
.slide-cta {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: white;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  padding-bottom: 4px;
  transition: all 0.2s; cursor: pointer;
}
.slide-cta:hover { color: var(--gold-light); border-color: var(--gold-light); gap: 16px; }

.carousel-dots {
  position: absolute; bottom: 28px; right: 9%;
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.3s;
}
.dot.active { background: var(--gold); width: 48px; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; z-index: 10;
  font-size: 20px; backdrop-filter: blur(4px);
}
.carousel-arrow:hover { background: var(--gold); border-color: var(--gold); }
.carousel-arrow.prev { left: 28px; }
.carousel-arrow.next { right: 28px; }

/* ── PAGE SECTIONS ─────────────────────────────────────────────────── */
.page-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 88px 40px;
}
.section-header { text-align: center; margin-bottom: 54px; }
.section-eyebrow {
  font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300; color: var(--navy); line-height: 1.2;
}
.section-rule { width: 40px; height: 1px; background: var(--gold); margin: 18px auto 0; }

/* ── COLLECTIONS GRID ──────────────────────────────────────────────── */
/* ── COLLECTIONS GRID — Editorial luxury layout ─────────────────────── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

/* Card base — entire card is the <a> tag */
.coll-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  background: #f0ede8;
  /* subtle inset shadow for depth */
  box-shadow: 0 2px 20px rgba(27,42,74,0.07);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.coll-card:hover {
  box-shadow: 0 12px 48px rgba(27,42,74,0.16);
  transform: translateY(-3px);
}

/* Grid placement — editorial asymmetric layout */
.coll-card:nth-child(1) { grid-column: 1 / 8;  grid-row: 1; min-height: 520px; }  /* Wide rings */
.coll-card:nth-child(2) { grid-column: 8 / 13; grid-row: 1; min-height: 520px; }  /* Earrings */
.coll-card:nth-child(3) { grid-column: 1 / 5;  grid-row: 2; min-height: 380px; }  /* Necklaces */
.coll-card:nth-child(4) { grid-column: 5 / 9;  grid-row: 2; min-height: 380px; }  /* Bracelets */
.coll-card:nth-child(5) { grid-column: 9 / 13; grid-row: 2; min-height: 380px; }  /* Estate */

/* Product image — centred, contained, crisp on cream bg */
.coll-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 80px; /* leave room at bottom for label */
  overflow: hidden;
}
.coll-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}
.coll-card:hover .coll-img-wrap img {
  transform: scale(1.06) translateY(-4px);
}

/* Label bar — slides up from bottom */
.coll-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 28px;
  background: linear-gradient(to top, rgba(17,30,54,0.92) 0%, rgba(17,30,54,0.6) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  transform: translateY(0);
  transition: background 0.4s;
}
.coll-card:hover .coll-label {
  background: linear-gradient(to top, rgba(17,30,54,0.96) 0%, rgba(17,30,54,0.75) 70%, transparent 100%);
}
.coll-label-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: white;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.coll-label-text small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
  font-weight: 400;
}
.coll-arrow {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.35s ease;
}
.coll-card:hover .coll-arrow {
  opacity: 1;
  transform: translateX(0);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .coll-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; min-height: 420px; }
  .coll-card:nth-child(2) { grid-column: 1 / 2; grid-row: 2; min-height: 320px; }
  .coll-card:nth-child(3) { grid-column: 2 / 3; grid-row: 2; min-height: 320px; }
  .coll-card:nth-child(4) { grid-column: 1 / 2; grid-row: 3; min-height: 320px; }
  .coll-card:nth-child(5) { grid-column: 2 / 3; grid-row: 3; min-height: 320px; }
}
@media (max-width: 600px) {
  .collections-grid { grid-template-columns: 1fr; gap: 10px; }
  .coll-card:nth-child(n) { grid-column: 1; grid-row: auto; min-height: 280px; }
}

/* ── VIDEO SECTION ───────────────────────────────────────────────────── */
.video-section {
  background: white;
  padding: 80px 40px;
}
.video-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.video-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.video-section-header .section-eyebrow { color: var(--gold); }
.video-section-header .section-title   { color: var(--navy); }
.video-section-header em               { color: var(--gold-light); font-style: italic; }

/* Each row: video + product list side by side */
.vid-row {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.vid-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

/* Reverse: products left, video right */
.vid-row-reverse {
  grid-template-columns: 1fr 380px;
}
.vid-row-reverse .vid-row-video  { order: 2; }
.vid-row-reverse .vid-row-products { order: 1; }

/* Video frame */
.vid-row-video { display: flex; justify-content: center; }
.video-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  padding-top: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(27,42,74,0.15);
  aspect-ratio: 9/16;
}
.vid-player {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}
.video-play-btn {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.video-play-btn svg {
  width: 60px; height: 60px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform 0.2s ease;
}
.video-play-btn:hover svg { transform: scale(1.1); }

/* Product cards in the video section */
.vid-row-products {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vid-prod-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 14px;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: box-shadow 0.25s, border-color 0.25s;
  background: white;
}
.vid-prod-card:hover {
  box-shadow: 0 6px 24px rgba(27,42,74,0.10);
  border-color: var(--gold-light);
}
.vid-prod-img {
  width: 72px; height: 72px;
  flex-shrink: 0;
  background: var(--off-white);
  border-radius: 3px;
  overflow: hidden;
}
.vid-prod-img img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.vid-prod-placeholder {
  width: 100%; height: 100%;
  background: var(--gold-pale);
}
.vid-prod-info { flex: 1; min-width: 0; }
.vid-prod-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vid-prod-cat {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 5px;
}
.vid-prod-price {
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}

@media (max-width: 900px) {
  .vid-row,
  .vid-row-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vid-row-reverse .vid-row-video  { order: 1; }
  .vid-row-reverse .vid-row-products { order: 2; }
  .video-section { padding: 60px 20px; }
  .video-frame { max-width: 280px; margin: 0 auto; }
}

/* ── PRODUCTS ───────────────────────────────────────────────────────── */
.products-wrap { background: var(--off-white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
}
.prod-card:hover { box-shadow: 0 10px 40px rgba(27,42,74,0.1); transform: translateY(-3px); }
.prod-img {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  background: var(--off-white);
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; }
.prod-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy); color: white;
  font-size: 8px; letter-spacing: 2px; padding: 4px 9px;
  text-transform: uppercase;
}
.prod-info { padding: 18px 18px 20px; }
.prod-cat { font-size: 9px; letter-spacing: 2.5px; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.prod-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 400; color: var(--navy); margin-bottom: 14px; line-height: 1.35; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-size: 15px; font-weight: 400; color: var(--navy); }
.btn-atc {
  background: var(--navy); color: white; border: none;
  padding: 9px 14px; font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  font-family: 'Montserrat', sans-serif; transition: background 0.2s;
}
.btn-atc:hover { background: var(--gold); }

.view-all-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--navy);
  padding: 13px 32px; font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none; color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 400;
  transition: all 0.2s;
}
.view-all-btn:hover { background: var(--navy); color: white; }

/* ── INSTAGRAM ──────────────────────────────────────────────────────── */
.insta-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 18px;
}
.insta-handle {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--navy);
}
.ig-icon {
  width: 42px; height: 42px; background: var(--navy);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: white; font-size: 18px;
}
.ig-name { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; color: var(--navy); }
.ig-sub  { font-size: 10px; color: var(--text-mid); margin-top: 2px; }
.follow-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--navy);
  padding: 10px 22px; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 400;
  transition: all 0.2s;
}
.follow-btn:hover { background: var(--navy); color: white; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
.ig-post { aspect-ratio: 1; overflow: hidden; cursor: pointer; position: relative; }
.ig-bg { width: 100%; height: 100%; transition: transform 0.4s; }
.ig-post:hover .ig-bg { transform: scale(1.08); }
.ig-over {
  position: absolute; inset: 0;
  background: rgba(27,42,74,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.ig-post:hover .ig-over { background: rgba(27,42,74,0.42); }
.ig-over svg { opacity: 0; transition: opacity 0.3s; color: white; }
.ig-post:hover .ig-over svg { opacity: 1; }
.ig-hint { font-size: 10px; color: var(--text-mid); text-align: center; margin-top: 14px; letter-spacing: 1px; }

/* ── MODAL ──────────────────────────────────────────────────────────── */
.overlay {
  position: fixed; inset: 0;
  background: rgba(17,30,54,0.65);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  width: 90%; max-width: 430px; padding: 52px 46px;
  position: relative;
  transform: translateY(16px); transition: transform 0.3s;
  border-top: 3px solid var(--gold);
}
.overlay.open .modal { transform: translateY(0); }
.modal-x {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none; font-size: 22px;
  cursor: pointer; color: var(--text-mid); line-height: 1;
}
.modal-eye  { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.modal-h    { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--navy); margin-bottom: 8px; }
.modal-sub  { font-size: 11px; color: var(--text-mid); margin-bottom: 32px; line-height: 1.75; }
.fgroup     { margin-bottom: 18px; }
.fgroup label { display: block; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mid); margin-bottom: 7px; }
.fgroup input {
  width: 100%; border: 1px solid var(--border);
  padding: 12px 14px; font-size: 13px;
  font-family: 'Montserrat', sans-serif; outline: none;
  color: var(--navy); background: var(--white); transition: border-color 0.2s;
}
.fgroup input:focus { border-color: var(--navy); }
.modal-btn {
  width: 100%; background: var(--navy); color: white; border: none;
  padding: 15px; font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif; font-weight: 500; cursor: pointer; margin-top: 6px;
  transition: background 0.2s;
}
.modal-btn:hover { background: var(--gold); }
.modal-foot { font-size: 10px; color: var(--text-mid); text-align: center; margin-top: 22px; line-height: 1.7; }
.modal-foot a { color: var(--gold); text-decoration: none; }

/* ── CART DRAWER ────────────────────────────────────────────────────── */
.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: 380px; height: 100vh;
  background: var(--white); z-index: 1500;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex; flex-direction: column;
  box-shadow: -6px 0 36px rgba(27,42,74,0.12);
  border-left: 2px solid var(--gold);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  padding: 22px 26px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--navy); }
.cart-x { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-mid); }
.cart-body { flex: 1; overflow-y: auto; padding: 26px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%; gap: 14px; color: var(--text-mid);
}
.cart-empty p { font-size: 11px; letter-spacing: 1px; }
.cart-item {
  display: flex; gap: 14px; margin-bottom: 22px;
  padding-bottom: 22px; border-bottom: 1px solid var(--border);
}
.ci-img {
  width: 76px; height: 76px; background: var(--off-white);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ci-img img { width: 100%; height: 100%; object-fit: cover; }
.ci-info { flex: 1; }
.ci-name { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--navy); margin-bottom: 3px; }
.ci-cat  { font-size: 9px; letter-spacing: 2px; color: var(--text-mid); text-transform: uppercase; margin-bottom: 10px; }
.ci-row  { display: flex; justify-content: space-between; align-items: center; }
.ci-price { font-size: 14px; color: var(--navy); }
.ci-rm { background: none; border: none; font-size: 10px; letter-spacing: 1px; color: var(--text-mid); cursor: pointer; text-decoration: underline; font-family: 'Montserrat', sans-serif; }
.ci-qty-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.ci-rm-row  { display: flex; justify-content: flex-end; }
.ci-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
}
.ci-step {
  background: none;
  border: none;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  transition: background 0.15s;
  padding: 0;
  line-height: 1;
}
.ci-step:hover { background: var(--gold-pale); color: var(--gold); }
.ci-qty-num {
  width: 30px;
  text-align: center;
  font-size: 13px;
  color: var(--navy);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 28px;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
}
.cart-foot { padding: 22px 26px; border-top: 1px solid var(--border); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.cart-subtotal span:first-child { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mid); }
.cart-subtotal span:last-child { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--navy); }
.checkout-btn {
  width: 100%; background: var(--navy); color: white; border: none;
  padding: 15px; font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif; cursor: pointer; transition: background 0.2s; margin-bottom: 12px;
}
.checkout-btn:hover { background: var(--gold); }
.stripe-note { font-size: 10px; color: var(--text-mid); text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ── MOBILE NAV ─────────────────────────────────────────────────────── */
.mobile-drawer {
  position: fixed; top: 0; left: 0;
  width: 80%; max-width: 320px; height: 100vh;
  background: var(--white); z-index: 1500;
  transform: translateX(-100%); transition: transform 0.4s ease;
  overflow-y: auto; padding: 72px 30px 40px;
  border-right: 2px solid var(--border);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-x {
  position: absolute; top: 22px; right: 22px;
  background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-mid);
}
.m-nav { list-style: none; }
.m-nav > li { border-bottom: 1px solid var(--border); }
.m-nav > li > a,
.m-nav > li > button {
  display: flex; width: 100%; align-items: center; justify-content: space-between;
  padding: 15px 0; font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none; color: var(--navy);
  background: none; border: none; font-family: 'Montserrat', sans-serif; font-weight: 500; cursor: pointer;
}
.m-sub { display: none; padding: 0 0 8px 10px; }
.m-sub.open { display: block; }
.m-sub a {
  display: block; padding: 8px 0;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-mid); text-decoration: none;
}
.m-sub a:hover { color: var(--gold); }
.dim {
  position: fixed; inset: 0;
  background: rgba(17,30,54,0.45); z-index: 1400;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.dim.open { opacity: 1; visibility: visible; }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); }
.footer-top {
  max-width: 1360px; margin: 0 auto;
  padding: 70px 40px 52px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px;
}
.fb .logo-name { color: white; font-size: 22px; }
.fb .logo-tagline { margin-bottom: 18px; }
.fb p { font-size: 12px; line-height: 2; margin-bottom: 22px; }
.socials { display: flex; gap: 10px; }
.soc-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); text-decoration: none; font-size: 14px;
  transition: all 0.2s; cursor: pointer;
}
.soc-btn:hover { border-color: var(--gold); color: var(--gold); }
.fc h4 { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 18px; font-weight: 500; }
.fc ul { list-style: none; }
.fc ul li { margin-bottom: 9px; }
.fc ul li a { font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.fc ul li a:hover { color: var(--gold-light); }
.fc address { font-style: normal; font-size: 12px; line-height: 2; }
.footer-btm {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 40px; max-width: 1360px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; flex-wrap: wrap; gap: 10px;
}
.footer-btm a { color: rgba(255,255,255,0.35); text-decoration: none; margin-left: 18px; }
.footer-btm a:hover { color: var(--gold-light); }

/* ── TOAST ──────────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--navy); color: white;
  padding: 15px 22px; font-size: 11px; letter-spacing: 1px;
  z-index: 3000; transform: translateY(80px); opacity: 0;
  transition: all 0.32s; display: flex; align-items: center; gap: 10px;
  border-left: 3px solid var(--gold);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { color: var(--gold-light); font-size: 14px; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .logo { grid-column: 2; }
  .header-actions { grid-column: 3; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-post:nth-child(n+4) { display: none; }
}
@media (max-width: 680px) {
  .header-inner { padding: 0 18px; }
  .header-search-panel.open { padding: 0 18px 16px; }
  .page-section { padding: 60px 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-top { grid-template-columns: 1fr; padding: 44px 20px; }
  .footer-btm { flex-direction: column; text-align: center; padding: 18px 20px; }
  .announce-bar .retailer-link { display: none; }
  .hero { height: 62vh; min-height: 380px; }
  .slide-content { left: 6%; bottom: 9%; }
  .collections-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-header { flex-direction: column; align-items: flex-start; }
}
