/* ==========================================================================
   TasteLokal — Header & Footer (mobile-first, v1.3)
   Loaded AFTER main.css so it overrides legacy styles.
   ========================================================================== */

/* ---------- Reset legacy header/footer in main.css ---------- */
.site-header, .site-footer, .announcement-bar { all: revert; }

/* ==========================================================================
   ANNOUNCEMENT BAR — scrolling marquee on mobile, static on desktop
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  z-index: 99;
  transition: max-height .25s ease, padding .25s ease, opacity .25s ease;
  max-height: 36px;
  padding: 8px 0;
}
.announcement-bar.collapsed { max-height: 0; padding: 0; opacity: 0; }
.announcement-bar .container { padding: 0; max-width: 100%; }
.ann-track {
  display: flex; gap: 32px;
  white-space: nowrap;
  animation: ann-scroll 28s linear infinite;
  padding-left: 100%;
}
.ann-item { display: inline-flex; align-items: center; gap: 6px; }
@keyframes ann-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ==========================================================================
   STICKY HEADER — mobile-first
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 var(--border), 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.site-header.scrolled .ann-collapsible { display: none; }

/* ===== Direction-aware nav: hide secondary on scroll-down, show on scroll-up ===== */
.secondary-nav,
.site-header > nav.primary-nav { /* desktop inline primary nav */
  transition: max-height .28s cubic-bezier(.4,0,.2,1),
              opacity    .22s ease,
              transform  .28s cubic-bezier(.4,0,.2,1);
  max-height: 60px;
  opacity: 1;
  transform: translateY(0);
  overflow: hidden;
}
.site-header.nav-hidden .secondary-nav,
.site-header.nav-hidden > nav.primary-nav {
  max-height: 0 !important;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

/* Header row — mobile-first: hamburger | logo | actions */
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  min-height: 56px;
  transition: min-height .2s ease, padding .2s ease;
}
.site-header.scrolled .header-row { min-height: 52px; padding: 6px 14px; }

/* Logo */
.header-logo { text-align: center; }
.logo-text {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: 18px; color: var(--navy);
  text-decoration: none; line-height: 1; letter-spacing: -0.01em;
}
.logo-mark { font-size: 22px; line-height: 1; }
.logo-name .accent { color: var(--teal); }

/* Hamburger button */
.menu-toggle {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--navy);
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  transition: all .15s;
}
.menu-toggle:hover, .menu-toggle:focus-visible { background: var(--navy); color: #fff; border-color: var(--navy); outline: none; }

/* Header search — hidden on mobile, inline on desktop */
.header-search { display: none; }

/* Header actions */
.header-actions {
  display: flex; align-items: center; gap: 4px;
}
.header-action, .search-toggle {
  background: transparent;
  border: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--navy);
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: background .15s;
}
.header-action:hover, .search-toggle:hover { background: var(--bg-soft); }
.header-action .action-text { display: none; }
.header-cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  padding: 0 5px;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
  border: 2px solid #fff;
}

/* ==========================================================================
   MOBILE SEARCH DRAWER
   ========================================================================== */
.mobile-search {
  display: none;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 10px 0;
}
.mobile-search.open { display: block; }
.mobile-search .search-form {
  display: flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1.5px solid var(--teal);
  border-radius: 10px;
  padding: 8px 12px;
}
.mobile-search .search-field {
  flex: 1; border: 0; outline: none; font-size: 14px;
  background: transparent;
}
.mobile-search .s-icon { color: var(--text-muted); flex: 0 0 18px; }
.mobile-search .search-close {
  background: transparent; border: 0; color: var(--text-muted); font-size: 18px;
  cursor: pointer; padding: 4px 8px;
}

/* ==========================================================================
   SECONDARY NAV — chips, horizontal scroll
   ========================================================================== */
.secondary-nav {
  background: #fff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.secondary-nav::after {
  content: ''; position: absolute; top: 0; right: 0; width: 30px; height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0), #fff);
  pointer-events: none;
}
.secondary-nav .container { padding-right: 0; }
.secondary-menu {
  display: flex;
  gap: 8px;
  padding: 10px 14px 10px 14px;
  margin: 0; list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.secondary-menu::-webkit-scrollbar { display: none; }
.secondary-menu li { flex: 0 0 auto; }
.secondary-menu a {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all .15s;
}
.secondary-menu a:hover, .secondary-menu li.current a {
  background: var(--teal); border-color: var(--teal); color: #fff;
}
.chip-emoji { font-size: 15px; }

/* ==========================================================================
   MOBILE DRAWER (primary nav)
   ========================================================================== */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  backdrop-filter: blur(2px);
}
.mobile-overlay.open { display: block; }

.primary-nav {
  position: fixed;
  top: 0; left: -100%;
  width: 86%;
  max-width: 340px;
  height: 100dvh;
  background: #fff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: left .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 4px 0 24px rgba(0,0,0,0.18);
}
.primary-nav.open { left: 0; }

.drawer-head {
  padding: 14px 18px;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  flex: 0 0 auto;
}
.drawer-title {
  font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.drawer-title .logo-mark { color: #ffd54a; }
.drawer-close {
  background: rgba(255,255,255,0.1); border: 0; color: #fff;
  width: 32px; height: 32px; border-radius: 8px;
  cursor: pointer; font-size: 16px;
}
.drawer-body { flex: 1; overflow-y: auto; padding: 0 0 20px; }

.primary-menu {
  list-style: none; padding: 8px 0; margin: 0;
}
.primary-menu > li { border-bottom: 1px solid var(--border-light); }
.primary-menu > li:last-child { border-bottom: 0; }
.primary-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px;
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: background .12s;
}
.primary-menu a:hover { background: var(--bg-soft); color: var(--teal); }
.menu-emoji { font-size: 18px; line-height: 1; }
.caret { margin-left: auto; color: var(--text-muted); font-size: 12px; }

.primary-menu .dropdown-menu {
  list-style: none; padding: 0 0 8px; margin: 0;
  background: var(--bg-soft);
}
.primary-menu .dropdown-menu a {
  padding: 10px 18px 10px 48px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}
.primary-menu .dropdown-menu a:hover { color: var(--teal); }

.drawer-cta { padding: 16px 18px 8px; display: flex; flex-direction: column; gap: 8px; }
.btn-block { display: block; width: 100%; text-align: center; }
.drawer-foot {
  padding: 12px 18px;
  border-top: 1px solid var(--border-light);
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

/* Hide stale .primary-menu hover dropdown on mobile — drawer always vertical */
@media (max-width: 1023.98px) {
  .primary-menu .dropdown-menu { display: block !important; position: static; box-shadow: none; }
}

/* ==========================================================================
   FOOTER — mobile-first
   ========================================================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.78);
  margin-top: 40px;
}

/* Newsletter banner */
.footer-newsletter {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-light) 100%);
  padding: 28px 0;
  color: #fff;
}
.footer-newsletter .container {
  display: grid; gap: 16px;
  text-align: center;
}
.footer-newsletter h3 { color: #fff; font-size: 20px; margin: 0 0 4px; font-weight: 700; }
.footer-newsletter p { margin: 0; color: rgba(255,255,255,0.9); font-size: 13px; }
.fn-form {
  display: flex; flex-direction: column; gap: 8px;
  max-width: 420px; margin: 0 auto; width: 100%;
}
.fn-form input {
  padding: 12px 14px; border: 0; border-radius: 10px; font-size: 14px; outline: none;
  background: #fff;
}
.fn-form button {
  padding: 12px 18px; background: var(--orange); color: #fff;
  border: 0; border-radius: 10px; font-weight: 700; cursor: pointer; font-size: 14px;
  transition: background .15s;
}
.fn-form button:hover { background: var(--orange-dark); }

/* Main grid */
.footer-main { padding: 30px 0 10px; }
.footer-grid {
  display: grid; gap: 4px;
  grid-template-columns: 1fr;
}

.footer-col {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col[open] { padding-bottom: 14px; }

/* Brand column (always expanded) */
.footer-brand {
  padding: 8px 0 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 800; font-size: 22px;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.footer-logo .accent { color: var(--teal-light); }
.footer-tag {
  margin: 0 0 10px; color: var(--orange); font-weight: 600; font-size: 14px;
}
.footer-desc {
  font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.6);
  margin: 0 0 14px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background .15s, transform .15s;
}
.footer-social a:hover { background: var(--teal); transform: translateY(-2px); }

/* Accordion sections (mobile) */
.footer-col[open] .footer-widget-title::after { transform: rotate(180deg); }
.footer-widget-title {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
  user-select: none;
}
.footer-widget-title::-webkit-details-marker { display: none; }
.footer-widget-title::after {
  content: '▾';
  color: var(--teal-light);
  font-size: 14px;
  transition: transform .2s;
}

.footer-links, .footer-contact {
  list-style: none; padding: 0; margin: 0 0 0 2px;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .15s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--teal-light); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.75);
}
.ct-icon { flex: 0 0 18px; font-size: 14px; line-height: 1.3; }

.tag {
  font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.5px; margin-left: 4px;
}
.tag.live { background: var(--green); color: #fff; }
.tag.soon { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.65); }

/* Payments strip — redesigned v1.9 */
.footer-payments {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.35) 100%);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.payments-container {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

/* ---- Trust badges (left side) ---- */
.trust-badges {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.tb-item {
  display: flex; align-items: center; gap: 12px;
}
.tb-item > svg {
  flex: 0 0 22px;
  color: var(--teal-light);
  padding: 9px;
  background: rgba(13, 148, 136, 0.15);
  border-radius: 10px;
  width: 40px; height: 40px;
  box-sizing: content-box;
}
.tb-item div { display: flex; flex-direction: column; gap: 1px; }
.tb-item strong {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.tb-item span {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
}

/* ---- Payment methods (right side) ---- */
.payment-methods {
  display: flex; flex-direction: column; gap: 10px;
}
.pm-label {
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.pm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

/* Base payment card */
.pm-card {
  position: relative;
  height: 32px;
  background: #fff;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 2px 8px rgba(0,0,0,0.25);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.pm-card .pm-text {
  position: relative; z-index: 1;
}

/* VISA */
.pm-card.pm-visa {
  background: linear-gradient(135deg, #1a1f71 0%, #2e3aa3 100%);
}
.pm-card.pm-visa .pm-text {
  color: #fff;
  font-style: italic;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

/* Mastercard — interlocking circles */
.pm-card.pm-mc {
  background: #fff;
}
.pm-card.pm-mc .pm-circle {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
}
.pm-card.pm-mc .pm-mc-1 { background: #eb001b; left: calc(50% - 14px); }
.pm-card.pm-mc .pm-mc-2 { background: #f79e1b; right: calc(50% - 14px); opacity: 0.92; mix-blend-mode: multiply; }

/* RuPay */
.pm-card.pm-rupay {
  background: linear-gradient(135deg, #0c4b8a 0%, #097e3e 100%);
}
.pm-card.pm-rupay .pm-text {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.pm-card.pm-rupay .pm-text b { color: #f4b400; font-weight: 800; }

/* UPI */
.pm-card.pm-upi {
  background: linear-gradient(135deg, #ff9933 0%, #138808 100%);
}
.pm-card.pm-upi .pm-text {
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Paytm */
.pm-card.pm-paytm {
  background: linear-gradient(135deg, #00baf2 0%, #002970 100%);
}
.pm-card.pm-paytm .pm-text {
  color: #fff;
  font-weight: 700;
  font-size: 11px;
}

/* PhonePe */
.pm-card.pm-phonepe {
  background: linear-gradient(135deg, #5f259f 0%, #3a1a6b 100%);
}
.pm-card.pm-phonepe .pm-text {
  color: #fff;
  font-weight: 700;
  font-size: 10px;
}

/* GPay */
.pm-card.pm-gpay {
  background: #fff;
}
.pm-card.pm-gpay .pm-text {
  background: linear-gradient(90deg, #4285f4 0%, #ea4335 33%, #fbbc04 66%, #34a853 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 11px;
}

/* COD */
.pm-card.pm-cod {
  background: linear-gradient(135deg, #1f2937 0%, #0f172a 100%);
}
.pm-card.pm-cod .pm-text {
  color: #fbbf24;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.5px;
}

/* ≥ 640px: split layout */
@media (min-width: 640px) {
  .payments-container {
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
  }
  .trust-badges {
    grid-template-columns: 1fr;
    border-bottom: 0;
    border-right: 1px dashed rgba(255,255,255,0.12);
    padding-bottom: 0;
    padding-right: 28px;
  }
  .pm-grid { grid-template-columns: repeat(4, 1fr); max-width: 380px; }
}

/* ≥ 768px: trust badges in 3 cols, payments 8 in row */
@media (min-width: 768px) {
  .trust-badges {
    grid-template-columns: repeat(3, auto);
    gap: 18px;
    border-right: 0;
    padding-right: 0;
  }
  .tb-item { gap: 10px; }
  .payments-container { grid-template-columns: 1fr; gap: 22px; }
  .payment-methods { align-items: center; }
  .pm-grid { grid-template-columns: repeat(8, 1fr); max-width: 720px; gap: 8px; }
  .pm-card { height: 36px; font-size: 12px; }
  .pm-card.pm-visa .pm-text { font-size: 13px; }
  .pm-card.pm-rupay .pm-text { font-size: 12px; }
  .pm-card.pm-upi .pm-text { font-size: 13px; }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .footer-payments { padding: 28px 0; }
  .payments-container { grid-template-columns: auto 1fr; gap: 40px; }
  .trust-badges { grid-template-columns: repeat(3, auto); }
  .pm-grid { max-width: 100%; }
}

/* Bottom bar */
.footer-bottom { padding: 14px 0; }
.footer-bottom-row {
  display: flex; flex-direction: column; gap: 8px;
  text-align: center; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.55);
}
.footer-bottom-row p { margin: 0; }
.footer-bottom-row strong { color: #fff; }
.made-in { color: var(--teal-light); }
.bottom-links {
  display: flex; gap: 14px; list-style: none; padding: 0; margin: 0;
}
.bottom-links a {
  color: rgba(255,255,255,0.55); text-decoration: none; font-size: 11px;
}
.bottom-links a:hover { color: var(--teal-light); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 998;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(37, 211, 102, 0.55); }

/* ==========================================================================
   ≥ 640px (large mobile / tablet portrait)
   ========================================================================== */
@media (min-width: 640px) {
  .footer-newsletter .container {
    grid-template-columns: 1fr auto;
    text-align: left;
    align-items: center;
    gap: 20px;
  }
  .fn-form { flex-direction: row; max-width: 460px; margin: 0; }
  .fn-form input { flex: 1; min-width: 0; }
  .fn-form button { flex: 0 0 auto; }

  .footer-payments .container {
    flex-direction: row; justify-content: space-between; text-align: left;
  }

  .footer-bottom-row {
    flex-direction: row; justify-content: space-between; text-align: left;
    font-size: 12px;
  }
}

/* ==========================================================================
   ≥ 768px (tablet)
   ========================================================================== */
@media (min-width: 768px) {
  .header-row { padding: 12px 18px; gap: 16px; min-height: 64px; }
  .logo-text { font-size: 20px; }
  .logo-mark { font-size: 24px; }
  .header-action .action-text { display: block; font-size: 10px; margin-top: 2px; }
  .header-action { width: 48px; height: 44px; }
  .header-cart-count { top: 0; right: 0; }

  /* Footer grid: 2 columns */
  .footer-grid { grid-template-columns: 1.4fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; padding-bottom: 8px; }
}

/* ==========================================================================
   ≥ 1024px (desktop)
   ========================================================================== */
@media (min-width: 1024px) {
  /* Header: hamburger HIDDEN on desktop, full search bar visible */
  .menu-toggle { display: none; }
  .search-toggle { display: none; }
  .header-row {
    grid-template-columns: auto minmax(0,1fr) auto;
    padding: 14px 20px;
    min-height: 72px;
    gap: 24px;
  }
  .site-header.scrolled .header-row { min-height: 60px; padding: 8px 20px; }

  .header-logo { text-align: left; }
  .logo-text { font-size: 22px; }
  .logo-mark { font-size: 26px; }

  /* Show search bar inline */
  .header-search { display: block; max-width: 560px; }
  .header-search .search-form {
    display: flex; align-items: center;
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 4px 4px 4px 16px;
    transition: border-color .15s, background .15s;
  }
  .header-search .search-form:focus-within {
    border-color: var(--teal); background: #fff;
  }
  .header-search .s-icon { color: var(--text-muted); flex: 0 0 18px; }
  .header-search .search-field {
    flex: 1; padding: 10px 12px; border: 0; background: transparent; outline: none; font-size: 14px;
  }
  .header-search .search-button {
    background: var(--teal); color: #fff; border: 0; padding: 8px 18px;
    border-radius: 999px; font-weight: 600; font-size: 13px; cursor: pointer;
    transition: background .15s;
  }
  .header-search .search-button:hover { background: var(--teal-dark); }

  .header-action { width: auto; padding: 8px 12px; height: auto; flex-direction: row; gap: 8px; }
  .header-action .action-text { display: inline; font-size: 13px; font-weight: 500; margin-top: 0; }

  /* Primary nav: convert drawer to inline bar */
  .mobile-overlay { display: none !important; }
  .primary-nav {
    position: static;
    width: 100%; max-width: 100%;
    height: auto; left: 0;
    background: var(--navy);
    box-shadow: none;
    border-top: 1px solid var(--border-light);
  }
  .drawer-head, .drawer-cta, .drawer-foot { display: none; }
  .drawer-body { padding: 0; overflow: visible; }
  .primary-menu {
    display: flex; align-items: center; justify-content: flex-start;
    flex-wrap: wrap; padding: 0;
    max-width: var(--container); margin: 0 auto;
    gap: 0;
  }
  .primary-menu > li { border-bottom: 0; position: relative; }
  .primary-menu a {
    padding: 14px 18px; color: #fff; font-size: 14px;
  }
  .primary-menu a:hover { background: var(--navy-light); color: #fff; }
  .menu-emoji { font-size: 16px; }

  .primary-menu .has-dropdown:hover > .dropdown-menu { display: block; }
  .primary-menu .dropdown-menu {
    display: none;
    position: absolute; top: 100%; left: 0;
    background: #fff; min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 0 0 12px 12px;
    padding: 8px;
    z-index: 50;
  }
  .primary-menu .dropdown-menu a {
    color: var(--navy); padding: 10px 14px; font-size: 13px;
  }
  .primary-menu .dropdown-menu a:hover { background: var(--bg-soft); color: var(--teal); }

  /* Secondary nav — wrap nicely, no scroll needed */
  .secondary-menu { padding: 10px 0; flex-wrap: wrap; overflow-x: visible; }
  .secondary-nav::after { display: none; }

  /* Footer grid: 5 columns */
  .footer-main { padding: 50px 0 20px; }
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1; padding: 0; border-bottom: 0; }
  .footer-col {
    border-bottom: 0;
    padding: 0;
  }
  .footer-col[open], .footer-col:not([open]) { padding: 0; }
  /* Disable accordion behavior on desktop */
  .footer-col details, .footer-col {
    /* keep all content visible */
  }
  .footer-widget-title { cursor: default; padding: 0 0 14px; font-size: 13px; }
  .footer-widget-title::after { display: none; }
  /* Force open on desktop */
  details.footer-col { display: block; }
  details.footer-col > *:not(summary) { display: block !important; }
}

/* ==========================================================================
   ≥ 1280px (large desktop)
   ========================================================================== */
@media (min-width: 1280px) {
  .header-row { padding: 16px 28px; }
  .footer-main { padding: 64px 0 24px; }
}

/* ==========================================================================
   v1.4 — Emoji-free overrides
   ========================================================================== */

/* Announcement bar dots */
.ann-dot { color: rgba(255,255,255,0.4); font-weight: 700; }

/* Trust strip — SVG icons in teal circle */
.trust-svg {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--teal-bg);
  color: var(--teal-dark);
  border-radius: 12px;
  flex: 0 0 44px;
}

/* Why cards — SVG icons */
.why-svg {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--teal-bg);
  color: var(--teal-dark);
  border-radius: 14px;
  margin: 0 auto 14px;
}

/* State cards — 2-letter code instead of emoji */
.state-code {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.state-card.active .state-code { background: var(--teal); }

/* Partner cards — name + location only, no emoji */
.partner-card {
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left;
  gap: 2px !important;
  min-width: 200px !important;
}
.partner-card .partner-name { font-size: 14px; font-weight: 700; color: var(--navy); display: block; }
.partner-card .partner-loc { font-size: 11px; color: var(--text-muted); font-weight: 400; }
.partner-icon { display: none !important; }

/* Banner — remove emoji-only visual block */
.banner-card { grid-template-columns: 1fr !important; padding: 36px 32px !important; }
.banner-visual { display: none; }

/* Category cards — text-led, no emoji */
.cat-icon { display: none !important; }
.cat-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  text-align: left;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 100px;
  transition: all .15s;
}
.cat-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.08);
}
.cat-card .cat-name { font-weight: 700; font-size: 16px; color: var(--navy); }
.cat-card .cat-count { color: var(--teal); font-size: 12px; font-weight: 600; margin-top: 8px; }

/* Hero — slimmer subtitle, no emoji shortcuts */
.hero-shortcuts .shortcut {
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 14px;
  font-size: 13px;
  color: var(--navy);
  border-radius: 999px;
  transition: all .15s;
  text-decoration: none;
}
.hero-shortcuts .shortcut:hover { border-color: var(--teal); color: var(--teal); }

/* Free delivery banner — no emoji */
.free-delivery-banner { background: var(--teal-bg); color: var(--teal-dark); border: 1px dashed var(--teal); }
.free-delivery-banner.success { background: #dcfce7; color: #065f46; border-color: var(--green); }

/* Footer contact icons — SVG */
.ct-svg { color: var(--teal-light); flex: 0 0 16px; margin-top: 2px; }

/* ==========================================================================
   v2.3 — DRAWER (hamburger menu) — premium redesign
   ========================================================================== */

/* Override original drawer styles */
.primary-nav.drawer {
  background: #fff;
  width: 88%;
  max-width: 360px;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 4px 0 30px rgba(0,0,0,0.18);
}

/* === HEAD with gradient === */
.drawer .drawer-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--teal-dark) 100%);
  padding: 18px 18px;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
}
.drawer .drawer-head::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.drawer-brand {
  display: flex; align-items: center; gap: 12px;
  position: relative; z-index: 1;
}
.drawer-mark {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.drawer-brand-text { display: flex; flex-direction: column; gap: 1px; }
.drawer-title {
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.drawer-sub {
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.drawer-close {
  background: rgba(255,255,255,0.15);
  border: 0;
  color: #fff;
  width: 34px; height: 34px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  transition: background .15s;
}
.drawer-close:hover { background: rgba(255,255,255,0.25); }

/* === SEARCH === */
.drawer-search {
  padding: 12px 18px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-light);
  flex: 0 0 auto;
}
.drawer-search form {
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 9px 14px;
  transition: border-color .15s;
}
.drawer-search form:focus-within { border-color: var(--teal); }
.drawer-search svg { color: var(--text-muted); flex: 0 0 18px; }
.drawer-search input {
  flex: 1; border: 0; outline: none; font-size: 14px;
  background: transparent; min-width: 0; font-family: inherit;
}

/* === BODY === */
.drawer .drawer-body {
  flex: 1; overflow-y: auto;
  padding: 14px 14px 24px;
  display: flex; flex-direction: column; gap: 14px;
  -webkit-overflow-scrolling: touch;
}

/* Account card */
.dr-account {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #fef3c7 0%, var(--teal-bg) 100%);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 14px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--navy);
  transition: transform .15s, box-shadow .15s;
}
.dr-account:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(13, 148, 136, 0.25);
  color: var(--navy);
}
.dr-account-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dr-account-text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.dr-account-text strong { font-size: 14px; font-weight: 800; }
.dr-account-text span { font-size: 11px; color: var(--text-muted); }
.dr-account-arrow { color: var(--text-muted); flex-shrink: 0; }

/* Section */
.dr-section {
  display: flex; flex-direction: column; gap: 2px;
}
.dr-section-head {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin: 0 0 4px 8px;
}

/* Menu list */
.dr-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.dr-menu > li {}
.dr-menu a, .dr-sub-toggle {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: 10px;
  transition: background .12s, color .12s;
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}
.dr-menu a:hover, .dr-sub-toggle:hover {
  background: var(--bg-soft);
  color: var(--teal);
}
.dr-i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--bg-soft);
  color: var(--text-muted);
  border-radius: 9px;
  flex-shrink: 0;
  transition: all .12s;
}
.dr-menu a:hover .dr-i, .dr-sub-toggle:hover .dr-i {
  background: var(--teal-bg);
  color: var(--teal);
}

/* Tags */
.dr-tag {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.dr-tag-soft { background: var(--bg-light); color: var(--text-muted); }
.dr-tag-orange { background: rgba(245, 126, 28, 0.12); color: var(--orange-dark); }

/* Submenu (accordion) */
.dr-has-sub { display: flex; flex-direction: column; }
.dr-sub-toggle .dr-chev {
  margin-left: auto;
  transition: transform .25s ease;
  color: var(--text-muted);
}
.dr-has-sub.open .dr-sub-toggle .dr-chev { transform: rotate(180deg); }
.dr-submenu {
  list-style: none;
  padding: 4px 0 4px 50px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; gap: 1px;
}
.dr-has-sub.open .dr-submenu { max-height: 320px; }
.dr-submenu a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-muted);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  transition: all .12s;
}
.dr-submenu a:hover {
  background: var(--bg-soft);
  color: var(--teal);
  padding-left: 16px;
}

/* WhatsApp CTA */
.dr-wa-cta {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 14px;
  margin-top: 4px;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: transform .15s, box-shadow .15s;
}
.dr-wa-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45); color: #fff; }
.dr-wa-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dr-wa-cta div { display: flex; flex-direction: column; gap: 1px; }
.dr-wa-cta strong { font-size: 14px; font-weight: 800; }
.dr-wa-cta span { font-size: 11px; opacity: 0.9; font-weight: 500; }

/* Trust strip */
.dr-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.dr-tr-item {
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.2px;
  display: flex; align-items: center; justify-content: center; gap: 3px;
}
.dr-tr-item span {
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
}

/* Staggered entrance animation */
.primary-nav.drawer.open .dr-account,
.primary-nav.drawer.open .dr-section,
.primary-nav.drawer.open .dr-wa-cta,
.primary-nav.drawer.open .dr-trust {
  animation: drawer-in .35s cubic-bezier(.4,0,.2,1) backwards;
}
.primary-nav.drawer.open .dr-account { animation-delay: 0.05s; }
.primary-nav.drawer.open .dr-section:nth-of-type(1) { animation-delay: 0.10s; }
.primary-nav.drawer.open .dr-section:nth-of-type(2) { animation-delay: 0.14s; }
.primary-nav.drawer.open .dr-section:nth-of-type(3) { animation-delay: 0.18s; }
.primary-nav.drawer.open .dr-wa-cta { animation-delay: 0.22s; }
.primary-nav.drawer.open .dr-trust { animation-delay: 0.26s; }

@keyframes drawer-in {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Hide legacy elements that aren't used */
.primary-nav.drawer .drawer-cta,
.primary-nav.drawer .drawer-foot { display: none !important; }

/* On desktop: drawer body returns to inline-menu mode (existing rules already handle this) */

/* ==========================================================================
   v1.6 — Compact "Shop by State"
   ========================================================================== */

/* Replace original states-grid with new compact layout */
.shop-by-state .states-grid { display: none; }

.states-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

/* BIHAR — featured card (mobile-first) */
.state-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--teal-dark) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 18px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px -10px rgba(13, 33, 73, 0.35);
  transition: transform .2s, box-shadow .2s;
}
.state-feature:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(13, 33, 73, 0.45); color: #fff; }
.state-feature::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.sf-side {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; z-index: 1;
}
.sf-code {
  width: 56px; height: 56px;
  background: #fff;
  color: var(--navy);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.sf-status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.12);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.sf-status .dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse-dot 2s infinite;
}
.sf-body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 6px; }
.sf-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}
.sf-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.4;
}
.sf-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px;
}
.sf-count {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sf-cta {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: inline-flex; align-items: center; gap: 6px;
}
.sf-cta svg { transition: transform .15s; }
.state-feature:hover .sf-cta svg { transform: translateX(3px); }

/* UPCOMING strip */
.states-upcoming {
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 14px 16px 6px;
}
.up-head {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin: 0 0 10px;
}
.up-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.up-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.up-item:last-child { border-bottom: 0; }
.up-code {
  width: 36px; height: 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.up-code.more { background: var(--teal-bg); color: var(--teal-dark); border-color: var(--teal-bg); font-size: 18px; font-weight: 800; }
.up-meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.up-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.up-specials { font-size: 11px; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.up-eta {
  background: rgba(245, 126, 28, 0.1);
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.up-link {
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.up-link:hover { color: var(--teal-dark); }

/* ≥ 768px — Bihar left, upcoming right */
@media (min-width: 768px) {
  .states-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    align-items: stretch;
  }
  .state-feature { padding: 24px 26px; }
  .sf-code { width: 64px; height: 64px; font-size: 20px; }
  .sf-name { font-size: 28px; }
  .sf-desc { font-size: 13px; }
  .states-upcoming { padding: 18px 20px 8px; }
}

/* ≥ 1024px — more breathing room */
@media (min-width: 1024px) {
  .state-feature { padding: 30px 32px; gap: 24px; }
  .sf-name { font-size: 32px; }
  .sf-desc { font-size: 14px; max-width: 380px; }
}

/* ==========================================================================
   v1.8 — MAKERS section (redesigned)
   ========================================================================== */

/* Hide legacy partner styles */
.partners-section, .partners-strip { display: none !important; }

.makers-section {
  padding: 48px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.makers-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 32px;
}
.makers-eyebrow {
  display: inline-block;
  background: var(--teal-bg);
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.makers-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.makers-title .accent { color: var(--teal); }
.makers-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.makers-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.maker-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 18px;
  transition: all 0.2s cubic-bezier(.4,0,.2,1);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.maker-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(13, 33, 73, 0.18);
  border-color: var(--border);
}
/* Colored top border accent */
.maker-card::before {
  content: '';
  position: absolute;
  top: 0; left: 18px; right: 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--mc1, var(--teal)), var(--mc2, var(--teal-dark)));
  border-radius: 0 0 3px 3px;
}

.mc-top {
  position: relative;
  grid-row: 1 / 4;
  grid-column: 1;
}
.mc-avatar {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mc1, var(--teal)), var(--mc2, var(--teal-dark)));
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px -4px var(--mc1, var(--teal));
}
.mc-verify {
  position: absolute;
  bottom: -4px; right: -4px;
  background: #fff;
  border-radius: 50%;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: #0d9488;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.mc-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  grid-column: 2;
  grid-row: 1;
}
.mc-spec {
  font-size: 12px;
  color: var(--text-muted);
  margin: 4px 0 0;
  line-height: 1.4;
  grid-column: 2;
  grid-row: 2;
}
.mc-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-light);
  grid-column: 2;
  grid-row: 3;
}
.mc-loc {
  font-size: 11px;
  color: var(--navy);
  font-weight: 600;
}
.mc-since {
  font-size: 10px;
  color: var(--mc1, var(--teal));
  font-weight: 700;
  background: rgba(13, 148, 136, 0.08);
  background: color-mix(in srgb, var(--mc1, var(--teal)) 10%, transparent);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.makers-cta { text-align: center; margin-top: 28px; }
.makers-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy);
  background: #fff;
  border: 2px solid var(--border);
  font-weight: 700;
  font-size: 13px;
  padding: 11px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: all .15s;
}
.makers-link:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-1px);
}
.makers-link svg { transition: transform .15s; }
.makers-link:hover svg { transform: translateX(3px); }

/* ≥ 640px — 2 columns */
@media (min-width: 640px) {
  .makers-section { padding: 64px 0; }
  .makers-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .makers-title { font-size: 32px; }
}

/* ≥ 1024px — 3 columns */
@media (min-width: 1024px) {
  .makers-section { padding: 80px 0; }
  .makers-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .maker-card { padding: 22px; gap: 16px; }
  .makers-title { font-size: 38px; }
  .makers-sub { font-size: 15px; }
  .mc-avatar { width: 56px; height: 56px; font-size: 20px; }
  .mc-name { font-size: 16px; }
  .mc-spec { font-size: 13px; }
}
