/* ============================================================
   SNACKYAK — GLOBAL DESIGN SYSTEM  v2.0
   style.css · shared by all pages
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Playfair+Display:ital,wght@1,600&display=swap');

/* ─────────────────────────────────────────────
   SNACKYAK · GLOBAL DESIGN TOKENS · v1.0
───────────────────────────────────────────── */
:root {
  /* ── Brand palette ── */
  --chilli:        #B8341C;
  --chilli-deep:   #8E2715;
  --pine:          #2A4035;
  --pine-deep:     #1B2C24;
  --mist-cream:    #F4ECDD;
  --mist-soft:     #FAF6EC;
  --tea-sage:      #5C7768;
  --mustard:       #D9A35F;
  --jaggery:       #8B7355;
  --hairline:      #DDD3BD;

  /* ── Backwards-compat aliases ── */
  --warm-white:    var(--mist-cream);
  --cream:         var(--mist-soft);
  --parchment:     var(--mist-cream);
  --mist:          var(--mist-cream);
  --forest:        var(--pine);
  --moss:          var(--tea-sage);
  --sage:          var(--tea-sage);
  --sage-light:    var(--mist-cream);
  --charcoal:      var(--pine-deep);
  --border:        var(--hairline);
  --shadow:        rgba(42, 64, 53, 0.08);
  --text-dark:     var(--pine);
  --text-mid:      var(--pine);
  --text-light:    var(--tea-sage);
  --bark:          var(--jaggery);
  --gold:          var(--mustard);

  /* WhatsApp green — intentionally unchanged */
  --whatsapp:      #25d366;
  --whatsapp-d:    #128c7e;

  /* ── Typography ── */
  --font-display:  'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:     'Lora', Georgia, 'Times New Roman', serif;
  --font-ui:       'Inter', system-ui, -apple-system, sans-serif;

  /* ── Layout ── */
  --nav-h:       72px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
}

/* ── Base reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  background: var(--mist-cream);
  color: var(--pine);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--pine);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

h1 em, h2 em, h3 em { font-style: italic; color: var(--chilli); }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--chilli); }

img { display: block; max-width: 100%; }

button, input, select, textarea { font-family: var(--font-ui); }

/* ── Comprehensive font overrides ──────────────────────────────
   These cascade into page-specific <style> blocks in all HTML
   files, removing the need to edit each page individually.
   ────────────────────────────────────────────────────────────── */

/* Display font — every heading-like class site-wide */
.section-title,
.product-name,
.product-price,
.nav-name,
.page-hero h1,
.hero-h1,
.ip-card h3,
.trust-block h3,
.makers-quote,
.featured-title,
.article-title,
.story-title,
.maker-name,
.cc-title,
.value-block h3,
.footer-brand .f-logo,
.footer-brand .f-tagline,
.bulk-card h4,
.qb-text,
.pcb-text h3 {
  font-family: var(--font-display) !important;
}

/* UI font — nav, labels, buttons, badges, all interactive chrome */
.nav-center a,
.nav-wa,
.nav-dropdown li a,
.dd-label,
.mm-section,
.mobile-menu a,
.hamburger,
.btn-forest,
.btn-outline,
.btn-whatsapp,
.btn-wa-big,
.btn-wa-green,
.btn-wa-outline,
.btn-read,
.btn-light,
.btn-ghost,
.btn-cc,
.btn-support,
.btn-cc-wa,
.btn-cc-email,
.btn-cc-insta,
.btn-support,
.makers-btn,
.filter-btn,
.newsletter-btn,
.marquee-track,
.product-badge,
.product-weight,
.product-img-label,
.product-origin,
.spice-tag,
.spice-label,
.section-label,
.hero-eyebrow,
.page-hero-eyebrow,
.hero-pills .pill,
.trust-item,
.mission-tag,
.story-meta,
.story-category,
.featured-eyebrow,
.footer-col h4,
.footer-col a,
.footer-bottom p,
.ft-text strong,
.ft-text span,
.article-category,
.article-meta,
.faq-q span,
.faq-toggle,
.cc-sub,
.cc-detail,
.ov-stat-label,
.maker-role,
.vb-num,
.qb-attr,
.featured-meta,
.bulk-list li {
  font-family: var(--font-ui) !important;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-forest,
.btn-primary {
  background: var(--chilli) !important;
  color: var(--mist-cream) !important;
  border: 0.5px solid var(--chilli) !important;
  padding: 14px 32px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-forest:hover,
.btn-primary:hover {
  background: var(--pine) !important;
  border-color: var(--pine) !important;
  color: var(--mist-cream) !important;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--pine);
  border: 0.5px solid var(--pine);
  padding: 14px 32px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-outline:hover {
  background: var(--pine);
  color: var(--mist-cream);
  transform: translateY(-2px);
}

.btn-whatsapp {
  width: 100%; background: var(--whatsapp); color: #fff;
  border: none; padding: 13px 20px; border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s;
}
.btn-whatsapp:hover { background: var(--whatsapp-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

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

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(244,236,221,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  transition: box-shadow 0.3s;
  gap: 16px;
}
nav.scrolled { box-shadow: 0 4px 40px var(--shadow); }

.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo-mark {
  width: 40px; height: 40px;
  background: var(--pine);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.nav-name {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400;
  color: var(--pine); letter-spacing: 0.5px;
}
.nav-name span { color: var(--chilli); }

.nav-center {
  display: flex; gap: 2px; list-style: none;
  align-items: center; flex: 1; justify-content: center;
}
.nav-center > li { position: relative; }
.nav-center > li > a {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-ui);
  font-size: 0.84rem; font-weight: 500; letter-spacing: 0.2px;
  color: var(--tea-sage);
  padding: 8px 13px; border-radius: var(--radius-md);
  transition: all 0.2s;
}
.nav-center > li > a:hover,
.nav-center > li.active > a {
  color: var(--pine); background: rgba(42,64,53,0.07);
}
.chevron { font-size: 0.6rem; transition: transform 0.2s; display: inline-block; }
.nav-center > li:hover .chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--mist-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 230px;
  box-shadow: 0 20px 60px var(--shadow);
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  list-style: none;
}
.nav-center > li:hover .nav-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: flex; align-items: center; gap: 10px;
  color: var(--tea-sage); font-family: var(--font-ui);
  font-size: 0.83rem; font-weight: 400;
  padding: 9px 13px; border-radius: var(--radius-md);
  transition: all 0.15s;
}
.nav-dropdown li a:hover { background: rgba(42,64,53,0.07); color: var(--pine); }
.dd-icon { font-size: 1.1rem; width: 22px; text-align: center; }
.dd-label {
  font-family: var(--font-ui);
  font-size: 0.63rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--tea-sage); font-weight: 600;
  padding: 10px 13px 4px; display: block;
}
.dd-divider { height: 1px; background: var(--hairline); margin: 6px 4px; }

.nav-wa {
  background: var(--whatsapp); color: #fff; border: none;
  padding: 10px 20px; border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; gap: 7px;
  transition: all 0.2s; white-space: nowrap; flex-shrink: 0;
}
.nav-wa:hover { background: var(--whatsapp-d); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--pine); transition: all 0.3s; }

.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--mist-cream);
  border-bottom: 1px solid var(--hairline);
  padding: 16px 5% 24px; z-index: 999;
  flex-direction: column; gap: 2px;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-ui);
  color: var(--tea-sage); font-size: 0.94rem; font-weight: 500;
  padding: 11px 16px; border-radius: var(--radius-md);
  transition: all 0.15s;
}
.mobile-menu a:hover { background: rgba(42,64,53,0.07); color: var(--pine); }
.mm-section {
  font-family: var(--font-ui);
  font-size: 0.62rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--jaggery); font-weight: 600;
  padding: 16px 16px 6px;
}
.mm-wa {
  background: var(--whatsapp) !important; color: #fff !important;
  border-radius: var(--radius-md) !important; margin-top: 10px;
  text-align: center; font-weight: 600 !important;
  padding: 14px 16px !important;
}

/* ── Marquee ── */
.marquee-wrap {
  background: var(--pine); padding: 13px 0;
  overflow: hidden; white-space: nowrap; position: relative; z-index: 1;
}
.marquee-track {
  display: inline-block;
  animation: marquee 32s linear infinite;
  font-family: var(--font-ui);
  font-size: 0.76rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(244,236,221,0.7); font-weight: 500;
}
.marquee-track span { margin: 0 32px; }
.marquee-track .sep { color: var(--tea-sage); opacity: 0.5; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Section utilities ── */
section { position: relative; z-index: 1; }
.section-label {
  font-family: var(--font-ui);
  font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--tea-sage); font-weight: 600;
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: currentColor; flex-shrink: 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400; color: var(--pine);
  line-height: 1.08; margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-sub { font-family: var(--font-body); font-size: 0.95rem; color: var(--tea-sage); font-weight: 400; line-height: 1.75; max-width: 560px; }

/* ── Product cards ── */
.product-card {
  background: var(--mist-soft); border: 1px solid var(--hairline);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1); position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px var(--shadow); border-color: var(--tea-sage); }
.product-img-wrap {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--mist-cream), var(--mist-soft));
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-img-placeholder { font-size: 3.5rem; z-index: 1; transition: transform 0.3s; }
.product-card:hover .product-img-placeholder { transform: scale(1.1); }
.product-img-label { font-family: var(--font-ui); font-size: 0.63rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tea-sage); margin-top: 8px; z-index: 1; }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--pine); color: var(--mist-cream);
  font-family: var(--font-ui);
  font-size: 0.62rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-sm); z-index: 2;
}
.product-badge.new { background: var(--chilli); color: #fff; }
.product-badge.limited { background: var(--jaggery); }
.product-body { padding: 24px 24px 26px; }
.product-origin { font-family: var(--font-ui); font-size: 0.66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tea-sage); font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 5px; }
.product-name { font-family: var(--font-display); font-size: 1.32rem; font-weight: 400; color: var(--pine); line-height: 1.25; margin-bottom: 8px; }
.product-desc { font-family: var(--font-body); font-size: 0.84rem; color: var(--tea-sage); line-height: 1.7; margin-bottom: 16px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.product-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--pine); line-height: 1; }
.product-price .currency { font-size: 1rem; vertical-align: top; margin-top: 4px; display: inline-block; }
.product-price .old { font-family: var(--font-ui); font-size: 0.85rem; color: var(--tea-sage); text-decoration: line-through; font-weight: 400; margin-left: 6px; }
.product-weight { font-family: var(--font-ui); font-size: 0.75rem; color: var(--tea-sage); background: rgba(221,211,189,0.5); padding: 4px 10px; border-radius: var(--radius-sm); font-weight: 500; }
.spice-row { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.spice-tag { font-family: var(--font-ui); font-size: 0.7rem; padding: 3px 9px; border-radius: var(--radius-sm); font-weight: 500; }
.spice-mild { background: #e8f4e8; color: var(--tea-sage); }
.spice-med  { background: #fff3e0; color: #b06000; }
.spice-hot  { background: #fde8e8; color: #c0392b; }
.spice-label { font-family: var(--font-ui); font-size: 0.7rem; color: var(--tea-sage); }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 140px 8% 90px;
  background: linear-gradient(150deg, var(--mist-soft) 0%, var(--mist-cream) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(92,119,104,0.1) 0%, transparent 65%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.6); backdrop-filter: blur(10px);
  border: 1px solid var(--hairline); padding: 6px 14px; border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--tea-sage); margin-bottom: 24px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400; line-height: 1.05; color: var(--pine); margin-bottom: 20px;
  letter-spacing: -1px;
}
.page-hero h1 em { font-style: italic; color: var(--chilli); }
.page-hero p { font-family: var(--font-body); font-size: 1.05rem; color: var(--tea-sage); max-width: 520px; font-weight: 400; line-height: 1.75; }

/* ── Story cards ── */
.story-card {
  background: var(--mist-soft); border: 1px solid var(--hairline);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.35s ease;
}
.story-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px var(--shadow); border-color: var(--jaggery); }
.story-img {
  width: 100%; aspect-ratio: 16/9;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.story-card:hover .story-img img { transform: scale(1.05); }
.story-category {
  position: absolute; top: 14px; left: 14px;
  background: rgba(244,236,221,0.92); backdrop-filter: blur(10px);
  color: var(--pine); font-family: var(--font-ui);
  font-size: 0.63rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-sm); z-index: 2;
}
.story-body { padding: 26px; }
.story-meta { font-family: var(--font-ui); font-size: 0.7rem; color: var(--tea-sage); font-weight: 500; margin-bottom: 12px; }
.story-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--pine); line-height: 1.25; margin-bottom: 10px; }
.story-excerpt { font-family: var(--font-body); font-size: 0.84rem; color: var(--tea-sage); line-height: 1.7; margin-bottom: 20px; }
.story-read {
  font-family: var(--font-ui);
  font-size: 0.8rem; font-weight: 600; color: var(--chilli);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.story-card:hover .story-read { gap: 10px; }

/* ── Footer ── */
footer { background: var(--pine-deep); padding: 80px 6% 32px; }
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .f-logo {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 400; color: var(--mist-cream);
  display: block; margin-bottom: 14px;
}
.footer-brand .f-logo span { color: var(--mustard); }
.footer-brand > p { font-family: var(--font-body); font-size: 0.82rem; color: rgba(244,236,221,0.55); line-height: 1.75; max-width: 255px; font-weight: 400; margin-bottom: 6px; }
.footer-brand .f-tagline { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: rgba(244,236,221,0.5); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.soc-btn {
  width: 38px; height: 38px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: all 0.2s;
}
.soc-btn:hover { background: var(--tea-sage); transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(244,236,221,0.5); font-weight: 600; margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a {
  font-family: var(--font-ui);
  font-size: 0.82rem; color: rgba(244,236,221,0.5); transition: color 0.2s; font-weight: 300;
}
.footer-col a:hover { color: var(--mist-cream); }

.footer-trust {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 40px; margin-bottom: 40px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.ft-item { display: flex; align-items: center; gap: 12px; }
.ft-icon { width: 42px; height: 42px; border-radius: var(--radius-md); background: rgba(92,119,104,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.ft-text strong { font-family: var(--font-ui); display: block; font-size: 0.8rem; color: var(--mist-cream); font-weight: 600; margin-bottom: 2px; }
.ft-text span { font-family: var(--font-ui); font-size: 0.7rem; color: rgba(244,236,221,0.4); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-family: var(--font-ui); font-size: 0.74rem; color: rgba(244,236,221,0.35); }
.footer-bottom a { color: rgba(244,236,221,0.6); }
.footer-bottom a:hover { color: var(--mist-cream); }

/* ── Responsive ── */
@media(max-width:1200px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-top > .footer-col:last-child { display: none; }
}
@media(max-width:1024px) {
  .footer-trust { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width:768px) {
  .nav-center, .nav-wa { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-trust { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .footer-trust { grid-template-columns: 1fr; }
}
