/** Shopify CDN: Minification failed

Line 624:0 Unexpected "}"

**/
/* =====================================================
   BUNA UTOPIA — Shopify Theme CSS (Mobile Fix)
   ===================================================== */

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

:root {
  --cream: #F2F5EE;
  --parchment: #E8EDE0;
  --dark-green: #0D1F0F;
  --deep-green: #162D18;
  --forest: #1E4020;
  --mid-green: #2D5C30;
  --gold: #C9A84C;
  --bright-gold: #E2C06A;
  --light-gold: #F0D898;
  --text-main: #0D1F0F;
  --text-muted: #3D5E40;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-main); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(13,31,15,0.97); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; height: 72px;
  border-bottom: 1px solid rgba(201,168,76,0.15); transition: all 0.3s;
}
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  letter-spacing: 0.05em; text-decoration: none;
  display: flex; align-items: center; gap: 0.3rem;
}
.logo-buna { color: #C9A84C; font-style: italic; }
.logo-utopia { color: var(--cream); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(240,216,152,0.6); text-decoration: none; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover { color: var(--light-gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important; color: var(--dark-green) !important;
  padding: 0.6rem 1.5rem; border-radius: 2px; font-weight: 500 !important;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--bright-gold) !important; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--dark-green);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; position: relative;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 4rem 4rem 5rem; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.8rem); line-height: 1.05;
  color: var(--cream); margin-bottom: 1.8rem;
  animation: fadeUp 0.9s ease 0.35s both;
}
.hero-title em { font-style: italic; color: var(--light-gold); }
.hero-desc {
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
  font-weight: 300; line-height: 1.85;
  color: rgba(240,216,152,0.65); max-width: 420px;
  margin-bottom: 2.5rem; animation: fadeUp 0.9s ease 0.5s both;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; animation: fadeUp 0.9s ease 0.65s both; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--dark-green);
  padding: 1rem 2.4rem; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
  border-radius: 2px; transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--bright-gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-ghost {
  color: rgba(240,216,152,0.6); font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; background: none; border: none;
  font-family: 'DM Sans', sans-serif; padding: 1rem 0;
  text-decoration: none; transition: color 0.3s;
  display: flex; align-items: center; gap: 0.5rem;
}
.btn-ghost:hover { color: var(--light-gold); }
.btn-ghost::after { content: '→'; transition: transform 0.3s; }
.btn-ghost:hover::after { transform: translateX(4px); }

.hero-visual { position: relative; overflow: hidden; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; transition: transform 8s ease; }
.hero-visual:hover img { transform: scale(1.03); }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark-green) 0%, rgba(13,31,15,0.15) 45%, transparent 70%);
}
.hero-stats {
  position: absolute; bottom: 3rem; left: 0;
  display: flex; background: rgba(13,31,15,0.93);
  border: 1px solid rgba(201,168,76,0.25);
  animation: fadeUp 0.9s ease 0.9s both;
}
.hero-stats-mobile { display: none; }
/* ── MARQUEE STRIP ── */
.strip-wrap { background: var(--gold); overflow: hidden; padding: 0.85rem 0; }
.strip-track { display: flex; gap: 0; animation: marquee 30s linear infinite; width: max-content; }
.strip-item {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dark-green); white-space: nowrap; font-weight: 500;
  padding: 0 2.5rem; display: flex; align-items: center; gap: 1rem;
}
.strip-item::before { content: '✦'; font-size: 0.45rem; opacity: 0.5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT ── */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 85vh; }
.about-visual { position: relative; overflow: hidden; background: var(--deep-green); }
.about-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.93; transition: transform 6s ease; }
.about-visual:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform 0.4s;
  filter: drop-shadow(0 6px 24px rgba(201,168,76,0.15));
  z-index: 2;
}
.ethiopia-map-svg { width: 220px; height: 170px; display: block; overflow: visible; }
.badge-text { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.badge-amharic { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: rgba(201,168,76,0.95); line-height: 1; letter-spacing: 0.05em; display: block; }
.badge-sub { font-family: 'DM Sans', sans-serif; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(240,216,152,0.75); display: block; }
.about-badge:hover { transform: translate(-50%,-50%) scale(1.06); filter: drop-shadow(0 8px 32px rgba(201,168,76,0.28)); }
.about-content { background: var(--parchment); padding: 6rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.section-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mid-green); margin-bottom: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1.1; color: var(--deep-green); margin-bottom: 1.5rem; }
.section-title em { font-style: italic; color: var(--mid-green); }
.section-body { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 300; line-height: 1.9; color: var(--text-muted); margin-bottom: 1.5rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.about-feature { border-top: 1px solid rgba(45,92,48,0.2); padding-top: 1rem; }
.about-feature-title { font-weight: 500; font-size: 0.85rem; color: var(--deep-green); margin-bottom: 0.3rem; }
.about-feature-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ── PRODUCTS ── */
.products { background: var(--dark-green); padding: 7rem 5rem; }
.products-header { text-align: center; margin-bottom: 1rem; }
.products-header .section-label { color: var(--gold); }
.products-subhead { text-align: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: rgba(240,216,152,0.45); margin-bottom: 3.5rem; }
.product-filters { display: flex; justify-content: center; gap: 0; margin-bottom: 3rem; border: 1px solid rgba(201,168,76,0.2); }
.filter-btn {
  background: none; border: none; border-right: 1px solid rgba(201,168,76,0.15);
  padding: 0.7rem 1.6rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(240,216,152,0.4); cursor: pointer; transition: all 0.3s;
}
.filter-btn:last-child { border-right: none; }
.filter-btn.active, .filter-btn:hover { background: rgba(201,168,76,0.1); color: var(--light-gold); }
.filter-btn.active { color: var(--gold); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(201,168,76,0.06); }

/* PRODUCT CARD */
.product-card {
  background: var(--deep-green); padding: 0; cursor: pointer;
  transition: all 0.3s; position: relative; overflow: hidden;
  text-decoration: none; display: block;
}
/* FIX: Product image container — ensures images always display */
.product-card-img {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201,168,76,0.22) 0%, rgba(201,168,76,0.06) 35%, transparent 65%),
    radial-gradient(ellipse at 80% 90%, rgba(30,64,32,0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(13,31,15,0.9) 0%, transparent 45%),
    linear-gradient(160deg, #1c3d1e 0%, #132a15 30%, #0d2010 60%, #080f09 100%);
}
/* FIX: Was width:auto which causes 0-width in some browsers */
.product-card-img img {
  width: auto;
  height: 290px;
  max-width: 90%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)) drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: transform 0.4s ease, filter 0.4s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.06) translateY(-4px);
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.8)) drop-shadow(0 4px 14px rgba(201,168,76,0.2));
}
/* Remove old .img-bg div since bg is now on the container */
.product-card-img .img-bg { display: none; }
.product-card-img .img-vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, transparent 45%, rgba(5,12,6,0.7) 100%);
}
.product-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(10,22,11,0.8)); z-index: 4; }
.product-card-body { padding: 1.8rem 2rem 2rem; }
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.4s; z-index: 2;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card-inner-overlay { position: absolute; inset: 0; background: rgba(201,168,76,0.03); opacity: 0; transition: opacity 0.3s; }
.product-card:hover .product-card-inner-overlay { opacity: 1; }
.product-region { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--cream); margin-bottom: 0.4rem; line-height: 1.2; }
.product-process { font-size: 0.72rem; color: rgba(240,216,152,0.3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.product-notes { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.6rem; }
.note-tag { font-size: 0.68rem; padding: 0.25rem 0.65rem; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); color: var(--light-gold); }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); }
.product-weight { font-size: 0.68rem; color: rgba(240,216,152,0.3); margin-left: 0.3rem; }
.product-add { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(240,216,152,0.4); display: flex; align-items: center; gap: 0.4rem; transition: color 0.3s; }
.product-card:hover .product-add { color: var(--gold); }
.product-add::after { content: '→'; transition: transform 0.3s; }
.product-card:hover .product-add::after { transform: translateX(4px); }
.product-card[data-hidden="true"] { display: none; }

/* WHOLESALE CARD */
.wholesale-card {
  background: rgba(201,168,76,0.04); border: 1px solid rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: center;
  text-align: center; flex-direction: column; gap: 1.2rem;
  padding: 3rem 2rem; text-decoration: none; cursor: pointer; transition: all 0.3s;
  min-height: 240px;
}
.wholesale-card:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.25); }
.wholesale-card p { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--light-gold); font-style: italic; line-height: 1.4; }

/* ── PRODUCT DRAWER ── */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(13,31,15,0.7); z-index: 300;
  opacity: 0; pointer-events: none; transition: opacity 0.4s; backdrop-filter: blur(4px);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed; right: 0; top: 0; bottom: 0; width: 460px;
  background: var(--deep-green); z-index: 301;
  transform: translateX(100%); transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto; border-left: 1px solid rgba(201,168,76,0.15);
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; color: rgba(240,216,152,0.4);
  font-size: 1.5rem; cursor: pointer; z-index: 10; line-height: 1; transition: color 0.3s;
}
.drawer-close:hover { color: var(--light-gold); }
.drawer-img {
  width: 100%; max-width: 72%; height: 260px; object-fit: contain; display: block;
  position: relative; z-index: 2;
  filter: drop-shadow(0 12px 36px rgba(0,0,0,0.75)) drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.drawer-img-wrap {
  position: relative; width: 100%; height: 300px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201,168,76,0.22) 0%, rgba(201,168,76,0.06) 38%, transparent 65%),
    radial-gradient(ellipse at 80% 90%, rgba(30,64,32,0.7) 0%, transparent 50%),
    linear-gradient(160deg, #1c3d1e 0%, #132a15 35%, #080f09 100%);
}
.drawer-body { padding: 2.5rem; }
.drawer-region { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.drawer-name { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--cream); margin-bottom: 0.5rem; line-height: 1.15; }
.drawer-process { font-size: 0.72rem; color: rgba(240,216,152,0.35); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.drawer-desc { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 300; line-height: 1.8; color: rgba(240,216,152,0.6); margin-bottom: 1.5rem; }
.drawer-notes { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.drawer-divider { height: 1px; background: rgba(201,168,76,0.12); margin-bottom: 1.8rem; }
.drawer-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.drawer-meta-item { background: rgba(13,31,15,0.5); padding: 1rem; text-align: center; }
.drawer-meta-label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(240,216,152,0.3); display: block; margin-bottom: 0.3rem; }
.drawer-meta-val { font-size: 0.9rem; color: var(--light-gold); font-weight: 500; }
.drawer-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.drawer-price { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); }
.drawer-btn {
  width: 100%; background: var(--gold); color: var(--dark-green); border: none;
  padding: 1.1rem; font-family: 'DM Sans', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: all 0.3s; margin-bottom: 0.8rem;
}
.drawer-btn:hover { background: var(--bright-gold); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.3); }
.drawer-btn-secondary {
  width: 100%; background: none; color: rgba(240,216,152,0.5);
  border: 1px solid rgba(201,168,76,0.2); padding: 0.9rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: all 0.3s;
}
.drawer-btn-secondary:hover { border-color: rgba(201,168,76,0.4); color: var(--light-gold); }

/* ── GALLERY ── */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 300px 300px; gap: 3px; background: var(--dark-green); }
.gallery-item { overflow: hidden; position: relative; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--dark-green); padding: 7rem 5rem; }
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header .section-label { color: var(--gold); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(201,168,76,0.06); }
.testimonial-card { background: var(--deep-green); padding: 2.5rem 2rem; }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.2em; margin-bottom: 1.2rem; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 300; font-style: italic; line-height: 1.8; color: rgba(240,216,152,0.65); margin-bottom: 1.5rem; }
.testimonial-author { font-size: 0.78rem; font-weight: 500; color: var(--cream); }
.testimonial-location { font-size: 0.7rem; color: rgba(240,216,152,0.3); letter-spacing: 0.08em; margin-top: 0.2rem; }

/* ── PROCESS ── */
.process { background: var(--cream); padding: 7rem 5rem; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 3rem; }
.process-step { padding: 2rem; border-right: 1px solid rgba(45,92,48,0.15); }
.process-step:last-child { border-right: none; }
.step-num { font-family: 'Playfair Display', serif; font-size: 3rem; color: rgba(201,168,76,0.75); line-height: 1; margin-bottom: 1rem; }
.step-title { font-weight: 500; font-size: 0.9rem; color: var(--deep-green); margin-bottom: 0.8rem; }
.step-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* ── FOUNDER ── */
.founder { background: var(--parchment); display: grid; grid-template-columns: 1fr 1fr; }
.founder-content { padding: 7rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.65rem); font-weight: 300; font-style: italic;
  line-height: 1.75; color: var(--deep-green); margin-bottom: 2rem;
  padding-left: 2rem; border-left: 2px solid var(--gold);
}
.founder-name { font-weight: 500; font-size: 0.9rem; color: var(--deep-green); }
.founder-title-role { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.1em; }
.founder-visual { position: relative; overflow: hidden; min-height: 500px; }
.founder-visual img { width: 100%; height: 100%; object-fit: cover; }
.founder-visual-overlay { position: absolute; inset: 0; background: rgba(13,31,15,0.18); }
.founder-visual::after {
  content: 'BUNA'; position: absolute;
  font-family: 'Playfair Display', serif; font-size: 9rem;
  color: rgba(201,168,76,0.08); bottom: 2rem; right: -1rem;
  letter-spacing: 0.2em; pointer-events: none;
}

/* ── CTA ── */
.cta-section {
  background: var(--deep-green); padding: 7rem 5rem; text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-label { color: var(--gold); }
.cta-section .section-title { color: var(--cream); margin-bottom: 1rem; }
.cta-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 300; color: rgba(240,216,152,0.5); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.email-form { display: flex; max-width: 480px; margin: 0 auto; border: 1px solid rgba(201,168,76,0.3); transition: border-color 0.3s; }
.email-form:focus-within { border-color: rgba(201,168,76,0.6); }
.email-form input { flex: 1; background: rgba(255,255,255,0.04); border: none; padding: 1rem 1.5rem; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--cream); outline: none; min-width: 0; }
.email-form input::placeholder { color: rgba(240,216,152,0.22); }
.email-form button { background: var(--gold); border: none; padding: 1rem 1.8rem; font-family: 'DM Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; color: var(--dark-green); cursor: pointer; transition: background 0.3s; white-space: nowrap; }
.email-form button:hover { background: var(--bright-gold); }
.cta-note { font-size: 0.7rem; color: rgba(240,216,152,0.2); margin-top: 1rem; letter-spacing: 0.08em; }

/* ── FOOTER ── */
footer { background: var(--dark-green); padding: 4rem 5rem 2rem; border-top: 1px solid rgba(201,168,76,0.1); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(201,168,76,0.08); margin-bottom: 2rem; }
.footer-brand .nav-logo { display: block; margin-bottom: 1rem; font-size: 1.6rem; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-weight: 300; color: rgba(240,216,152,0.3); line-height: 1.7; max-width: 220px; }
.footer-col h4 { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { font-size: 0.8rem; color: rgba(240,216,152,0.3); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--light-gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-copy { font-size: 0.72rem; color: rgba(240,216,152,0.2); }
.footer-detroit { font-size: 0.72rem; color: rgba(240,216,152,0.15); letter-spacing: 0.1em; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--forest); border: 1px solid rgba(201,168,76,0.3);
  color: var(--light-gold); padding: 1rem 1.5rem; font-size: 0.82rem;
  letter-spacing: 0.05em; z-index: 500;
  transform: translateY(80px); opacity: 0;
  transition: all 0.4s; border-radius: 2px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── POPUP ── */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(13,31,15,0.85);
  z-index: 400; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s; backdrop-filter: blur(6px);
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup {
  background: var(--deep-green); border: 1px solid rgba(201,168,76,0.25);
  padding: 3.5rem; max-width: 440px; width: 90%; position: relative; text-align: center;
}
.popup-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; color: rgba(240,216,152,0.3);
  font-size: 1.1rem; cursor: pointer; transition: color 0.3s;
}
.popup-close:hover { color: var(--light-gold); }
.popup-eyebrow { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.popup-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--cream); line-height: 1.15; margin-bottom: 1rem; }
.popup-title em { font-style: italic; color: var(--light-gold); }
.popup-desc { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; color: rgba(240,216,152,0.5); line-height: 1.7; margin-bottom: 2rem; }
.popup-form { display: flex; border: 1px solid rgba(201,168,76,0.25); margin-bottom: 1rem; }
.popup-form input { flex: 1; background: rgba(255,255,255,0.04); border: none; padding: 0.9rem 1.2rem; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--cream); outline: none; min-width: 0; }
.popup-form input::placeholder { color: rgba(240,216,152,0.2); }
.popup-form button { background: var(--gold); border: none; padding: 0.9rem 1.5rem; font-family: 'DM Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; color: var(--dark-green); cursor: pointer; transition: background 0.3s; white-space: nowrap; }
.popup-form button:hover { background: var(--bright-gold); }
.popup-note { font-size: 0.65rem; color: rgba(240,216,152,0.2); letter-spacing: 0.08em; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ===================================================
   RESPONSIVE — TABLET (max 1024px)
   =================================================== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-top: 1px solid rgba(45,92,48,0.15); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ===================================================
   RESPONSIVE — MOBILE (max 768px)
   =================================================== */
@media (max-width: 768px) {
  .hero-stats-desktop { display: none; }
.hero-stats-mobile { display: flex; flex-wrap: wrap; position: static; width: 100%; margin-top: 2rem; animation: none; }
  .hero-stats {
  position: static;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 2rem;
  animation: none;
}
/* NAV */
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }

  /* HERO — stack to single column, show bg image */
  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
    /* Show the hero image as a background behind content on mobile */
    position: relative;
  }
  /* On mobile: show hero visual as a background behind content */
  .hero-visual {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.35;
  }
  .hero-visual img {
    width: 100%; height: 100%; object-fit: cover;
  }
  /* Darken overlay for readability */
  .hero-img-overlay {
    background: linear-gradient(to bottom, rgba(13,31,15,0.5) 0%, rgba(13,31,15,0.85) 100%);
  }
  .hero-content {
    padding: 6rem 1.5rem 2rem;
    position: relative;
    z-index: 2;
    min-height: 100svh;
    justify-content: flex-start;
    padding-top: 7rem;
  }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-desc { font-size: 1.05rem; max-width: 100%; }
  /* Hero stats: relative, scrolls with content */
  .hero-stats {
    position: relative;
    bottom: auto; left: auto;
    margin-top: 2rem;
    flex-wrap: wrap;
    width: 100%;
    animation: none;
  }
  .hero-stat {
  flex: 1 1 80px;
  min-width: 80px;
  padding: 1rem;
  color: #F0D898;
  font-family: 'Playfair Display', serif;
  border-right: 1px solid rgba(201,168,76,0.2);
  text-align: center;
}
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #F0D898; display: block; }
.hero-stat-label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(240,216,152,0.5); display: block; margin-top: 0.2rem; }
  }

  /* ABOUT */
  .about {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-visual { height: 300px; order: -1; }
  .about-content { padding: 3rem 1.5rem; }
  .about-features { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* PRODUCTS */
  .products { padding: 4rem 1.2rem; }
  .products-grid { grid-template-columns: 1fr; }
.product-filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.6rem; margin-bottom: 3rem; border: none;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.65rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240,216,152,0.45); cursor: pointer;
  border-radius: 2px; transition: all 0.25s;
}
.filter-btn:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.4);
  color: var(--light-gold);
}
.filter-btn.active {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.6);
  color: #F0D898;
}
.product-card-img { min-height: 280px; height: auto; padding: 1.5rem 1rem; }
.product-card-img img { width: 80%; height: auto; }

  /* GALLERY */
  /* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 3px;
  background: var(--dark-green);
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }

  /* TESTIMONIALS */
  .testimonials { padding: 4rem 1.2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* PROCESS */
  .process { padding: 4rem 1.2rem; }
  .process-steps {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
  .process-step {
    border-right: none;
    border-bottom: 1px solid rgba(45,92,48,0.15);
    padding: 1.5rem 0;
  }
  .process-step:last-child { border-bottom: none; }

  /* FOUNDER */
  .founder { grid-template-columns: 1fr; }
  .founder-content { padding: 3rem 1.5rem; order: 1; }
  .founder-visual { min-height: 280px; order: 0; }

  /* CTA */
  .cta-section { padding: 4rem 1.5rem; }
  .email-form { flex-direction: column; border: none; gap: 0; }
  .email-form input { border: 1px solid rgba(201,168,76,0.3); padding: 0.9rem 1.2rem; }
  .email-form button { padding: 0.9rem 1.5rem; margin-top: -1px; }

  /* FOOTER */
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }

  /* DRAWER */
  .drawer { width: 100vw; max-width: 460px; }

  /* POPUP */
  .popup { padding: 2.5rem 1.5rem; }
  .popup-title { font-size: 1.8rem; }
}

/* ===================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   =================================================== */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .products-grid { gap: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-stat { padding: 0.8rem 0.6rem; min-width: 60px; }
  .hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #F0D898; display: block; }
}
.hero-stats-desktop {
  position: absolute;
  bottom: 3rem;
  left: 0;
  display: flex;
  background: rgba(13,31,15,0.93);
  border: 1px solid rgba(201,168,76,0.25);
  min-width: 360px;
}.hero-stats-desktop .hero-stat { border-right: 1px solid rgba(201,168,76,0.2); padding: 1.2rem 2rem; min-width: 120px; text-align: center; }
.hero-stats-desktop .hero-stat:last-child { border-right: none; }
.hero-stats-desktop .hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #F0D898; display: block; }
.hero-stats-desktop .hero-stat-label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(240,216,152,0.5); display: block; margin-top: 0.2rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(13,31,15,0.98);
  z-index: 199;
  flex-direction: column;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.mobile-menu a {
  color: rgba(240,216,152,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.mobile-menu-cta {
  margin-top: 0.5rem;
  background: var(--gold);
  color: var(--dark-green) !important;
  text-align: center;
  padding: 1rem !important;
  border: none !important;
  font-weight: 500;
}
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .hamburger { display: flex; }

  /* GALLERY */
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; grid-column: span 2; height: 240px; }
  .gallery-item { height: 170px; }

  /* TESTIMONIALS */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* PROCESS */
  .process-steps { grid-template-columns: 1fr; }
.process-step { border-right: none; border-bottom: 1px solid rgba(45,92,48,0.15); padding: 1.5rem 0; }
.process-step:last-child { border-bottom: none; }
}
@media (min-width: 769px) {
  /* HERO */
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: block; }
  .hero-content { padding: 8rem 4rem 4rem 5rem; }
  .hero-stats-mobile { display: none; }
  .hero-stats-desktop { display: flex; }

  /* ABOUT */
  .about { grid-template-columns: 1fr 1fr; min-height: 85vh; }
  .about-visual { height: auto; order: 0; }
  .about-content { padding: 6rem 5rem; }

  /* PRODUCTS */
  .products { padding: 7rem 5rem; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }

  /* TESTIMONIALS */
  .testimonials { padding: 7rem 5rem; }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  /* PROCESS */
  .process { padding: 7rem 5rem; }
  .process-steps { grid-template-columns: repeat(4, 1fr); }
  .process-step { border-right: 1px solid rgba(45,92,48,0.15); border-bottom: none; padding: 2rem; }

  /* FOUNDER */
  .founder { grid-template-columns: 1fr 1fr; }
  .founder-content { padding: 7rem 5rem; }

  /* FOOTER */
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 1; }
  footer { padding: 4rem 5rem 2rem; }

  /* NAV */
  .hamburger { display: none; }
  .nav-links { display: flex; }
}
/* ── WHOLESALE MODAL ── */
.wholesale-overlay {
  position: fixed; inset: 0; background: rgba(13,31,15,0.85);
  z-index: 400; opacity: 0; pointer-events: none;
  transition: opacity 0.4s; backdrop-filter: blur(6px);
}
.wholesale-overlay.open { opacity: 1; pointer-events: all; }
.wholesale-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%);
  background: var(--deep-green); border: 1px solid rgba(201,168,76,0.25);
  padding: 3rem; width: 90%; max-width: 520px;
  z-index: 401; opacity: 0; pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  max-height: 90vh; overflow-y: auto;
}
.wholesale-modal.open {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%);
}
.wholesale-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; color: rgba(240,216,152,0.3);
  font-size: 1.1rem; cursor: pointer; transition: color 0.3s;
}
.wholesale-close:hover { color: var(--light-gold); }
.wholesale-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.wholesale-title {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  color: var(--cream); line-height: 1.15; margin-bottom: 0.8rem;
}
.wholesale-title em { font-style: italic; color: var(--light-gold); }
.wholesale-desc {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  font-weight: 300; color: rgba(240,216,152,0.45);
  line-height: 1.7; margin-bottom: 1.8rem;
}
.wholesale-field { margin-bottom: 0.8rem; }
.wholesale-field input,
.wholesale-field textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.9rem 1.1rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; color: var(--cream); outline: none;
  transition: border-color 0.3s; resize: none;
}
.wholesale-field input::placeholder,
.wholesale-field textarea::placeholder { color: rgba(240,216,152,0.22); }
.wholesale-field input:focus,
.wholesale-field textarea:focus { border-color: rgba(201,168,76,0.5); }
.wholesale-btn {
  width: 100%; background: var(--gold); color: var(--dark-green);
  border: none; padding: 1.1rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; transition: all 0.3s; margin-top: 0.4rem;
}
.wholesale-btn:hover { background: var(--bright-gold); transform: translateY(-1px); }
.wholesale-note {
  font-size: 0.65rem; color: rgba(240,216,152,0.2);
  letter-spacing: 0.08em; text-align: center; margin-top: 0.8rem;
}
/* SOLD OUT BADGE */
.sold-out-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(13,31,15,0.9); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold) !important; font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; z-index: 10;
  text-decoration: none !important;
}
.product-card--sold-out { opacity: 0.7; }
.product-card--sold-out .product-add { color: rgba(240,216,152,0.25) !important; }
.product-card--sold-out .product-add::after { display: none; }
/* ETHIOPIAN FLAG BADGE */
.hero-et-flag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 26px;
  margin-right: 0.7rem;
  position: relative;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
}
.hero-et-bar {
  display: block;
  width: 100%;
  height: 33.3%;
}
.hero-et-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background: #0066CC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* CONTACT MODAL */
.contact-overlay {
  position: fixed; inset: 0; background: rgba(13,31,15,0.85);
  z-index: 400; opacity: 0; pointer-events: none;
  transition: opacity 0.4s; backdrop-filter: blur(6px);
}
.contact-overlay.open { opacity: 1; pointer-events: all; }
.contact-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%);
  background: var(--deep-green); border: 1px solid rgba(201,168,76,0.25);
  padding: 3rem; width: 90%; max-width: 520px;
  z-index: 401; opacity: 0; pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  max-height: 90vh; overflow-y: auto;
}
.contact-modal.open {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%);
}
/* INFO PANEL */
.info-overlay {
  position: fixed; inset: 0; background: rgba(13,31,15,0.6);
  z-index: 400; opacity: 0; pointer-events: none;
  transition: opacity 0.4s; backdrop-filter: blur(4px);
}
.info-overlay.open { opacity: 1; pointer-events: all; }
.info-panel {
  position: fixed; right: 0; top: 0; bottom: 0; width: 560px; max-width: 95vw;
  background: var(--deep-green); z-index: 401; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  padding: 3rem 3rem 4rem;
}
.info-panel.open { transform: translateX(0); }
.info-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; font-size: 1.1rem;
  color: rgba(240,216,152,0.3); cursor: pointer; transition: color 0.3s;
}
.info-close:hover { color: var(--light-gold); }
.info-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.info-title {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  color: var(--cream); margin-bottom: 2rem; line-height: 1.15;
}
.info-section {
  margin-bottom: 2rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.info-section:last-child { border-bottom: none; }
.info-section h3 {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--light-gold); margin-bottom: 0.6rem; font-weight: 600;
}
.info-section p {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  color: rgba(240,216,152,0.6); line-height: 1.8;
}
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 0.8rem;
}
.info-grid-item {
  display: flex; flex-direction: column; padding: 0.8rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.3);
}
.info-label {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.3rem;
}
.info-val {
  font-family: 'Playfair Display', serif; font-size: 0.9rem;
  color: var(--cream); font-weight: 500;
}
.info-panel h4 { color: var(--light-gold) !important; }
.info-panel .faq-item { 
  padding: 1.5rem 0; 
  border-bottom: 1px solid rgba(201,168,76,0.15); 
  display: block;
}
.info-panel .faq-item:last-child { border-bottom: none; }
.info-panel .faq-item h3 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1rem;
  color: var(--light-gold) !important; 
  margin-bottom: 0.5rem; 
  display: block;
}
.info-panel .faq-item p { 
  font-size: 0.9rem; 
  color: rgba(240,216,152,0.6) !important; 
  line-height: 1.8; 
  display: block;
  margin-bottom: 0;
}
.info-panel .info-method {
  display: block;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.info-panel .info-method:last-child { border-bottom: none; margin-bottom: 0; }
.info-panel .info-method h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light-gold) !important;
  margin-bottom: 0.6rem;
  display: block;
}
.info-panel .info-method p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(240,216,152,0.6) !important;
  line-height: 1.8;
  display: block;
}
@media (max-width: 768px) {
  .product-filters { flex-wrap: wrap; gap: 0.5rem; justify-content: flex-start; }
  .filter-btn { padding: 0.55rem 1rem; font-size: 0.68rem; }
}
/* =====================================================
   BUNA UTOPIA — Mobile UI Refinements
   Premium luxury mobile experience
   Paste at the BOTTOM of theme.css
   ===================================================== */

@media (max-width: 768px) {

  /* ── 1. CONTRAST & READABILITY ── */
  .products {
    background: #0F2411;
  }
  .product-card {
    background: #1A3319;
  }
  .products-grid {
    background: rgba(201,168,76,0.04);
    gap: 3px;
  }

  /* ── 2. PRODUCT IMAGE ── */
  .product-card-img {
    min-height: 320px;
    height: auto;
    padding: 2.5rem 1rem 1.5rem;
    background:
      radial-gradient(ellipse at 50% 40%, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.06) 40%, transparent 68%),
      radial-gradient(ellipse at 50% 85%, rgba(8,15,9,0.9) 0%, transparent 60%),
      linear-gradient(180deg, #1a3319 0%, #0f2010 60%, #080f09 100%);
  }
  .product-card-img img {
    width: 78%;
    height: auto;
    min-height: 240px;
    filter:
      drop-shadow(0 0 28px rgba(201,168,76,0.12))
      drop-shadow(0 16px 32px rgba(0,0,0,0.7))
      drop-shadow(0 4px 8px rgba(0,0,0,0.5));
  }
  .product-card:hover .product-card-img img,
  .product-card:active .product-card-img img {
    transform: scale(1.04) translateY(-3px);
  }

  /* ── 3. SOLD OUT STATE ── */
  .product-card--sold-out .product-add {
    color: rgba(201,168,76,0.55) !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em;
  }
  .product-card--sold-out .product-add::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(201,168,76,0.45);
    margin-right: 6px;
    vertical-align: middle;
  }
  .product-card--sold-out .product-footer {
    border-top: 1px solid rgba(201,168,76,0.1);
    padding-top: 0.8rem;
    margin-top: 0.4rem;
  }

  /* ── 4. TYPOGRAPHY CLARITY ── */
  .product-process {
    font-size: 0.68rem;
    color: rgba(240,216,152,0.45);
    letter-spacing: 0.14em;
  }
  .product-region {
    font-size: 0.64rem;
    color: rgba(201,168,76,0.8);
    letter-spacing: 0.22em;
  }
  .product-name {
    font-size: 1.25rem;
    color: #F2F5EE;
    margin-bottom: 0.5rem;
  }
  .product-price {
    font-size: 1.15rem;
    color: #C9A84C;
  }

  /* ── 5. TAGS ── */
  .note-tag {
    font-size: 0.65rem;
    padding: 0.32rem 0.75rem;
    background: rgba(201,168,76,0.07);
    border: 1px solid rgba(201,168,76,0.28);
    color: rgba(240,216,152,0.7);
    letter-spacing: 0.06em;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
  }

  /* ── 6. SPACING & RHYTHM ── */
  .product-card-body {
    padding: 1.6rem 1.4rem 1.8rem;
  }
  .product-region {
    margin-bottom: 0.5rem;
  }
  .product-name {
    margin-bottom: 0.45rem;
  }
  .product-process {
    margin-bottom: 1.1rem;
  }
  .product-notes {
    margin-bottom: 1.4rem;
    gap: 0.45rem;
  }
  .product-footer {
    padding-top: 0.2rem;
  }

  /* ── 7. HAMBURGER WEIGHT ── */
  .hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--gold);
    border-radius: 1px;
  }
  .hamburger {
    padding: 6px;
    gap: 5.5px;
  }

  /* ── SECTION HEADERS ── */
  .products-header .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
  }
  .products-subhead {
    font-size: 1rem;
    color: rgba(240,216,152,0.4);
    padding: 0 1rem;
  }

  /* ── FILTER PILLS ── */
  .product-filters {
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 0 0.2rem;
  }
  .filter-btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.67rem;
    letter-spacing: 0.14em;
    min-height: 40px;
    border-color: rgba(201,168,76,0.25);
    color: rgba(240,216,152,0.5);
  }
  .filter-btn.active {
    background: rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.55);
    color: #F0D898;
  }

  /* ── SOLD OUT BADGE ── */
  .sold-out-badge {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    padding: 0.3rem 0.7rem;
    background: rgba(13,31,15,0.95);
    border-color: rgba(201,168,76,0.5);
    color: rgba(201,168,76,0.9);
  }

  /* ── DRAWER REFINEMENTS ── */
  .drawer-img {
    max-width: 80%;
    height: 240px;
  }
  .drawer-img-wrap {
    height: 280px;
  }
}