/* ═══════════════════════════════════════════════════
   NUTRI FARMART — Luxury Editorial Design
   Colours: Deep Charcoal · Warm Gold · Ivory · Bronze
   八字：餓金命 — Gold/Earth tones to supplement Metal
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Cinzel:wght@400;600&display=swap');

:root {
  --gold:         #C8A84B;
  --gold-bright:  #E8C870;
  --gold-deep:    #8A6A1A;
  --gold-muted:   #B89640;
  --ivory:        #FBF7EE;
  --cream:        #F4EDD8;
  --parchment:    #E8DCBC;
  --charcoal:     #0C0A06;
  --dark:         #1A1509;
  --mid:          #2E2310;
  --bronze:       #7A5C1E;
  --text:         #1C1408;
  --text-mid:     #5C4A28;
  --text-soft:    #9A8060;
  --border:       #D8C8A0;
  --border-soft:  #EDE0C4;

  --ff-serif:     'DM Serif Display', Georgia, serif;
  --ff-sans:      'DM Sans', sans-serif;
  --ff-caps:      'Cinzel', serif;
  --ease:         cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  background: var(--ivory);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-muted); border-radius: 5px; }

/* ═══════════════════════════════════
   TICKER BAR
═══════════════════════════════════ */
.ticker-bar {
  background: var(--charcoal);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  color: var(--gold);
  font-family: var(--ff-caps);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 0 2rem;
}
.ticker-track span { flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(251,247,238,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.3s var(--ease);
}
.site-nav.scrolled {
  box-shadow: 0 4px 40px rgba(12,10,6,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}

/* Brand */
.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.brand-main {
  font-family: var(--ff-caps);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  color: var(--text);
  font-weight: 600;
}
.brand-ornament {
  color: var(--gold);
  font-size: 0.8rem;
}

/* Center nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.nav-links > li > a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.1rem;
  display: block;
  transition: color 0.2s;
  position: relative;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.1rem; right: 1.1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav-links > li > a:hover { color: var(--gold-deep); }
.nav-links > li > a:hover::after { transform: scaleX(1); }

/* Dropdown */
.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(12,10,6,0.15);
  min-width: 260px;
  padding: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s var(--ease);
  z-index: 100;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.nav-dropdown a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.825rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--gold-deep); }
.nav-dropdown .di { font-size: 1rem; }

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-search {
  display: flex;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: 30px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.15);
}
.nav-search input {
  border: none;
  background: transparent;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  color: var(--text);
  width: 180px;
  outline: none;
}
.nav-search input::placeholder { color: var(--text-soft); }
.nav-search button {
  border: none;
  background: transparent;
  color: var(--text-soft);
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.nav-search button:hover { color: var(--gold-deep); }

/* ★ ADMIN BUTTON — prominently styled */
.admin-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: white;
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
  box-shadow: 0 3px 12px rgba(200,168,75,0.35);
}
.admin-btn:hover {
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,168,75,0.45);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}
.admin-btn i { font-size: 0.9rem; }

/* Hamburger */
.hamburger {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  color: var(--text-mid);
  cursor: pointer;
  font-size: 1rem;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 280px; height: 100vh;
  background: var(--dark);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-inner { padding: 5rem 1.5rem 2rem; }
.drawer-link {
  display: block;
  padding: 0.75rem 0;
  text-decoration: none;
  color: rgba(251,247,238,0.8);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(200,168,75,0.1);
  transition: color 0.2s;
}
.drawer-link:hover { color: var(--gold); }
.drawer-divider { padding: 1.25rem 0 0.5rem; font-family: var(--ff-caps); font-size: 0.65rem; letter-spacing: 0.15em; color: var(--gold); opacity: 0.6; }
.admin-drawer-link { color: var(--gold) !important; margin-top: 0.5rem; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,10,6,0.85) 0%,
    rgba(12,10,6,0.6) 50%,
    rgba(12,10,6,0.2) 100%
  ),
  linear-gradient(to top, rgba(12,10,6,0.6) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; color: white; }
.hero-eyebrow {
  font-family: var(--ff-caps);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-bright);
}
.hero-body {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,168,75,0.3);
}
.hero-stat { text-align: center; }
.hs-num { display: block; font-family: var(--ff-serif); font-size: 1.4rem; color: var(--gold-bright); }
.hs-label { display: block; font-size: 0.7rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); font-family: var(--ff-caps); margin-top: 2px; }
.hero-stat-divider { color: rgba(200,168,75,0.3); font-size: 1.5rem; }
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.4;transform:scaleY(0.6)} }

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--charcoal);
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
  border: none;
  cursor: pointer;
}
.btn-primary-gold:hover {
  background: var(--gold-bright);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,168,75,0.4);
}
.btn-ghost-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 400;
  font-size: 0.9rem;
  border: 1px solid rgba(200,168,75,0.4);
  transition: all 0.25s var(--ease);
}
.btn-ghost-gold:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(200,168,75,0.08);
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold-deep);
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid var(--gold);
  transition: all 0.25s var(--ease);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* ═══════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════ */
.marquee-strip {
  background: var(--charcoal);
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid rgba(200,168,75,0.2);
  border-bottom: 1px solid rgba(200,168,75,0.2);
}
.marquee-inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-family: var(--ff-caps);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(200,168,75,0.7);
}
.marquee-inner span { flex-shrink: 0; }
.marquee-inner .mx { color: rgba(200,168,75,0.35); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════
   SECTION TYPOGRAPHY
═══════════════════════════════════ */
.section-label {
  font-family: var(--ff-caps);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold-muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold-muted);
}
.section-display {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.section-display em { font-style: italic; color: var(--gold-deep); }
.section-rule {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 1.5rem;
}
.section-body {
  color: var(--text-mid);
  line-height: 1.9;
  font-size: 0.97rem;
  margin-bottom: 1rem;
}
.section-header-center { text-align: center; margin-bottom: 3rem; }
.section-header-center .section-label { justify-content: center; }
.section-header-center .section-label::before { display: none; }
.section-header-split { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }

/* ═══════════════════════════════════
   EDITORIAL INTRO
═══════════════════════════════════ */
.editorial-intro { padding: 6rem 0; background: var(--ivory); }
.editorial-img-wrap { position: relative; }
.editorial-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  filter: sepia(8%) contrast(1.05);
}
.editorial-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--charcoal);
  border: 1px solid rgba(200,168,75,0.3);
  padding: 1.25rem 1rem;
  text-align: center;
  min-width: 90px;
}
.eib-top, .eib-bot { display: block; font-family: var(--ff-caps); font-size: 0.6rem; letter-spacing: 0.1em; color: rgba(200,168,75,0.6); }
.eib-num { display: block; font-family: var(--ff-serif); font-size: 1.8rem; color: var(--gold); line-height: 1; margin: 2px 0; }

/* ═══════════════════════════════════
   COLLECTIONS GRID
═══════════════════════════════════ */
.collections { padding: 6rem 0; background: var(--cream); }
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.coll-card { position: relative; overflow: hidden; text-decoration: none; border-radius: 2px; display: block; }
.coll-card--wide { grid-column: span 2; }
.coll-img-wrap { position: absolute; inset: 0; }
.coll-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); filter: sepia(15%) contrast(1.05); }
.coll-card:hover .coll-img { transform: scale(1.07); }
.coll-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,6,0.8) 0%, rgba(12,10,6,0.1) 60%);
  transition: opacity 0.3s;
}
.coll-card:hover .coll-overlay { opacity: 0.95; }
.coll-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  z-index: 2;
}
.coll-icon { font-size: 1.75rem; display: block; margin-bottom: 6px; }
.coll-name { font-family: var(--ff-serif); font-size: 1.3rem; color: white; letter-spacing: -0.01em; margin-bottom: 2px; }
.coll-zh { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-bottom: 0; }
.coll-explore {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--ff-caps);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s var(--ease);
}
.coll-card:hover .coll-explore { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════
   PRODUCTS GRID
═══════════════════════════════════ */
.products-section { padding: 6rem 0; background: var(--ivory); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.prod-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.prod-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(200,168,75,0.2);
  transform: translateY(-4px);
}
.prod-img-wrap { position: relative; height: 220px; overflow: hidden; background: var(--cream); }
.prod-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.prod-card:hover .prod-img { transform: scale(1.06); }
.prod-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,6,0.3) 0%, transparent 50%);
}
.prod-placeholder { height: 220px; display: flex; align-items: center; justify-content: center; font-size: 5rem; background: linear-gradient(135deg, var(--cream), var(--parchment)); }
.prod-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--ff-caps);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 2px;
}
.prod-body { padding: 1.1rem 1.25rem; }
.prod-cat { font-family: var(--ff-caps); font-size: 0.65rem; letter-spacing: 0.1em; color: var(--gold-muted); margin-bottom: 6px; }
.prod-name { font-family: var(--ff-serif); font-size: 1.05rem; color: var(--text); letter-spacing: -0.01em; margin-bottom: 3px; }
.prod-zh { font-size: 0.75rem; color: var(--text-soft); margin-bottom: 10px; }
.prod-price { font-family: var(--ff-serif); font-size: 1.35rem; color: var(--gold-deep); font-weight: 400; }
.prod-price small { font-family: var(--ff-sans); font-size: 0.75rem; color: var(--text-soft); font-weight: 400; margin-left: 2px; }
.prod-price-tba { font-family: var(--ff-sans); font-size: 0.85rem; color: var(--text-soft); }
.prod-qty { font-size: 0.75rem; color: var(--text-soft); margin-top: 4px; }

/* ═══════════════════════════════════
   QUOTE BANNER
═══════════════════════════════════ */
.quote-banner { position: relative; padding: 8rem 0; overflow: hidden; }
.qb-bg { position: absolute; inset: 0; }
.qb-img { width: 100%; height: 100%; object-fit: cover; filter: sepia(20%) brightness(0.4) contrast(1.1); }
.qb-overlay {
  position: absolute; inset: 0;
  background: rgba(12,10,6,0.65);
}
.qb-content { position: relative; z-index: 2; color: white; }
.qb-ornament { font-size: 0.8rem; letter-spacing: 0.5em; color: var(--gold); margin-bottom: 2rem; }
.qb-quote { font-family: var(--ff-serif); font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1.35; letter-spacing: -0.01em; color: white; }
.qb-quote em { color: var(--gold-bright); }

/* ═══════════════════════════════════
   AVAILABLE TODAY
═══════════════════════════════════ */
.available-today { padding: 6rem 0; background: var(--cream); }
.at-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.at-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.25s var(--ease);
}
.at-card:hover { border-color: var(--gold); box-shadow: 0 6px 20px rgba(200,168,75,0.18); transform: translateY(-3px); }
.at-img { width: 100%; height: 120px; object-fit: cover; }
.at-emoji { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, var(--cream), var(--parchment)); }
.at-info { padding: 0.75rem; }
.at-name { font-weight: 500; font-size: 0.8rem; color: var(--text); margin-bottom: 2px; }
.at-zh { font-size: 0.7rem; color: var(--text-soft); margin-bottom: 4px; }
.at-price { font-family: var(--ff-serif); font-size: 1.05rem; color: var(--gold-deep); }
.at-price span { font-family: var(--ff-sans); font-size: 0.7rem; color: var(--text-soft); font-weight: 400; }

/* ═══════════════════════════════════
   VALUES STRIP
═══════════════════════════════════ */
.values-strip { background: var(--charcoal); padding: 4rem 0; }
.values-grid { display: flex; align-items: center; justify-content: center; gap: 0; }
.value-item { text-align: center; padding: 0 3rem; flex: 1; max-width: 220px; }
.value-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.value-item h6 { font-family: var(--ff-caps); font-size: 0.75rem; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.5rem; }
.value-item p { font-size: 0.8rem; color: rgba(251,247,238,0.5); line-height: 1.7; }
.value-sep { color: rgba(200,168,75,0.2); font-size: 1.5rem; flex-shrink: 0; }

/* ═══════════════════════════════════
   PRODUCTS PAGE
═══════════════════════════════════ */
.cat-filter-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 2px;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.cat-filter-link:hover, .cat-filter-link.active {
  background: var(--cream);
  color: var(--gold-deep);
  font-weight: 500;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer { background: var(--cream); }
.footer-wave { line-height: 0; }
.footer-wave svg { display: block; height: 50px; width: 100%; }
.footer-body { background: var(--charcoal); padding: 5rem 0 2rem; }
.footer-logo-text {
  font-family: var(--ff-caps);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-logo-text span { color: rgba(200,168,75,0.5); }
.footer-desc { color: rgba(251,247,238,0.5); font-size: 0.875rem; line-height: 1.8; max-width: 360px; margin-bottom: 1.5rem; }
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}
.footer-wa-btn:hover { background: #20c45c; color: white; transform: translateY(-2px); }
.footer-heading {
  font-family: var(--ff-caps);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,168,75,0.2);
}
.footer-list { list-style: none; padding: 0; }
.footer-list li { margin-bottom: 8px; }
.footer-list li a { color: rgba(251,247,238,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-list li a:hover { color: var(--gold); }
.footer-hours { color: rgba(251,247,238,0.5); font-size: 0.875rem; line-height: 2; margin-bottom: 1rem; font-style: italic; }
.footer-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  text-decoration: none;
  font-family: var(--ff-caps);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  border: 1px solid rgba(200,168,75,0.3);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  transition: all 0.2s;
}
.footer-admin-link:hover { background: rgba(200,168,75,0.1); color: var(--gold-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(200,168,75,0.1);
  font-size: 0.78rem;
  color: rgba(251,247,238,0.3);
  font-family: var(--ff-caps);
  letter-spacing: 0.08em;
}
.footer-ornament { color: rgba(200,168,75,0.4); }

/* ═══════════════════════════════════
   ADMIN LOGIN PAGE OVERRIDE
═══════════════════════════════════ */
.admin-login-wrap {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-sans);
  padding: 2rem;
}

/* Upload zone */
.upload-zone { border: 2px dashed var(--border) !important; background: var(--cream); border-radius: 8px; cursor: pointer; transition: all 0.2s; }
.upload-zone:hover { border-color: var(--gold) !important; background: #FDF6DC; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .coll-card--wide { grid-column: span 2; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .at-grid { grid-template-columns: repeat(4, 1fr); }
  .nav-links { display: none !important; }
}
@media (max-width: 768px) {
  .hero { height: 85vh; padding-bottom: 60px; }
  .hero-stats { gap: 1rem; flex-wrap: wrap; }
  .at-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { flex-direction: column; gap: 2rem; }
  .value-sep { display: none; }
  .nav-search { display: none; }
  .admin-btn span { display: none !important; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 576px) {
  .collections-grid { grid-template-columns: 1fr; }
  .coll-card--wide { grid-column: span 1; }
  .coll-card { min-height: 200px; }
  .at-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .editorial-img-badge { display: none; }
  .hero-actions { flex-direction: column; }
}
