/* ═══════════════════════════════════════════════════════════════
   VJOY — Premium Storefront CSS
   Editorial luxury office brand. Sharp, gold, alive.
═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Brand greens */
  --green:        #1C562E;
  --green-hover:  #2D7A45;
  --green-light:  #E8F2EC;

  /* Warm neutrals */
  --cream:        #FAF8F3;
  --sand:         #E8DCC8;
  --espresso:     #1A1410;
  --dark-footer:  #1A1410;

  /* Accent gold (decorative only) */
  --gold:         #C4963A;
  --gold-hover:   #A8893A;
  --gold-light:   #F0E6C8;

  /* Supporting */
  --terracotta:   #C4673A;
  --sage:         #7A9E85;
  --muted:        #8A8278;
  --white:        #FFFFFF;
  --border:       #E8DCC8;
  --danger:       #C0392B;
  --success:      #1A7F37;

  /* Legacy aliases — keep existing rules working with new palette */
  --charcoal:     var(--espresso);
  --bg:           var(--cream);
  --footer-bg:    var(--dark-footer);

  --announce-h:   36px;
  --header-h:     64px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: var(--bg);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ══════════════════════════════════════════════════════════════
   1. ANNOUNCEMENT BAR — scrolling marquee
══════════════════════════════════════════════════════════════ */
.announcement-bar {
  background: var(--charcoal);
  height: var(--announce-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

.marquee-track span {
  display: block;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-right: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   2. STICKY HEADER
══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  height: var(--header-h);
  transition: box-shadow 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(45, 41, 38, 0.10);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

/* Left — nav wrapper */
.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Desktop Category Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.header-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 3px;
  overflow: hidden;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.header-nav a:hover        { color: var(--green); }
.header-nav a:hover::after { transform: scaleX(1); }
.header-nav a::after       { background: var(--green); }

/* Center — Logo */
.header-logo {
  display: flex;
  justify-content: center;
}

.header-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Right — Icons */
.header-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.icon-btn:hover {
  color: var(--green);
  transform: scale(1.12);
}

.badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* cart-badge — alias for .badge used in sub-page headers */
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* User initial circle (shown when logged in) */
.user-initial-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  line-height: 1;
  pointer-events: none;
}

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  font-size: 22px;
  padding: 4px 8px;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-btn:hover { color: var(--green); }

/* Mobile Nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--announce-h) + var(--header-h));
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  z-index: 800;
  list-style: none;
  transform: translateY(-110%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(45, 41, 38, 0.10);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav li {
  border-bottom: 1px solid var(--border);
}
.mobile-nav li:last-child { border-bottom: none; }
.mobile-nav a {
  display: block;
  padding: 14px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:hover {
  color: var(--green);
  padding-left: 32px;
}

/* ── Search Overlay ──────────────────────────────────────────── */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 20, 16, 0.97);
  padding: 40px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.search-overlay.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#search-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  padding: 12px 0;
  outline: none;
}
#search-input::placeholder { color: rgba(255,255,255,0.3); }
.search-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.search-close:hover { color: #fff; }

/* ══════════════════════════════════════════════════════════════
   3. HERO — layered parallax editorial cover (Vana Interior)
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-layer {
  position: absolute;
  inset: -60px;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,20,16,0.75) 0%, rgba(28,86,46,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 10vw;
  max-width: 800px;
}
.hero-eyebrow {
  font: 600 11px/1 'Inter', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 700;
  line-height: 0.95;
  color: #fff;
  margin: 0 0 28px;
}
.hero-title-line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title-italic {
  font-style: italic;
  color: var(--gold);
  animation-delay: 0.7s;
}
.hero-subtitle {
  font: 300 18px/1.7 'Inter', sans-serif;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 16px 36px;
  font: 600 12px/1 'Inter', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-hover); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 15px 36px;
  font: 600 12px/1 'Inter', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: #fff; color: #fff; }

/* Floating stat badges */
.hero-stat {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 16px 24px;
  opacity: 0;
  animation: fadeUp 0.8s 1.4s forwards;
}
.hero-stat--1 { bottom: 15%; right: 10%; }
.hero-stat--2 { bottom: 28%; right: 10%; }
.hero-stat-num {
  display: block;
  font: 700 28px/1 'Playfair Display', serif;
  color: #fff;
}
.hero-stat-label {
  display: block;
  font: 500 11px/1 'Inter', sans-serif;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  text-transform: uppercase;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.6s forwards;
  z-index: 3;
}
.hero-scroll-hint span {
  font: 600 9px/1 'Inter', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(196,150,58,0.8), transparent);
  animation: linePulse 2s 2s ease-in-out infinite;
}
@keyframes linePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Legacy alias retained for hero CTA backward compat (unused on new home) */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-gold:hover  { background: var(--green-hover); transform: translateY(-2px); }
.btn-gold:active { transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   4. SCROLL REVEAL — applied by IntersectionObserver
══════════════════════════════════════════════════════════════ */
.category-card,
.product-card,
.section-title,
.trust-item {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.65s var(--reveal-delay, 0s) ease,
    transform 0.65s var(--reveal-delay, 0s) ease;
}

.category-card.revealed,
.product-card.revealed,
.section-title.revealed,
.trust-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   5. SHARED SECTION LAYOUT
══════════════════════════════════════════════════════════════ */
.section { padding: 88px 0; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}

/* Section Title — gold underline grows from left */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--charcoal);
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: var(--green);
}

.section-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--green);
  transition: color 0.2s, letter-spacing 0.2s;
}
.section-link:hover { color: var(--green-hover); letter-spacing: 0.14em; }

/* ══════════════════════════════════════════════════════════════
   6. CATEGORY GRID — asymmetric editorial layout
══════════════════════════════════════════════════════════════ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 16px;
}

/* First card spans both rows — creates magazine asymmetry */
.category-card:first-child {
  grid-row: span 2;
}

.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease;
}

.category-card:hover img {
  transform: scale(1.07);
  opacity: 0.88;
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 41, 38, 0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background 0.35s ease;
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(45, 41, 38, 0.88) 0%, rgba(45, 41, 38, 0.10) 55%);
}

.category-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

/* "Shop →" text fades in on hover */
.category-card-overlay::after {
  content: 'Shop →';
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.category-card:hover .category-card-overlay::after {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════════════════════════════════
   7. FILTER TABS
══════════════════════════════════════════════════════════════ */
.filter-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }

.filter-tab {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 24px;
  cursor: pointer;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.filter-tab:hover { color: var(--charcoal); }

.filter-tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* ══════════════════════════════════════════════════════════════
   8. PRODUCT GRID & CARDS
══════════════════════════════════════════════════════════════ */
#product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 16px 48px rgba(45, 41, 38, 0.12);
  transform: translateY(-4px);
}

/* Image wrapper — note: JS generates class .product-image-wrap */
.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

/* Badge — JS class: .product-badge */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  text-transform: uppercase;
  z-index: 2;
}

/* Wishlist heart — JS class: .wishlist-btn */
.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  font-size: 17px;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  line-height: 1;
}

.wishlist-btn:hover {
  color: var(--danger);
  transform: scale(1.15);
  background: var(--white);
}

.wishlist-btn.active {
  color: var(--danger);
}

/* Add to cart — JS class: .add-to-cart-btn — slides up from bottom */
.add-to-cart-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  padding: 14px;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.2s ease;
  z-index: 2;
}

.product-card:hover .add-to-cart-btn { transform: translateY(0); }

.add-to-cart-btn:hover {
  background: var(--green);
  color: #fff;
}

/* Product info section */
.product-info {
  padding: 18px 18px 20px;
  border-top: 1px solid var(--border);
}

/* JS class: .product-category-label */
.product-category-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

/* JS class: .product-name */
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}

/* JS class: .product-price */
.product-price {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  color: var(--muted);
  font-size: 15px;
}

/* ══════════════════════════════════════════════════════════════
   9. TRUST BAR — dark charcoal, high-contrast section break
══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--charcoal);
  padding: 56px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  text-align: center;
  padding: 24px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 14px;
}

.trust-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--bg);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.trust-sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   10. NEWSLETTER — espresso "Stay Inspired"
══════════════════════════════════════════════════════════════ */
.newsletter {
  background: var(--espresso);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Giant ghost watermark behind content */
.newsletter::before {
  content: 'Vana';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 240px;
  font-weight: 700;
  color: rgba(196, 150, 58, 0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.04em;
  line-height: 1;
}

.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.newsletter p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid rgba(255,255,255,0.10);
  border-right: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.newsletter-form input:focus { border-color: var(--green); background: rgba(255,255,255,0.10); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }

.newsletter-form button {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
}

.newsletter-form button:disabled { opacity: 0.7; cursor: not-allowed; }

/* ══════════════════════════════════════════════════════════════
   11. FOOTER — near-black, editorial columns
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--footer-bg);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.80;
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 18px;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 11px; }

.footer-col ul a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.2s ease;
}

.footer-col ul a:hover { color: var(--white); }

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 150, 58, 0.08);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.24);
}


/* ══════════════════════════════════════════════════════════════
   12. CART OVERLAY & DRAWER
══════════════════════════════════════════════════════════════ */
/* Overlay — JS adds class "visible" */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 41, 38, 0.55);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.cart-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* Drawer — JS adds class "open" */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -16px 0 48px rgba(45, 41, 38, 0.15);
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}
.cart-close-btn:hover { color: var(--charcoal); transform: rotate(90deg); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 28px 20px;
}

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 64px 0;
  font-size: 14px;
}

/* JS generates .cart-item */
.cart-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #F7F4EF;
  align-items: flex-start;
}

/* JS generates .cart-item-img */
.cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.cart-item-info { flex: 1; min-width: 0; }

/* JS generates .cart-item-name */
.cart-item-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.3;
}

/* JS generates .cart-item-price */
.cart-item-price {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 10px;
}

/* JS generates .cart-item-qty-row */
.cart-item-qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* JS generates .qty-btn */
.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.qty-btn:hover {
  border-color: var(--green);
  background: var(--green-light);
}

/* JS generates .qty-num */
.qty-num {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  min-width: 22px;
  text-align: center;
  color: var(--charcoal);
}

/* JS generates .cart-item-remove */
.cart-item-remove {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.2s ease;
  align-self: flex-start;
  margin-top: 2px;
  flex-shrink: 0;
}
.cart-item-remove:hover { color: var(--danger); }

.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
  background: #FAFAF8;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-subtotal-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-subtotal-value {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
}

.btn-checkout {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.2s ease;
}
.btn-checkout:hover { background: var(--green-hover); }

.cart-continue {
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.cart-continue:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

/* ══════════════════════════════════════════════════════════════
   13. RESPONSIVE
══════════════════════════════════════════════════════════════ */

/* ── Large tablet ── */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-grid > :nth-child(4) {
    grid-column: 2 / 4;
  }
}

/* ── Tablet ── */
@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .category-card:first-child {
    grid-row: span 1;
    grid-column: 1 / -1;
  }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-item:last-child { border-bottom: none; }

  /* Hero — gentler padding step before the 768px break */
  .hero-content { padding: 0 48px 72px; }
  .hero-scroll-hint { right: 48px; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  /* Header */
  .header-nav  { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-nav  { display: block; }
  /* Sub-page flex header: show hamburger when main-nav hides */
  .header-inner.container .mobile-menu-btn { display: flex; }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .header-logo { justify-content: center; }

  /* Hero */
  .hero-content {
    padding: 0 24px 64px;
  }
  .hero-scroll-hint { right: 24px; bottom: 28px; }

  /* Sections */
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .section-header { flex-direction: column; gap: 10px; }

  /* Category grid */
  .categories-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .category-card:first-child {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  /* Product grid — 2 columns */
  #product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Trust — 2 col */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 20px 16px; }

  /* Newsletter */
  .newsletter { padding: 72px 0; }
  .newsletter::before { font-size: 100px; }
  .newsletter-form {
    flex-direction: column;
    box-shadow: none;
  }
  .newsletter-form input {
    border-right: 2px solid var(--border);
    border-bottom: none;
  }
  .newsletter-form input:focus { border-color: var(--gold); }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
  }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Cart */
  .cart-drawer { width: 100vw; }
}

/* ── Small mobile ── */
@media (max-width: 480px) {
  #product-grid { gap: 12px; }
  /* Keep 2-col categories — first card spans both columns */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-card:first-child { grid-column: 1 / -1; grid-row: span 1; }
  .hero-content h1 { font-size: 38px; }
  .filter-tab { padding: 10px 14px; font-size: 11px; }
  /* Footer single column on very small screens */
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-grid > * { grid-column: auto !important; }
}

/* ═══════════════════════════════════════════════════════════════
   Sub-page shared styles (about, shop, contact, checkout)
   Use a simpler flex header layout: logo | nav | actions
═══════════════════════════════════════════════════════════════ */

/* Announcement bar alias */
.announce-bar {
  background: var(--charcoal);
  height: var(--announce-h);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Sub-page header layout — flex row */
.header-inner.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}

/* Logo anchor in sub-pages */
a.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
a.logo img { height: 38px; width: auto; }

/* Main nav (Home | Shop | About | Contact) */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 3px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--green); }

/* Header actions (search, user, wishlist, cart) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* Site footer alias */
.site-footer {
  background: var(--footer-bg);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

/* Footer brand column */
.footer-brand { }

.footer-logo {
  display: block;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.80;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  margin-bottom: 20px;
}

/* Footer socials */
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--green); color: var(--green); }

/* Footer col links (sub-pages use <a> not <li><a>) */
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 11px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

/* Footer bottom links */
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.30);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.60); }

/* Mobile nav for sub-pages — hide at same breakpoint as hamburger */
@media (max-width: 768px) {
  .main-nav { display: none; }
}

/* Direct-link mobile-nav (contact page uses <a> not <li>) */
.mobile-nav > a { border-bottom: 1px solid var(--border); }
.mobile-nav > a:last-child { border-bottom: none; }

@media (max-width: 600px) {
  .header-inner.container { gap: 12px; }
  .header-actions { gap: 2px; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════════════════════════
   Wishlist Drawer + Profile Panel  (account.js)
═══════════════════════════════════════════════════════════════ */

/* Shared overlay */
.acct-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(45,41,38,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.acct-overlay.visible { opacity: 1; pointer-events: all; }

/* Shared drawer shell */
.acct-drawer {
  position: fixed; top: 0; right: 0; z-index: 1101;
  width: 400px; max-width: 100vw; height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,0.12);
}
.acct-drawer.open { transform: translateX(0); }
.acct-drawer-wide { width: 460px; }

/* Header bar */
.acct-drawer-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.acct-drawer-title {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--charcoal); letter-spacing: 0.3px;
}
.acct-close {
  background: none; border: none; cursor: pointer;
  font-size: 16px; color: var(--muted); line-height: 1;
  padding: 4px 6px;
  transition: color 0.2s;
}
.acct-close:hover { color: var(--charcoal); }

/* Scrollable body */
.acct-drawer-body {
  flex: 1; overflow-y: auto;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}

/* ── Empty state ─────────────────────────────────────────────── */
.acct-empty {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 56px 28px 40px;
  color: var(--muted);
}
.acct-empty svg { margin-bottom: 16px; opacity: 0.3; }
.acct-empty-title { font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.acct-empty-sub   { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }

.acct-cta {
  display: inline-block;
  padding: 11px 28px;
  background: var(--green); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; margin-bottom: 12px;
  transition: background 0.2s;
}
.acct-cta:hover { background: var(--green-hover); }

.acct-cta-ghost {
  display: inline-block;
  font-size: 13px; color: var(--charcoal); text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.acct-cta-ghost:hover { border-color: var(--green); color: var(--green); }

/* ── Wishlist items ──────────────────────────────────────────── */
.wl-count {
  padding: 14px 20px 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.wl-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.15s;
}
.wl-item:hover { background: #FAFAF8; }

.wl-img-wrap { flex-shrink: 0; width: 72px; height: 72px; overflow: hidden; background: var(--bg); }
.wl-img      { width: 100%; height: 100%; object-fit: cover; display: block; }

.wl-info { flex: 1; min-width: 0; }
.wl-name { font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 3px;
           white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wl-cat  { font-size: 11px; color: var(--muted); margin-bottom: 6px;
           text-transform: uppercase; letter-spacing: 0.5px; }
.wl-price{ font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }

.wl-cart-btn {
  padding: 7px 14px;
  background: var(--charcoal); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.2s;
}
.wl-cart-btn:hover { background: var(--green); color: #fff; }

.wl-remove {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 12px; color: var(--muted); padding: 4px;
  transition: color 0.2s;
}
.wl-remove:hover { color: var(--danger); }

/* ── Profile Panel ───────────────────────────────────────────── */
.prof-hd {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 20px;
  background: var(--charcoal);
}
.prof-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  flex-shrink: 0;
}
.prof-hd-name  { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.prof-hd-email { font-size: 12px; color: rgba(255,255,255,0.55); }

/* Tabs */
.prof-tabs {
  display: flex; border-bottom: 2px solid var(--border);
  padding: 0 20px; background: var(--white);
}
.prof-tab {
  padding: 13px 16px; background: none; border: none;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.prof-tab.active { color: var(--green); border-bottom-color: var(--green); }
.prof-tab-count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 10px; margin-left: 5px;
}

/* Sections */
.prof-section { display: none; padding: 24px 20px; }
.prof-section.active { display: block; }

.prof-label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 10px;
}
.prof-field-block { margin-bottom: 6px; }

.prof-field-row {
  display: flex; gap: 8px;
}
.prof-field-col { display: flex; flex-direction: column; gap: 8px; }

.prof-input {
  flex: 1; height: 40px; padding: 0 12px;
  border: 1px solid var(--border); background: var(--bg);
  font-family: 'Inter', sans-serif; font-size: 13px; color: var(--charcoal);
  outline: none; transition: border-color 0.2s;
}
.prof-input:focus { border-color: var(--green); background: var(--white); }

.prof-save-btn {
  padding: 0 18px; height: 40px; flex-shrink: 0;
  background: var(--green); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.2s;
  white-space: nowrap;
}
.prof-save-btn:hover { background: var(--green-hover); }

.prof-msg { font-size: 12px; min-height: 18px; margin-top: 8px; }
.prof-msg-ok  { color: var(--success); }
.prof-msg-err { color: var(--danger);  }

/* Password label row — label + forgot link side by side */
.prof-pw-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.prof-pw-label-row .prof-label { margin-bottom: 0; }

/* "Forgot Password?" button-style link */
.prof-forgot-link {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  color: var(--green);
  letter-spacing: 0.3px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.prof-forgot-link:hover { color: var(--green-hover); }

/* Reset mode notice banner */
.prof-forgot-notice {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  background: #FEF9E6;
  border: 1px solid #F5E0A0;
  color: #92680A;
  font-size: 12px;
  font-weight: 500;
  border-radius: 2px;
}
.prof-forgot-notice svg { flex-shrink: 0; stroke: #92680A; }

/* Password action row — update btn + cancel btn */
.prof-pw-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.prof-pw-actions .prof-save-btn { flex: 1; }

/* Cancel reset button */
.prof-cancel-reset {
  padding: 0 14px; height: 40px; flex-shrink: 0;
  background: none;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
  color: var(--muted); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.prof-cancel-reset:hover { border-color: var(--danger); color: var(--danger); }

/* Order list */
.prof-order-list { display: flex; flex-direction: column; gap: 12px; }
.prof-order {
  border: 1px solid var(--border); padding: 14px 16px; background: var(--bg);
}
.prof-order-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.prof-order-id { font-size: 12px; font-weight: 700; font-family: monospace; color: var(--charcoal); }
.prof-order-meta {
  display: flex; gap: 16px; font-size: 12px; color: var(--muted);
  margin-bottom: 6px;
}
.prof-order-total { font-weight: 700; color: var(--charcoal); }
.prof-order-items { font-size: 11px; color: var(--muted); line-height: 1.5; }

.prof-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 20px;
}
.prof-badge-pending    { background: #FEF3C7; color: #92400E; }
.prof-badge-processing { background: #DBEAFE; color: #1E40AF; }
.prof-badge-shipped    { background: #D1FAE5; color: #065F46; }
.prof-badge-delivered  { background: rgba(74,181,119,0.15); color: var(--success); }
.prof-badge-cancelled  { background: #FEE2E2; color: #991B1B; }

/* Sign out */
.prof-signout-row {
  padding: 20px; border-top: 1px solid var(--border);
  margin-top: auto;
}
.prof-signout-btn {
  display: flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--border);
  padding: 10px 18px; width: 100%;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--muted); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.prof-signout-btn:hover { border-color: var(--danger); color: var(--danger); }

@media (max-width: 520px) {
  .acct-drawer       { width: 100vw; }
  .acct-drawer-wide  { width: 100vw; }
  .prof-field-row    { flex-direction: column; }
  .prof-save-btn     { width: 100%; }
  .wl-img-wrap       { width: 60px; height: 60px; }
}

/* ═══════════════════════════════════════════════════════════════
   Vana Interior — New Home Sections
═══════════════════════════════════════════════════════════════ */

/* ── Services Strip ──────────────────────────────────────────── */
.services-strip { background: var(--espresso); padding: 80px 0; }
.services-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.service-item {
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.service-item:last-child { border-right: none; }
.service-item:hover { background: rgba(28,86,46,0.15); }
.service-num {
  font: 700 11px/1 'Inter', sans-serif;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.service-item h3 {
  font: 700 20px/1.2 'Playfair Display', serif;
  color: #fff;
  margin: 0 0 12px;
}
.service-item p {
  font: 400 14px/1.7 'Inter', sans-serif;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ── Portfolio Section ───────────────────────────────────────── */
.portfolio-section { padding: 100px 0 60px; background: var(--cream); overflow: hidden; }
.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.section-eyebrow {
  font: 600 11px/1 'Inter', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
/* Reuse existing .section-title — already correctly themed */
.btn-text-link {
  font: 600 13px/1 'Inter', sans-serif;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--green);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-text-link:hover { opacity: 0.7; }

.portfolio-scroll-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 40px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.portfolio-scroll-track::-webkit-scrollbar { display: none; }

.portfolio-item {
  flex: 0 0 420px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}
.portfolio-item img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.portfolio-item:hover img { transform: scale(1.04); }

.portfolio-item-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(26,20,16,0.85), transparent);
}
.portfolio-cat {
  font: 600 10px/1 'Inter', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.portfolio-item-info h4 {
  font: 600 18px/1.3 'Playfair Display', serif;
  color: #fff;
  margin: 0;
}

/* ── Animated Stats Counter ──────────────────────────────────── */
.stats-section { background: var(--green); padding: 80px 40px; }
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-counter {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-counter:last-child { border-right: none; }
.stat-counter-num {
  font: 700 56px/1 'Playfair Display', serif;
  color: #fff;
}
.stat-counter-suffix {
  font: 700 32px/1 'Playfair Display', serif;
  color: var(--gold);
}
.stat-counter p {
  font: 400 13px/1 'Inter', sans-serif;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-section { background: var(--green-light); padding: 100px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--sand);
  position: relative;
}
.testimonial-card--featured {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-16px);
}
.testimonial-card--featured .testimonial-quote { color: rgba(255,255,255,0.9); }
.testimonial-card--featured .testimonial-name  { color: #fff; }
.testimonial-card--featured .testimonial-role  { color: rgba(255,255,255,0.6); }
.testimonial-quote {
  font: italic 400 18px/1.8 'Playfair Display', serif;
  color: var(--espresso);
  margin: 0 0 28px;
}
.testimonial-quote::before {
  content: '"';
  font-size: 60px;
  line-height: 0.5;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}
.testimonial-name {
  display: block;
  font: 600 14px/1 'Inter', sans-serif;
  color: var(--espresso);
  margin-bottom: 4px;
}
.testimonial-role {
  display: block;
  font: 400 12px/1 'Inter', sans-serif;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── Responsive (new sections) ───────────────────────────────── */
@media (max-width: 1100px) {
  .services-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .service-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .service-item:nth-child(2n) { border-right: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-counter:nth-child(2n) { border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { transform: none; }
}
@media (max-width: 900px) {
  .hero-content { padding: 0 6vw; }
  .hero-stat--1 { bottom: 12%; right: 5%; }
  .hero-stat--2 { bottom: 22%; right: 5%; }
  .portfolio-item { flex: 0 0 320px; }
  .portfolio-item img { height: 440px; }
  .section-header-split { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 600px) {
  .services-strip-inner { grid-template-columns: 1fr; padding: 0 20px; }
  .service-item { padding: 28px 20px; }
  .stats-inner { grid-template-columns: 1fr; gap: 8px; }
  .stat-counter { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-counter:last-child { border-bottom: none; }
  .stat-counter-num { font-size: 44px; }
  .portfolio-section { padding: 64px 0 32px; }
  .portfolio-scroll-track { padding: 0 20px 20px; }
  .portfolio-item { flex: 0 0 80vw; }
  .portfolio-item img { height: 380px; }
  .testimonials-section { padding: 64px 0; }
  .testimonial-card { padding: 28px; }
  .hero-stat { display: none; }
}
