/* ============================================================
   FY Bedding -- Mason & Fifth Inspired Design System v4
   Warm neutrals - Cormorant Garamond + Inter - Pill motif
   ============================================================ */

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
  background: #F7F3EF;
  color: #2C2416;
  overflow-x: hidden; /* announce(32) + nav(70) */
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:       #F4F1EA;
  --bg-warm:  #C8BEAC;
  --bg-dark:  #B8AE9C;
  --white:    #FFFFFF;
  --off-white:#FDFCFA;

  --text:     #59240C;
  --text-mid: #7D4A29;
  --muted:    #9D6238;

  --clay:     #B29F88;
  --clay-dark:#9D6238;
  --clay-light:#DFD7CB;
  --terracotta:#7D4A29;

  --gold:     #9D6238;
  --gold-dark:#7D4A29;
  --gold-light:#C8BEAC;
  --dark:     #7D4A29;
  --dark-alt: #59240C;

  --border:   #D5CFC4;
  --border-light: #E8E2D7;
  --radius:   6px;
  --radius-lg:10px;
  --radius-xl:14px;
  --radius-pill:100px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.t-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.t-h1 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(48px, 5.5vw, 80px); font-weight: 300;
  line-height: 1.02; color: var(--dark); letter-spacing: -0.01em;
}
.t-h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(36px, 4vw, 56px); font-weight: 400;
  line-height: 1.08; color: var(--dark); letter-spacing: -0.01em;
}
.t-h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(24px, 2.5vw, 32px); font-weight: 400;
  line-height: 1.2; color: var(--dark); letter-spacing: -0.01em;
}
.t-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px; line-height: 1.65; color: var(--text-mid); font-weight: 400;
}
em { color: var(--gold); font-weight: 400; }
strong { font-weight: 600; }

/* ── ANNOUNCEMENT BAR ───────────────────────────────────── */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--dark); padding: 6px 24px;
  display: flex; align-items: center; justify-content: center; gap: 48px;
  font-size: 11px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em; font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.announce-bar span { display: flex; align-items: center; gap: 6px; }
.announce-bar strong { color: var(--gold-light); font-weight: 600; }




/* ═══════════════════════════════════════════════════════════
   MEGAMENU NAVIGATION v5 - Apple/IKEA inspired
   Full-width card-based dropdown with category images
   ═══════════════════════════════════════════════════════════ */

/* Megamenu wrapper - override nav-dropdown relative positioning */
.nav-dropdown.nav-mega-wrap { position: static !important; }

/* Megamenu trigger link */
.nav-mega-trigger {
  display: inline-flex; align-items: center; gap: 4px;
}

/* Full-width megamenu panel */
.nav-megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid #E8E0D6;
  box-shadow: 0 24px 64px rgba(61,42,28,0.10), 0 8px 20px rgba(0,0,0,0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0.25s;
  z-index: 199;
  pointer-events: none;
}
.nav-mega-wrap:hover .nav-megamenu,
.nav-mega-wrap.hover .nav-megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0s;
  pointer-events: auto;
}

/* Megamenu inner container */
.nav-megamenu-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 48px 32px;
}

/* Megamenu header row */
.nav-megamenu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F4F1EA;
}
.nav-megamenu-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9D6238;
}
.nav-megamenu-viewall {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #59240C;
  text-decoration: none;
  transition: color 0.15s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-megamenu-viewall:hover {
  color: #9D6238;
  gap: 8px;
}

/* Megamenu grid - 4 columns */
.nav-megamenu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Megamenu column */
.nav-megamenu-col {
  display: flex;
  flex-direction: column;
}

/* Megamenu card (image + title) */
.nav-megamenu-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  overflow: hidden;
  background: #FAF8F5;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
  margin-bottom: 14px;
}
.nav-megamenu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,42,28,0.10);
}
.nav-megamenu-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #C8BEAC;
}
.nav-megamenu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-megamenu-card:hover .nav-megamenu-card-img img {
  transform: scale(1.05);
}
.nav-megamenu-card-body {
  padding: 14px 16px;
}
.nav-megamenu-card-title {
  display: block;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 19px;
  font-weight: 500;
  color: #3D2A1C;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.nav-megamenu-card-count {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #9D6238;
  margin-top: 3px;
}

/* Megamenu subcategories list */
.nav-megamenu-subs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}
.nav-megamenu-subs li a {
  display: block;
  padding: 5px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6B5E53;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.12s, color 0.12s;
}
.nav-megamenu-subs li a:hover {
  background: #F4F1EA;
  color: #3D2A1C;
}

/* Megamenu explore link */
.nav-megamenu-explore {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #9D6238;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s, gap 0.2s;
  margin-top: auto;
}
.nav-megamenu-explore:hover {
  color: #3D2A1C;
  background: #F4F1EA;
  gap: 8px;
}

/* Hide megamenu on tablet/mobile */
@media (max-width: 1024px) {
  .nav-megamenu {
    display: none !important;
  }
}

/* ── Collections Pagination ───────────────── */
.collections-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  font-family: 'Inter', sans-serif;
}
.collections-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 500;
  color: #6B5E53;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s;
}
.collections-pagination a:hover {
  background: #F4F1EA;
  color: #3D2A1C;
}
.collections-pagination a.active {
  background: #3D2A1C;
  color: #FFFFFF;
  font-weight: 600;
}
.pagination-prev,
.pagination-next {
  font-weight: 600 !important;
  color: #59240C !important;
}
.pagination-pages {
  display: flex;
  gap: 4px;
}
.pagination-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 14px;
  color: #9D6238;
  user-select: none;
}

/* ── Mobile Nav Section Headers ───────────── */
.mobile-nav-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
  border-top: 2px solid #F4F1EA;
  border-bottom: 2px solid #F4F1EA;
  margin: 8px 0;
}
.mobile-nav-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9D6238;
  padding: 4px 0;
  text-align: center;
}

/* ── Site Footer (compact v5) ─────────────── */
.site-footer {
  background: #3D2A1C;
  color: rgba(255,255,255,0.65);
  padding: 64px 48px 32px;
  font-family: 'Inter', sans-serif;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr) 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col { display: flex; flex-direction: column; }
.footer-brand {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 24px;
  color: white;
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}
.footer-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul li a:hover {
  color: rgba(255,255,255,0.8);
}
.footer-contact {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  max-width: 1320px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  .footer-col:first-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .site-footer { padding: 48px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-col:first-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .site-footer { padding: 36px 16px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand { font-size: 20px; }
}

/* ── BUTTONS (Pill Motif) ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  border: none; transition: all .25s cubic-bezier(.22,1,.36,1);
  text-decoration: none; font-weight: 600; font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--gold); color: white; padding: 14px 32px;
  border-radius: var(--radius-pill); font-size: 14px; letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--gold-dark); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(157,98,56,0.25);
}
.btn-gold {
  background: var(--gold); color: white; padding: 14px 32px;
  border-radius: var(--radius-pill); font-size: 14px; letter-spacing: 0.02em;
}
.btn-gold:hover {
  background: var(--gold-dark); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(157,98,56,0.25);
}
.btn-outline {
  background: transparent; color: var(--gold-dark); padding: 13px 30px;
  border-radius: var(--radius-pill); font-size: 14px;
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: white; border-color: var(--gold); }
.btn-ghost {
  background: transparent; color: var(--gold-dark); padding: 0;
  font-size: 14px; border: none;
}
.btn-ghost:hover { gap: 12px; }
.btn-white {
  background: white; color: var(--gold-dark); padding: 14px 32px;
  border-radius: var(--radius-pill); font-size: 14px; font-weight: 600;
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(157,98,56,0.2);
}
.btn-glass {
  background: rgba(255,255,255,0.12); color: white; padding: 13px 28px;
  border-radius: var(--radius-pill); font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.2); cursor: pointer;
  text-decoration: none; display: inline-block; transition: all .2s;
}
.btn-glass:hover {
  background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4);
}

/* ── SECTIONS ───────────────────────────────────────────── */
.section { padding: 128px 64px; }
.section-sm { padding: 88px 64px; }
.section-lg { padding: 152px 64px; }
.bg-white  { background: var(--white); }
.bg-cream  { background: var(--bg); }
.bg-cream2 { background: var(--bg-warm); }
.bg-linen  { background: var(--off-white); }
.bg-dark   { background: var(--dark); }
.bg-navy   { background: var(--dark-alt); }

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb { padding: 14px 64px; background: white; border-bottom: 1px solid var(--border-light); font-family: 'Inter', sans-serif; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.breadcrumb-inner a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb-inner a:hover { color: var(--gold-dark); }
.breadcrumb-inner span { color: var(--text); font-weight: 500; }

/* ── PAGE HEADER ────────────────────────────────────────── */
.page-header {
  background: var(--dark); padding: 80px 64px; color: white;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(157,98,56,0.2) 0%, transparent 65%);
}
.page-header-content { position: relative; z-index: 2; max-width: 780px; }
.page-header .t-eyebrow { color: var(--gold-light); margin-bottom: 12px; }
.page-header h1 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(42px, 4.5vw, 64px); font-weight: 300;
  color: white; line-height: 1.05; margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.page-header h1 em { color: var(--gold-light); }
.page-header p {
  font-size: 16px; color: rgba(255,255,255,0.55);
  font-weight: 400; line-height: 1.75;
}

/* ── MARQUEE ────────────────────────────────────────────── */
.marquee-wrap { background: var(--dark); overflow: hidden; padding: 14px 0; }
.marquee-track { display: flex; animation: marqueeScroll 32s linear infinite; white-space: nowrap; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 0; padding: 0 32px;
  color: rgba(255,255,255,0.55); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.marquee-dot {
  margin: 0 16px; width: 3px; height: 3px; background: var(--gold);
  border-radius: 50%; display: inline-block; flex-shrink: 0;
}

/* ── CERTIFICATIONS ─────────────────────────────────────── */
.certs-strip { background: white; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); font-family: 'Inter', sans-serif; }
.certs-strip-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.cert-badge { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-right: 1px solid var(--border-light); transition: background .2s; }
.cert-badge:last-child { border-right: none; }
.cert-badge:hover { background: var(--off-white); }
.cert-badge-icon { width:.200px; height:.80px; object-fit: contain; flex-shrink: 0; display: inline-block; }
.cert-badge-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--dark); }
.cert-badge-text span { font-size: 11px; color: var(--muted); }


/* ── SCROLL PROGRESS ────────────────────────────────────── */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--gold); z-index: 300; transition: width .1s; pointer-events: none; }

/* ── BACK TO TOP ────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px;
  background: var(--dark); color: white; border: none;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; box-shadow: 0 4px 16px rgba(61,42,28,0.25);
  transition: opacity .3s, transform .3s cubic-bezier(.22,1,.36,1);
  opacity: 0; pointer-events: none; z-index: 90;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-3px); }

/* ── REVEAL ─────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s ease,
              transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-l {
  opacity: 0; transform: translateX(-36px);
  transition: opacity .75s ease,
              transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal-l.visible { opacity: 1; transform: translateX(0); }
.reveal-r {
  opacity: 0; transform: translateX(36px);
  transition: opacity .75s ease,
              transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal-r.visible { opacity: 1; transform: translateX(0); }

/* ── FORM ───────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; font-family: 'Inter', sans-serif; }
.form-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 7px;
}
.form-label .req { color: #C46A4A; margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 14px; color: var(--text);
  background: var(--off-white); transition: border-color .2s, box-shadow .2s;
  outline: none; font-family: 'Inter', sans-serif;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(157,98,56,0.12);
  background: white;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── PRODUCT CARDS ──────────────────────────────────────── */
.product-card {
  background: white; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: transform .32s cubic-bezier(.22,1,.36,1),
              box-shadow .32s ease;
  cursor: pointer; text-decoration: none; color: inherit; display: block;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(61,42,28,0.08);
}
.product-img {
  width: 100%; aspect-ratio: 4/3; position: relative;
  overflow: hidden; background: var(--bg-warm);
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.product-card:hover .product-img img { transform: scale(1.03); }
.product-body { padding: 20px 22px 24px; }
.product-tag {
  display: inline-block; background: var(--bg-warm);
  color: var(--clay-dark); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px; margin-bottom: 9px;
  font-family: 'Inter', sans-serif;
}
.product-name {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 22px; font-weight: 500; color: var(--dark);
  margin-bottom: 7px; letter-spacing: -0.01em;
}
.product-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.product-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--border-light);
}
.product-moq { font-size: 12px; color: var(--muted); }
.product-moq strong { color: var(--dark); }
.product-link {
  font-size: 13px; color: var(--gold-dark); font-weight: 600;
  display: flex; align-items: center; gap: 5px;
  font-family: 'Inter', sans-serif;
}

/* ── TESTIMONIAL CARD ───────────────────────────────────── */
.testimonial-card {
  background: white; border-radius: var(--radius-xl);
  padding: 40px 32px; box-shadow: 0 2px 14px rgba(0,0,0,0.03);
  transition: transform .28s cubic-bezier(.22,1,.36,1);
}
.testimonial-card:hover { transform: translateY(-3px); }
.t-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; }
.t-quote {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 17px; line-height: 1.75; color: var(--text);
  margin-bottom: 24px; font-weight: 400;
}
.t-author { display: flex; align-items: center; gap: 12px; font-family: 'Inter', sans-serif; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-light); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold-dark); font-size: 15px; font-weight: 700;
  flex-shrink: 0;
}
.t-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.t-role { font-size: 12px; color: var(--muted); }

/* ════════════════════════════════════════════════════════════
   MASON & FIFTH FLOATING / CAROUSEL SYSTEM
   ════════════════════════════════════════════════════════════ */

/* ── FLOATING CARD ──────────────────────────────────────── */
.floating-card {
  background: rgba(247,243,239,0.88);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all .35s cubic-bezier(.22,1,.36,1);
}

/* ── FLOATING LOGO ──────────────────────────────────────── */
.floating-logo {
  position: fixed; top: 24px; left: 28px; z-index: 100;
  display: flex; align-items: center; gap: 10px;
  background: rgba(247,243,239,0.85); backdrop-filter: blur(16px);
  border-radius: 12px; padding: 12px 20px;
  text-decoration: none; color: var(--dark);
  transition: background .3s cubic-bezier(.22,1,.36,1),
              transform .3s cubic-bezier(.22,1,.36,1);
  font-weight: 700; font-size: 16px; letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
}
.floating-logo:hover { background: rgba(247,243,239,0.98); transform: translateY(-1px); }
.floating-logo svg { width: 32px; height: 32px; flex-shrink: 0; }

/* ── FLOATING BUTTONS ───────────────────────────────────── */
.floating-buttons {
  position: fixed; top: 24px; right: 28px; z-index: 100;
  display: flex; align-items: center; gap: 10px;
}

/* ── PILL BUTTONS ───────────────────────────────────────── */
.pill-btn {
  border-radius: var(--radius-pill); padding: 10px 22px;
  font-size: 13px; font-weight: 500; font-family: 'Inter', sans-serif;
  cursor: pointer; text-decoration: none; display: inline-flex;
  align-items: center;
  transition: background .3s cubic-bezier(.22,1,.36,1),
              border-color .3s cubic-bezier(.22,1,.36,1),
              transform .3s cubic-bezier(.22,1,.36,1);
  white-space: nowrap;
}
.pill-btn:hover { transform: scale(1.02); }

.pill-btn--outline {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
}
.pill-btn--outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.45);
}

.pill-btn--solid {
  background: var(--gold); border: none; color: white;
}
.pill-btn--solid:hover { background: var(--gold-dark); }

/* ── HAMBURGER ICON ─────────────────────────────────────── */
.hamburger-icon {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  cursor: pointer;
  transition: background .3s cubic-bezier(.22,1,.36,1),
              border-color .3s cubic-bezier(.22,1,.36,1);
  flex-shrink: 0;
}
.hamburger-icon:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.4);
}
.hamburger-icon span {
  width: 16px; height: 1.5px; background: #59240C; border-radius: 1px;
}

/* ── HERO CAROUSEL ──────────────────────────────────────── */
.hero-carousel {
  position: relative; width: 100vw; height: 100vh; overflow: hidden;
}

.hero-carousel .hero-slides { position: absolute; inset: 0; }

.hero-carousel .hero-slide {
  position: absolute; inset: 0; opacity: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: opacity 1s cubic-bezier(.22,1,.36,1),
              transform 6s cubic-bezier(.25,.1,.25,1);
}
.hero-carousel .hero-slide.active {
  opacity: 1; transform: scale(1);
}

/* ── PROGRESS INDICATOR ─────────────────────────────────── */
.progress-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 6px;
}
.progress-seg {
  width: 32px; height: 3px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: width .3s cubic-bezier(.22,1,.36,1),
              background .3s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.progress-seg::after {
  content: ''; position: absolute; inset: 0; background: white;
  transform: scaleX(0); transform-origin: left;
  transition: transform 6s linear;
}
.progress-seg.active { width: 48px; background: rgba(255,255,255,0.35); }
.progress-seg.active::after { transform: scaleX(1); }
.progress-seg.done { background: rgba(255,255,255,0.5); }
.progress-seg.done::after { transform: scaleX(1); background: rgba(255,255,255,0.7); }

/* ── HERO CENTER TITLE ──────────────────────────────────── */
.hero-title {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); z-index: 10;
  text-align: center; pointer-events: none;
  transition: opacity .35s cubic-bezier(.22,1,.36,1),
              transform .35s cubic-bezier(.22,1,.36,1);
}
.hero-title__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.hero-title__headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(42px, 6vw, 88px);
  color: white; line-height: 1.05; letter-spacing: -0.01em;
}
.hero-title__headline em {
  font-weight: 300; color: white;
}

/* ── BOTTOM CTA PILL ────────────────────────────────────── */
.cta-pill {
  position: absolute; bottom: 80px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-radius: var(--radius-pill); padding: 14px 14px 14px 28px;
  cursor: pointer; text-decoration: none;
  transition: background .35s cubic-bezier(.22,1,.36,1),
              transform .35s cubic-bezier(.22,1,.36,1),
              box-shadow .35s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.cta-pill:hover {
  background: white;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.1);
}
.cta-pill__text { display: flex; flex-direction: column; gap: 2px; }
.cta-pill__label {
  font-size: 10px; font-weight: 500; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
}
.cta-pill__action {
  font-size: 17px; font-weight: 600; color: var(--dark);
  font-family: 'Inter', sans-serif;
}
.cta-pill__thumb {
  width: 48px; height: 48px; border-radius: 12px;
  background-size: cover; background-position: center;
  flex-shrink: 0; transition: background-image .4s;
}

/* ── INQUIRY BAR ────────────────────────────────────────── */
.inquiry-bar {
  position: fixed; top: 108px; left: 28px; z-index: 90;
  display: flex; gap: 0;
  background: rgba(247,243,239,0.88); backdrop-filter: blur(18px);
  border-radius: 16px; padding: 6px 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all .35s cubic-bezier(.22,1,.36,1);
  font-family: 'Inter', sans-serif;
}

.inquiry-col {
  padding: 12px 18px; cursor: pointer;
  position: relative; white-space: nowrap;
  transition: background .2s; border-radius: 12px;
}
.inquiry-col:hover { background: rgba(255,255,255,0.5); }

.inquiry-col__label {
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold); margin-bottom: 4px;
}
.inquiry-col__value {
  font-size: 15px; font-weight: 500; color: var(--dark);
  display: flex; align-items: center; gap: 6px;
}
.inquiry-col__value svg { width: 10px; height: 10px; opacity: 0.5; }

.inquiry-divider {
  width: 1px; background: var(--border);
  margin: 8px 4px; align-self: stretch;
}

.inquiry-col--email {
  display: flex; align-items: center; gap: 10px; padding: 12px 18px;
}
.inquiry-col--email input {
  background: transparent; border: none;
  border-bottom: 1.5px solid var(--border);
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--dark); width: 180px; outline: none;
  padding: 4px 0; transition: border-color .2s;
}
.inquiry-col--email input:focus { border-bottom-color: var(--gold); }
.inquiry-col--email input::placeholder { color: var(--bg-dark); }

.inquiry-submit {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: var(--gold); color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background .3s cubic-bezier(.22,1,.36,1),
              transform .3s cubic-bezier(.22,1,.36,1);
}
.inquiry-submit:hover {
  background: var(--gold-dark); transform: scale(1.08);
}

/* ── TEXT FADE TRANSITION ───────────────────────────────── */
.fading {
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s cubic-bezier(.22,1,.36,1),
              transform .35s cubic-bezier(.22,1,.36,1);
}
.fading.show { opacity: 1; transform: translateY(0); }

/* ── MOBILE NAVIGATION (site-wide) ──────────────────────── */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; margin-right: -8px;
}
.nav-hamburger-icon {
  width: 24px; height: 20px; position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
}
.nav-hamburger-icon span {
  display: block; width: 100%; height: 2px; background: var(--dark);
  border-radius: 2px; transition: all .3s cubic-bezier(.22,1,.36,1);
}
.nav-hamburger.open .nav-hamburger-icon span:nth-child(1) { transform: rotate(45deg) translateY(9px); }
.nav-hamburger.open .nav-hamburger-icon span:nth-child(2) { opacity: 0; }
.nav-hamburger.open .nav-hamburger-icon span:nth-child(3) { transform: rotate(-45deg) translateY(-9px); }

.mobile-menu {
  position: fixed; top: 102px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 98;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  overflow-y: auto; padding: 24px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-links { list-style: none; }
.mobile-menu-links > li { border-bottom: 1px solid var(--border-light); }
.mobile-menu-links > li > a {
  display: block; padding: 18px 0; font-size: 16px;
  font-weight: 500; color: var(--text); text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.mobile-menu-links > li > a.active { color: var(--gold-dark); }
.mobile-menu-submenu { padding-left: 16px; padding-bottom: 12px; display: none; }
.mobile-menu-submenu.open { display: block; }
.mobile-menu-submenu a {
  display: block; padding: 10px 0; font-size: 14px;
  color: var(--muted); text-decoration: none;
}
.mobile-menu-submenu a:hover { color: var(--gold); }
.mobile-menu-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu-cta .btn { width: 100%; text-align: center; }

/* ── RESPONSIVE (shared) ────────────────────────────────── */
@media (max-width: 1024px) {
  .nav { top: 0; padding: 0 20px; height: 56px; }
  .nav.scrolled { height: 48px; }
  .nav-logo { gap: 6px; }
  .nav-logo svg { width: 22px !important; height: 22px !important; }
  .nav-logo-text { font-size: 16px !important; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-dealer-btn { display: none; }
  .nav-cta { display: none !important; }
  .nav-search-btn { display: none; }
  .nav-right { gap: 4px; }
  .nav-hamburger { display: block; }
  .megamenu { display: none; }
  .section, .section-sm, .section-lg { padding-left: 24px; padding-right: 24px; }
  .breadcrumb { padding-left: 24px; padding-right: 24px; }
  .page-header { padding: 56px 24px; }
  .footer { padding: 56px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .certs-strip-inner { justify-content: center; }
  .cert-badge { padding: 10px 12px; }
}

@media (max-width: 768px) {
  .announce-bar { display: none !important; }
  .nav { top: 0; padding: 0 16px; height: 52px; }
  .nav.scrolled { height: 44px; }
  .nav-logo { gap: 5px; }
  .nav-logo svg { width: 20px !important; height: 20px !important; }
  .nav-logo-text { font-size: 14px !important; }
  .nav-hamburger { padding: 6px 2px; }
  .nav-hamburger-icon { width: 20px; height: 16px; }
  .section, .section-sm, .section-lg { padding-left: 20px; padding-right: 20px; }
  .breadcrumb { padding-left: 20px; }
  .page-header { padding: 40px 20px; }
  .page-header h1 { font-size: clamp(28px, 5vw, 38px); }
  .page-header p { font-size: 13px; }
  .footer { padding: 44px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  /* hide floating UI on mobile */
  .floating-logo { display: none !important; }
  .floating-buttons { display: none !important; }
  .inquiry-bar { display: none !important; }
  .hero-title__headline { font-size: clamp(26px, 7vw, 40px); }
  .cta-pill { bottom: 56px; left: 16px; right: 16px; transform: none; width: auto; justify-content: space-between; border-radius: 14px; padding: 10px 12px 10px 18px; }
  .cta-pill:hover { transform: translateY(-1px); }
  .progress-indicator { gap: 4px; bottom: 16px; }
  .progress-seg { width: 18px; height: 2px; }
  .progress-seg.active { width: 28px; }
  .mobile-menu { top: 52px; }
  /* all grids → 1 column */
  [class*="-grid"] { grid-template-columns: 1fr !important; }
  .collections-layout { display: flex; flex-direction: column; }
  .collections-sidebar { width: 100%; padding: 10px 12px; border-right: none; border-bottom: 1px solid var(--border-light); }
  img, video { max-width: 100%; height: auto; }
  table { display: block; overflow-x: auto; width: 100%; }
}

@media (max-width: 480px) {
  .nav { padding: 0 12px; height: 48px; }
  .nav.scrolled { height: 42px; }
  .nav-logo svg { width: 18px !important; height: 18px !important; }
  .nav-logo-text { font-size: 13px !important; letter-spacing: -0.005em !important; }
  .nav-hamburger { padding: 4px 2px; }
  .nav-hamburger-icon { width: 18px; height: 14px; }
  .section, .section-sm, .section-lg { padding-left: 16px; padding-right: 16px; }
  .breadcrumb { padding-left: 16px; font-size: 10px; }
  .page-header { padding: 32px 16px; }
  .page-header h1 { font-size: clamp(24px, 6vw, 32px); }
  .page-header p { font-size: 12px; }
  .footer { padding: 36px 16px 20px; }
  .footer-brand-text { font-size: 20px; }
  .footer-tagline { font-size: 11px; line-height: 1.7; }
  .footer-col-title { font-size: 9px; margin-bottom: 12px; }
  .footer-links a { font-size: 11px; }
  .footer-bottom { font-size: 10px; flex-direction: column; gap: 6px; text-align: center; }
  .certs-strip-inner { gap: 0; }
  .cert-badge { padding: 10px 12px; border-right: none; border-bottom: 1px solid var(--border-light); }
  .cert-badge:last-child { border-bottom: none; }
  .cert-badge-text strong { font-size: 10px; }
  .cert-badge-text span { font-size: 9px; }
  .cert-badge-icon { width: 50px; height: 24px; object-fit: contain; display: inline-block; flex-shrink: 0; }
  .hero-title__headline { font-size: clamp(22px, 8vw, 32px); }
  .cta-pill { bottom: 48px; padding: 8px 10px 8px 14px; }
  .cta-pill__label { font-size: 8px; }
  .cta-pill__action { font-size: 12px; }
  .cta-pill__thumb { width: 30px; height: 30px; border-radius: 8px; }
  .progress-seg { width: 14px; }
  .progress-seg.active { width: 22px; }
  .mobile-menu { top: 48px; }
  .mobile-menu-links > li > a { padding: 12px 0; font-size: 14px; }
  .nav-search-kbd { display: none; }
  .search-overlay { padding-top: 24px; }
  /* product cards */
  .product-grid, .products-grid { gap: 10px; }
  .product-card .product-name { font-size: 17px; }
  .product-card .product-desc { font-size: 11px; }
  .product-card .product-body { padding: 14px; }
}

/* ── MOBILE NAV OVERLAY (PHP hamburger trigger) ──────────── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-inner {
  background: white;
  border-radius: 12px;
  padding: 40px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav-inner a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #59240C;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid #F4F1EA;
  text-align: center;
}
.mobile-nav-inner a:hover { color: #9D6238; }

/* ── Mobile nav: close button ── */
.mobile-nav-close {
  position: absolute;
  top: 8px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  color: #59240C;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  border-bottom: none !important;
}

/* ── Mobile nav: expandable groups ── */
.mobile-nav-group {
  display: flex;
  flex-direction: column;
}
.mobile-nav-children {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0 8px 12px;
}
.mobile-nav-group.open .mobile-nav-children {
  display: flex;
}
.mobile-nav-parent {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  color: #3D2A1C !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(232,224,214,0.3) !important;
  border-top: 0 !important;
  text-align: center !important;
  margin: 0 !important;
}
.mobile-nav-child {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  padding: 6px 0 6px 20px !important;
  color: #6B5E53 !important;
  border-bottom: none !important;
  text-align: left !important;
}
.mobile-nav-viewall {
  font-weight: 600;
  color: #9D6238 !important;
  border-bottom: none !important;
  margin-top: 4px;
}
.mobile-nav-dealer {
  background: #9D6238;
  color: #fff !important;
  border-radius: 6px;
  padding: 14px 0 !important;
  margin-top: 8px;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  border-bottom: none !important;
  text-align: center !important;
}

/* ── Mobile nav: fix inner link overrides ── */
.mobile-nav-inner .mobile-nav-parent,
.mobile-nav-inner .mobile-nav-child {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(232,224,214,0.2);
}




/* ====== COMPACT COLLECTIONS DROPDOWN ====== */
.nav-dropdown { position: relative; }
.nav-collections {
  width: 260px;
  padding: 8px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(61,42,28,0.12), 0 2px 8px rgba(0,0,0,0.06);
  left: 50%;
  transform: translateX(-50%);
}
.nc-group {
  padding: 4px 0;
}
.nc-group + .nc-group {
  border-top: 1px solid #F4F1EA;
}
.nc-parent {
  display: block;
  padding: 8px 20px 4px;
  font-size: 12px;
  font-weight: 600;
  color: #3D2A1C;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nc-parent:hover {
  color: #9D6238;
}
.nc-child {
  display: block;
  padding: 5px 20px 5px 28px;
  font-size: 13px;
  color: #6B5E53;
  white-space: nowrap;
}
.nc-child:hover {
  color: #3D2A1C;
  background: #FAF8F5;
}
.nc-all {
  display: block;
  padding: 10px 20px 6px;
  margin-top: 4px;
  border-top: 1px solid #E8E0D6;
  font-size: 13px;
  font-weight: 600;
  color: #9D6238;
  text-align: center;
}
.nc-all:hover {
  color: #3D2A1C;
  background: #FAF8F5;
  border-radius: 0 0 8px 8px;
}

/* Mobile nav parent/child */
.mobile-nav-parent {
  font-weight: 600;
  font-size: 15px;
  color: #3D2A1C !important;
  padding-top: 10px;
  border-top: 1px solid rgba(232,224,214,0.3);
  margin-top: 2px;
}
.mobile-nav-child {
  font-size: 13px;
  padding-left: 28px !important;
  color: #6B5E53 !important;
}



/* ── Site Navigation ─────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E8E0D6;
}
.site-nav-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 40px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 16px; color: #3D2A1C;
  letter-spacing: 0.02em; flex-shrink: 0;
}
.site-nav-brand svg { flex-shrink: 0; }
.site-nav-links {
  display: flex; align-items: center; gap: 2px;
}
.site-nav-links > a,
.site-nav-links .nav-dropdown > a {
  padding: 8px 14px; font-size: 13.5px; font-weight: 500;
  color: #7D4A29; text-decoration: none; border-radius: 8px;
  transition: background .15s, color .15s; white-space: nowrap;
}
.site-nav-links > a:hover,
.site-nav-links .nav-dropdown > a:hover { background: #F4F1EA; color: #3D2A1C; }
.site-nav-links > a.active { background: #F4F1EA; color: #3D2A1C; font-weight: 600; }
.site-nav-actions {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.site-nav-dealer {
  padding: 7px 16px; font-size: 12.5px; font-weight: 500;
  color: #7D4A29; text-decoration: none;
  border: 1.5px solid #D5CFC4; border-radius: 100px;
  transition: all .15s;
}
.site-nav-dealer:hover { background: #F4F1EA; border-color: #9D6238; }
.site-nav-cta {
  padding: 7px 18px; font-size: 12.5px; font-weight: 600;
  background: #3D2A1C; color: white; text-decoration: none;
  border-radius: 100px; transition: background .15s;
}
.site-nav-cta:hover { background: #59240C; }

/* Nav Dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: white; border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 8px 0; min-width: 200px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all .2s; z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 13px;
  color: #3D2A1C; text-decoration: none; transition: background .1s;
}
.nav-dropdown-menu a:hover { background: #F4F1EA; }
.nav-caret { font-size: 8px; margin-left: 4px; opacity: 0.4; }

/* Hamburger — hidden on desktop */
.hamburger-icon {
  display: none; width: 36px; height: 36px; border-radius: 10px;
  border: 1.5px solid #D5CFC4; background: transparent;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; cursor: pointer;
}
.hamburger-icon span {
  width: 18px; height: 2px; background: #3D2A1C; border-radius: 1px;
}

/* Mobile */
@media (max-width: 768px) {
  .site-nav-inner { padding: 0 20px; }
  .site-nav-links { display: none; }
  .site-nav-dealer { display: none; }
  .hamburger-icon { display: flex; }
}
