/* =========================================================================
   JKommerce — Main Stylesheet
   Online Food Store | Green / Yellow / White premium theme
   Font: Poppins (Google Fonts)
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --clr-primary: #2E7D32;
  --clr-primary-dark: #1B5E20;
  --clr-primary-light: #66BB6A;
  --clr-primary-soft: #E8F5E9;
  --clr-secondary: #FFD54F;
  --clr-secondary-dark: #FFB300;
  --clr-secondary-soft: #FFF8E1;
  --clr-bg: #FFFFFF;
  --clr-bg-soft: #F6FBF6;
  --clr-text: #1C2B1E;
  --clr-text-muted: #5B6B5D;
  --clr-border: #E3EDE4;
  --clr-white: #ffffff;
  --clr-danger: #E53935;
  --clr-star: #FFB300;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-blur: blur(14px);

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(27, 94, 32, 0.08);
  --shadow-md: 0 8px 24px rgba(27, 94, 32, 0.12);
  --shadow-lg: 0 18px 48px rgba(27, 94, 32, 0.18);
  --shadow-yellow: 0 10px 26px rgba(255, 193, 7, 0.35);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Type */
  --font-main: 'Poppins', sans-serif;

  /* Motion */
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-width: 1240px;
  --nav-height: 78px;
}

/* Dark mode token overrides */
[data-theme="dark"] {
  --clr-bg: #0F1B10;
  --clr-bg-soft: #142315;
  --clr-text: #EAF3EA;
  --clr-text-muted: #A8BBA9;
  --clr-border: #243825;
  --clr-white: #16261A;
  --glass-bg: rgba(20, 35, 21, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  --clr-primary-soft: #17301B;
  --clr-secondary-soft: #2A2410;
}

/* -------------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  transition: background var(--transition-med), color var(--transition-med);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-main); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-main); }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--clr-primary-soft); }
::-webkit-scrollbar-thumb {
  background: var(--clr-primary);
  border-radius: var(--radius-pill);
  border: 2px solid var(--clr-primary-soft);
}
::-webkit-scrollbar-thumb:hover { background: var(--clr-primary-dark); }

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--clr-secondary-dark);
  outline-offset: 2px;
  border-radius: 4px;
}

/* -------------------------------------------------------------------------
   3. UTILITIES
   ------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: var(--clr-primary-soft);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
}

.section { padding: 92px 0; }
.section-tight { padding: 56px 0; }

.section-head {
  max-width: 620px;
  margin-bottom: 46px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-top: 14px;
}
.section-head p {
  color: var(--clr-text-muted);
  margin-top: 12px;
  font-size: 1.02rem;
}

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.96rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--clr-primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-secondary {
  background: var(--clr-secondary);
  color: #21330F;
  box-shadow: var(--shadow-yellow);
}
.btn-secondary:hover { background: var(--clr-secondary-dark); transform: translateY(-3px); }

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.btn-outline:hover { background: var(--clr-primary); color: #fff; transform: translateY(-3px); }

.btn-ghost-white {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: var(--glass-blur);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.3); transform: translateY(-3px); }

.btn-block { width: 100%; }
.btn-lg { padding: 17px 38px; font-size: 1.02rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

.btn-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--clr-primary-soft); color: var(--clr-primary);
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.btn-icon:hover { background: var(--clr-primary); color: #fff; transform: translateY(-2px) scale(1.06); }
.btn-icon.active { background: var(--clr-danger); color: #fff; }

/* Glass surface */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

/* Badges / pills */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: var(--radius-pill);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.03em;
}
.badge-sale { background: var(--clr-danger); color: #fff; }
.badge-new { background: var(--clr-secondary); color: #21330F; }
.badge-fresh { background: var(--clr-primary-soft); color: var(--clr-primary); }

/* Toast notifications */
.toast-container {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: var(--radius-md);
  background: var(--clr-white);
  color: var(--clr-text);
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--clr-primary);
  font-size: 0.9rem;
  font-weight: 500;
  animation: toastIn 0.35s ease forwards;
}
.toast.error { border-left-color: var(--clr-danger); }
.toast.warn { border-left-color: var(--clr-secondary-dark); }
.toast .toast-icon { font-size: 1.2rem; flex-shrink: 0; }
.toast.leaving { animation: toastOut 0.3s ease forwards; }

@keyframes toastIn { from { opacity: 0; transform: translateX(40px);} to { opacity: 1; transform: translateX(0);} }
@keyframes toastOut { to { opacity: 0; transform: translateX(40px) scale(0.9);} }

/* Loading spinner / page loader */
.page-loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--clr-bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 18px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-basket {
  width: 64px; height: 64px;
  border: 5px solid var(--clr-primary-soft);
  border-top-color: var(--clr-primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
.page-loader span { color: var(--clr-primary); font-weight: 600; letter-spacing: 0.04em; }
@keyframes spin { to { transform: rotate(360deg); } }

.spinner-inline {
  width: 18px; height: 18px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.4); border-top-color: #fff;
  animation: spin 0.7s linear infinite; display: inline-block;
}

/* Scroll to top */
.scroll-top-btn {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #fff;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-med);
  z-index: 999;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--clr-primary-dark); transform: translateY(-4px); }

/* Animations library */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px);} to { opacity: 1; transform: translateY(0);} }
@keyframes fadeIn { from { opacity: 0;} to { opacity: 1;} }
@keyframes floatY { 0%, 100% { transform: translateY(0);} 50% { transform: translateY(-14px);} }
@keyframes blobMove { 0%, 100% { border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%; } 50% { border-radius: 60% 40% 35% 65% / 55% 65% 35% 45%; } }
@keyframes pulseSoft { 0%, 100% { transform: scale(1);} 50% { transform: scale(1.04);} }
@keyframes shimmer { 0% { background-position: -400px 0;} 100% { background-position: 400px 0;} }

.reveal { animation: fadeInUp 0.7s ease both; }
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }

/* Scroll-triggered reveal (JS adds .in-view) */
.observe-fade { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.observe-fade.in-view { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------------------------------
   4. FOOD ICON TILES (illustration substitute — gradient + emoji glyph)
   Used across the site as product / category art since real photography
   assets aren't available in this build. Swap the <div class="food-art">
   background / emoji for an <img src="images/ai-food/..."> when real
   photography is ready — markup is structured to make that a 1-line change.
   ------------------------------------------------------------------------- */
.food-art {
  --tint-a: var(--clr-primary);
  --tint-b: var(--clr-primary-light);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--tint-a), var(--tint-b));
  overflow: hidden;
}
.food-art::before {
  content: "";
  position: absolute; inset: -20%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 55%);
}
.food-art .glyph {
  font-size: 3rem;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.18));
  transition: transform var(--transition-med);
  position: relative; z-index: 1;
}
.food-art.tint-yellow { --tint-a: #FFC107; --tint-b: #FFE082; }
.food-art.tint-red { --tint-a: #E64A19; --tint-b: #FF8A65; }
.food-art.tint-purple { --tint-a: #6A1B9A; --tint-b: #AB47BC; }
.food-art.tint-orange { --tint-a: #EF6C00; --tint-b: #FFB74D; }
.food-art.tint-brown { --tint-a: #5D4037; --tint-b: #A1887F; }
.food-art.tint-pink { --tint-a: #C2185B; --tint-b: #F06292; }
.food-art.tint-blue { --tint-a: #0277BD; --tint-b: #4FC3F7; }

/* -------------------------------------------------------------------------
   5. NAVIGATION
   ------------------------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--transition-med);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.4rem; color: var(--clr-primary-dark); flex-shrink: 0; }
.logo .logo-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(140deg, var(--clr-primary), var(--clr-primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; box-shadow: var(--shadow-sm);
}
.logo span.accent { color: var(--clr-secondary-dark); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--clr-text);
  transition: var(--transition-fast);
  position: relative;
}
.nav-links a:hover { background: var(--clr-primary-soft); color: var(--clr-primary-dark); }
.nav-links a.active { background: var(--clr-primary); color: #fff; }

.nav-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--clr-bg-soft);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 18px;
  width: 100%; max-width: 320px;
}
.nav-search input {
  border: none; background: transparent; outline: none;
  width: 100%; font-size: 0.9rem; color: var(--clr-text);
}
.nav-search button {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--clr-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition-fast);
}
.nav-search button:hover { background: var(--clr-primary-dark); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-icon-btn {
  position: relative;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--clr-bg-soft);
  color: var(--clr-primary-dark);
  font-size: 1.05rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.nav-icon-btn:hover { background: var(--clr-primary-soft); transform: translateY(-2px); }
.nav-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--clr-secondary-dark); color: #21330F;
  font-size: 0.65rem; font-weight: 800;
  width: 19px; height: 19px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--clr-bg);
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--clr-bg-soft);
}
.hamburger span { width: 20px; height: 2px; background: var(--clr-primary-dark); transition: var(--transition-fast); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--clr-bg);
  z-index: 998;
  padding: 30px 24px;
  transform: translateX(-100%);
  transition: transform var(--transition-med);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block; padding: 16px 6px;
  font-size: 1.1rem; font-weight: 600;
  border-bottom: 1px solid var(--clr-border);
}
.mobile-menu .mobile-search { margin-bottom: 20px; }

/* Dark mode toggle */
.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--clr-bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  transition: var(--transition-fast);
}
.theme-toggle:hover { background: var(--clr-primary-soft); transform: rotate(20deg); }

/* -------------------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 70px 0 60px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--clr-bg-soft), var(--clr-bg) 80%);
}
.hero-blob {
  position: absolute;
  width: 520px; height: 520px;
  background: linear-gradient(135deg, var(--clr-primary-light), var(--clr-secondary));
  opacity: 0.18;
  top: -160px; right: -140px;
  animation: blobMove 9s ease-in-out infinite, floatY 7s ease-in-out infinite;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin: 18px 0 20px;
}
.hero-copy h1 .highlight {
  color: var(--clr-primary);
  position: relative;
  white-space: nowrap;
}
.hero-copy h1 .highlight::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 6px; height: 12px;
  background: var(--clr-secondary);
  z-index: -1; opacity: 0.7; border-radius: 6px;
}
.hero-copy p { color: var(--clr-text-muted); font-size: 1.08rem; max-width: 480px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-size: 1.5rem; color: var(--clr-primary-dark); }
.hero-stats div span { font-size: 0.85rem; color: var(--clr-text-muted); }

.hero-search {
  display: flex; gap: 0;
  background: var(--clr-white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  margin-bottom: 30px;
  max-width: 520px;
  border: 1px solid var(--clr-border);
}
.hero-search select {
  border: none; background: transparent; padding: 0 14px;
  color: var(--clr-text-muted); font-size: 0.88rem;
  border-right: 1px solid var(--clr-border);
  outline: none;
}
.hero-search input {
  flex: 1; border: none; outline: none; padding: 0 14px; font-size: 0.95rem; background: transparent; color: var(--clr-text);
}
.hero-search button {
  background: var(--clr-primary); color: #fff;
  padding: 14px 26px; border-radius: var(--radius-pill);
  font-weight: 600; display: flex; align-items: center; gap: 8px;
  transition: var(--transition-fast);
}
.hero-search button:hover { background: var(--clr-primary-dark); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-plate {
  width: 100%; max-width: 420px; aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--clr-primary), var(--clr-primary-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: floatY 6s ease-in-out infinite;
  position: relative;
}
.hero-plate::before {
  content: "";
  position: absolute; inset: 14px; border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.35);
}
.hero-plate .plate-emoji { font-size: 8rem; filter: drop-shadow(0 20px 20px rgba(0,0,0,0.25)); }

.hero-float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem; font-weight: 600;
  animation: floatY 5s ease-in-out infinite;
}
.hero-float-card.card-1 { top: 6%; left: -4%; animation-delay: 0.3s; }
.hero-float-card.card-2 { bottom: 10%; right: -6%; animation-delay: 1s; }
.hero-float-card .fc-icon { font-size: 1.3rem; }
.hero-float-card small { display: block; color: var(--clr-text-muted); font-weight: 400; }

.trust-strip {
  display: flex; flex-wrap: wrap; gap: 34px; align-items: center; justify-content: center;
  padding: 22px 0; border-top: 1px solid var(--clr-border); margin-top: 46px;
  color: var(--clr-text-muted); font-size: 0.85rem; font-weight: 500;
}
.trust-strip span { display: flex; align-items: center; gap: 8px; }

/* -------------------------------------------------------------------------
   7. CATEGORIES
   ------------------------------------------------------------------------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 26px 16px;
  text-align: center;
  transition: var(--transition-med);
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.category-card .cat-icon {
  width: 66px; height: 66px; margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  background: var(--clr-primary-soft);
  transition: var(--transition-med);
}
.category-card:hover .cat-icon { background: var(--clr-primary); transform: scale(1.1) rotate(-6deg); }
.category-card h4 { font-size: 0.92rem; font-weight: 600; }
.category-card span { font-size: 0.76rem; color: var(--clr-text-muted); }

/* -------------------------------------------------------------------------
   8. PRODUCT CARDS
   ------------------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-med);
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.product-thumb { position: relative; aspect-ratio: 4/3.1; }
.product-thumb .food-art { width: 100%; height: 100%; }
.product-card:hover .food-art .glyph { transform: scale(1.12) rotate(-4deg); }

.product-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }

.wishlist-btn {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--clr-text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.wishlist-btn:hover { transform: scale(1.12); }
.wishlist-btn.active { color: var(--clr-danger); }
.wishlist-btn.active svg { fill: var(--clr-danger); }

.product-info { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--clr-primary); font-weight: 700; }
.product-info h3 { font-size: 1.02rem; font-weight: 600; }
.product-rating { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--clr-text-muted); }
.product-rating .stars { color: var(--clr-star); letter-spacing: 1px; }

.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
.product-price { display: flex; align-items: baseline; gap: 8px; }
.product-price strong { font-size: 1.2rem; color: var(--clr-primary-dark); }
.product-price del { font-size: 0.82rem; color: var(--clr-text-muted); }

.add-cart-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--clr-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.add-cart-btn:hover { background: var(--clr-primary-dark); transform: scale(1.08) rotate(8deg); }
.add-cart-btn.in-cart { background: var(--clr-secondary-dark); color: #21330F; }

/* -------------------------------------------------------------------------
   9. DISCOUNT / OFFER BANNER
   ------------------------------------------------------------------------- */
.offer-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--clr-primary-dark), var(--clr-primary));
  color: #fff;
  padding: 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  position: relative; overflow: hidden;
}
.offer-banner::before {
  content: "";
  position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: var(--clr-secondary); opacity: 0.18;
  top: -100px; right: -60px;
}
.offer-banner::after {
  content: "";
  position: absolute; width: 180px; height: 180px; border-radius: 50%;
  background: #fff; opacity: 0.08;
  bottom: -80px; left: 10%;
}
.offer-text { position: relative; z-index: 1; max-width: 480px; }
.offer-text .eyebrow { background: rgba(255,255,255,0.16); color: var(--clr-secondary); }
.offer-text h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 14px 0 12px; }
.offer-text p { opacity: 0.85; margin-bottom: 22px; }
.offer-countdown { display: flex; gap: 12px; position: relative; z-index: 1; }
.offer-countdown div {
  background: rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 14px 18px; text-align: center; min-width: 70px;
  backdrop-filter: var(--glass-blur);
}
.offer-countdown strong { display: block; font-size: 1.5rem; }
.offer-countdown span { font-size: 0.7rem; opacity: 0.75; text-transform: uppercase; }

/* -------------------------------------------------------------------------
   10. TESTIMONIALS
   ------------------------------------------------------------------------- */
.testimonial-track-wrap { position: relative; }
.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}
.testimonial-slide { min-width: 100%; padding: 6px; }
.testimonial-card {
  background: var(--clr-bg-soft);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.testimonial-card .quote-mark { font-size: 2.6rem; color: var(--clr-secondary-dark); line-height: 1; font-family: Georgia, serif; }
.testimonial-card p { font-size: 1.08rem; margin: 16px 0 22px; color: var(--clr-text); }
.testimonial-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testimonial-card h4 { font-size: 0.95rem; }
.testimonial-card .stars { color: var(--clr-star); font-size: 0.85rem; margin-top: 4px; }

.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.slider-dots button {
  width: 9px; height: 9px; border-radius: 50%; background: var(--clr-border);
  transition: var(--transition-fast);
}
.slider-dots button.active { background: var(--clr-primary); width: 26px; border-radius: var(--radius-pill); }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--clr-white); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  z-index: 2; color: var(--clr-primary-dark);
  transition: var(--transition-fast);
}
.slider-arrow:hover { background: var(--clr-primary); color: #fff; }
.slider-arrow.prev { left: -6px; }
.slider-arrow.next { right: -6px; }

/* -------------------------------------------------------------------------
   11. NEWSLETTER
   ------------------------------------------------------------------------- */
.newsletter {
  background: linear-gradient(120deg, var(--clr-primary-dark), #0F3D12);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: "🌿"; position: absolute; font-size: 12rem; opacity: 0.05;
  right: -20px; top: -40px; transform: rotate(20deg);
}
.newsletter-text { max-width: 440px; position: relative; z-index: 1; }
.newsletter-text h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 10px; }
.newsletter-text p { opacity: 0.8; font-size: 0.95rem; }
.newsletter-form { display: flex; gap: 10px; position: relative; z-index: 1; flex: 1; max-width: 440px; }
.newsletter-form input {
  flex: 1; padding: 15px 20px; border-radius: var(--radius-pill);
  border: none; outline: none; font-size: 0.92rem;
}
.newsletter-form button { flex-shrink: 0; }

/* -------------------------------------------------------------------------
   12. FOOTER
   ------------------------------------------------------------------------- */
footer.site-footer {
  background: #102611;
  color: #cfe0d0;
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about .logo { color: #fff; margin-bottom: 14px; }
.footer-about p { font-size: 0.88rem; opacity: 0.75; margin-bottom: 18px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}
.footer-social a:hover { background: var(--clr-secondary); color: #21330F; transform: translateY(-3px); }

.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 0.88rem; opacity: 0.75; transition: var(--transition-fast); }
.footer-col ul li a:hover { opacity: 1; color: var(--clr-secondary); padding-left: 4px; }
.footer-col address { font-style: normal; font-size: 0.88rem; opacity: 0.8; line-height: 2; }
.footer-col address a:hover { color: var(--clr-secondary); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: 0.82rem; opacity: 0.65; flex-wrap: wrap; gap: 10px;
}
.footer-payments { display: flex; gap: 10px; font-size: 1.3rem; }

/* -------------------------------------------------------------------------
   13. GENERIC PAGE HEADER (used on inner pages)
   ------------------------------------------------------------------------- */
.page-header {
  background: linear-gradient(120deg, var(--clr-primary-soft), var(--clr-bg));
  padding: 56px 0 46px;
  text-align: center;
  border-bottom: 1px solid var(--clr-border);
}
.page-header .eyebrow { margin-bottom: 12px; }
.page-header h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.breadcrumb { margin-top: 12px; font-size: 0.85rem; color: var(--clr-text-muted); }
.breadcrumb a { color: var(--clr-primary); font-weight: 600; }

/* -------------------------------------------------------------------------
   14. PRODUCTS PAGE — filters + toolbar
   ------------------------------------------------------------------------- */
.products-layout { display: grid; grid-template-columns: 260px 1fr; gap: 34px; align-items: start; }

.filter-panel {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: sticky; top: calc(var(--nav-height) + 20px);
}
.filter-panel h3 { font-size: 1rem; margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; }
.filter-panel h3 button { font-size: 0.75rem; color: var(--clr-primary); font-weight: 600; }
.filter-group { margin-bottom: 26px; }
.filter-group h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--clr-text-muted); margin-bottom: 12px; }
.filter-option { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.9rem; cursor: pointer; }
.filter-option input[type="checkbox"], .filter-option input[type="radio"] { accent-color: var(--clr-primary); width: 16px; height: 16px; }
.filter-option .count { margin-left: auto; color: var(--clr-text-muted); font-size: 0.78rem; }

.price-range { display: flex; flex-direction: column; gap: 10px; }
.price-range input[type="range"] { accent-color: var(--clr-primary); width: 100%; }
.price-range-values { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--clr-text-muted); }

.products-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 26px; flex-wrap: wrap;
  background: var(--clr-bg-soft);
  border-radius: var(--radius-md);
  padding: 14px 20px;
}
.toolbar-search { display: flex; align-items: center; gap: 8px; background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius-pill); padding: 8px 16px; min-width: 220px; }
.toolbar-search input { border: none; outline: none; background: transparent; width: 100%; font-size: 0.88rem; }
.toolbar-right { display: flex; align-items: center; gap: 14px; }
.toolbar-right select {
  border: 1px solid var(--clr-border); border-radius: var(--radius-pill);
  padding: 9px 16px; font-size: 0.86rem; background: var(--clr-white); color: var(--clr-text); outline: none;
}
.result-count { font-size: 0.85rem; color: var(--clr-text-muted); }

.empty-state { text-align: center; padding: 70px 20px; }
.empty-state .emoji { font-size: 3.4rem; margin-bottom: 14px; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--clr-text-muted); margin-bottom: 22px; }

/* -------------------------------------------------------------------------
   15. CART PAGE
   ------------------------------------------------------------------------- */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; }

.cart-table { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); overflow: hidden; }
.cart-item {
  display: grid; grid-template-columns: 90px 1fr auto auto auto;
  align-items: center; gap: 18px; padding: 20px;
  border-bottom: 1px solid var(--clr-border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-thumb { width: 90px; height: 90px; border-radius: var(--radius-md); overflow: hidden; }
.cart-item-thumb .food-art { width: 100%; height: 100%; }
.cart-item-thumb .glyph { font-size: 2.2rem; }
.cart-item-info h4 { font-size: 0.98rem; margin-bottom: 4px; }
.cart-item-info span { font-size: 0.8rem; color: var(--clr-text-muted); }

.qty-control { display: flex; align-items: center; gap: 0; border: 1px solid var(--clr-border); border-radius: var(--radius-pill); overflow: hidden; }
.qty-control button { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: var(--clr-bg-soft); font-weight: 700; transition: var(--transition-fast); }
.qty-control button:hover { background: var(--clr-primary-soft); }
.qty-control span { width: 34px; text-align: center; font-weight: 600; font-size: 0.9rem; }

.cart-item-price { font-weight: 700; color: var(--clr-primary-dark); white-space: nowrap; }
.cart-item-remove { color: var(--clr-danger); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); }
.cart-item-remove:hover { background: #FDECEA; }

.cart-summary { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 26px; position: sticky; top: calc(var(--nav-height) + 20px); }
.cart-summary h3 { margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 0.92rem; color: var(--clr-text-muted); }
.summary-row.total { font-size: 1.15rem; font-weight: 700; color: var(--clr-text); border-top: 1px solid var(--clr-border); padding-top: 16px; margin-top: 6px; }
.coupon-row { display: flex; gap: 8px; margin: 18px 0; }
.coupon-row input { flex: 1; padding: 12px 16px; border-radius: var(--radius-pill); border: 1px solid var(--clr-border); outline: none; font-size: 0.86rem; }

.empty-cart { text-align: center; padding: 90px 20px; }
.empty-cart .emoji { font-size: 4rem; margin-bottom: 18px; }

/* -------------------------------------------------------------------------
   16. AUTH PAGES (Login / Register)
   ------------------------------------------------------------------------- */
.auth-section { padding: 60px 0 90px; min-height: 78vh; display: flex; align-items: center; }
.auth-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 980px; margin-inline: auto;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
}
.auth-visual {
  background: linear-gradient(150deg, var(--clr-primary-dark), var(--clr-primary));
  color: #fff;
  padding: 50px 40px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.auth-visual::before { content: "🥗"; position: absolute; font-size: 10rem; opacity: 0.08; right: -20px; bottom: -30px; }
.auth-visual h2 { font-size: 1.7rem; margin-bottom: 14px; position: relative; z-index: 1; }
.auth-visual p { opacity: 0.85; font-size: 0.92rem; position: relative; z-index: 1; margin-bottom: 26px; }
.auth-visual ul { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.auth-visual ul li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; }

.auth-form-wrap { padding: 50px 44px; }
.auth-form-wrap h2 { font-size: 1.5rem; margin-bottom: 6px; }
.auth-form-wrap > p { color: var(--clr-text-muted); font-size: 0.9rem; margin-bottom: 28px; }

.form-group { margin-bottom: 18px; position: relative; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; }
.form-group input {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--clr-border); outline: none;
  font-size: 0.92rem; background: var(--clr-bg-soft); color: var(--clr-text);
  transition: var(--transition-fast);
}
.form-group input:focus { border-color: var(--clr-primary); background: var(--clr-white); }
.form-group input.invalid { border-color: var(--clr-danger); }
.form-group input.valid { border-color: var(--clr-primary); }
.field-error { color: var(--clr-danger); font-size: 0.76rem; margin-top: 6px; display: none; }
.field-error.show { display: block; }

.toggle-pass {
  position: absolute; right: 14px; top: 40px;
  color: var(--clr-text-muted); font-size: 0.95rem;
}

.form-row-inline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; font-size: 0.85rem; }
.checkbox-row { display: flex; align-items: center; gap: 8px; }
.checkbox-row input { accent-color: var(--clr-primary); width: 16px; height: 16px; }
.forgot-link { color: var(--clr-primary); font-weight: 600; }

.strength-meter { display: flex; gap: 5px; margin-top: 8px; }
.strength-meter span { height: 5px; flex: 1; border-radius: 3px; background: var(--clr-border); transition: var(--transition-fast); }
.strength-label { font-size: 0.76rem; margin-top: 6px; color: var(--clr-text-muted); }

.divider-or { display: flex; align-items: center; gap: 14px; margin: 24px 0; color: var(--clr-text-muted); font-size: 0.8rem; }
.divider-or::before, .divider-or::after { content: ""; flex: 1; height: 1px; background: var(--clr-border); }

.social-auth { display: flex; gap: 12px; margin-bottom: 24px; }
.social-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: var(--radius-sm); border: 1.5px solid var(--clr-border);
  font-size: 0.85rem; font-weight: 600; transition: var(--transition-fast);
}
.social-btn:hover { border-color: var(--clr-primary); background: var(--clr-primary-soft); }

.auth-form-wrap .switch-auth { text-align: center; font-size: 0.88rem; color: var(--clr-text-muted); }
.auth-form-wrap .switch-auth a { color: var(--clr-primary); font-weight: 700; }

/* -------------------------------------------------------------------------
   17. ABOUT & CONTACT PAGE
   ------------------------------------------------------------------------- */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-hero .food-art { border-radius: var(--radius-lg); aspect-ratio: 4/3.4; }
.about-hero .food-art .glyph { font-size: 6rem; }

.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 20px; }
.story-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 30px; transition: var(--transition-med); }
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.story-card .story-icon { width: 54px; height: 54px; border-radius: var(--radius-sm); background: var(--clr-primary-soft); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
.story-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.story-card p { font-size: 0.9rem; color: var(--clr-text-muted); }

.stats-row { display: flex; justify-content: space-around; text-align: center; background: var(--clr-primary-soft); border-radius: var(--radius-lg); padding: 36px 20px; margin-top: 20px; flex-wrap: wrap; gap: 20px; }
.stats-row div strong { display: block; font-size: 2rem; color: var(--clr-primary-dark); }
.stats-row div span { font-size: 0.85rem; color: var(--clr-text-muted); }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 30px; margin-bottom: 20px; display: flex; gap: 16px; align-items: flex-start; }
.contact-info-card .ci-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--clr-primary-soft); color: var(--clr-primary); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-card h4 { margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { font-size: 0.9rem; color: var(--clr-text-muted); }

.map-placeholder {
  width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-lg);
  background:
    linear-gradient(var(--clr-bg-soft), var(--clr-bg-soft)),
    repeating-linear-gradient(45deg, var(--clr-border) 0 2px, transparent 2px 22px);
  border: 1px solid var(--clr-border);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  color: var(--clr-text-muted); margin-top: 20px;
}
.map-placeholder .pin { font-size: 2.4rem; animation: floatY 3s ease-in-out infinite; }

.contact-form-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 34px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
textarea { width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--clr-border); outline: none; resize: vertical; min-height: 120px; font-size: 0.92rem; background: var(--clr-bg-soft); color: var(--clr-text); }
textarea:focus { border-color: var(--clr-primary); background: var(--clr-white); }

/* FAQ */
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; font-weight: 600; font-size: 0.96rem; }
.faq-question .plus { transition: var(--transition-fast); color: var(--clr-primary); font-size: 1.2rem; }
.faq-item.open .faq-question .plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-med); }
.faq-answer p { padding: 0 24px 20px; color: var(--clr-text-muted); font-size: 0.9rem; }
.faq-item.open .faq-answer { max-height: 200px; }

/* Delivery info / order tracking */
.info-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.info-strip .info-card { text-align: center; padding: 26px 16px; background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); }
.info-strip .info-card .ii { font-size: 1.8rem; margin-bottom: 10px; }
.info-strip .info-card h4 { font-size: 0.92rem; margin-bottom: 6px; }
.info-strip .info-card p { font-size: 0.8rem; color: var(--clr-text-muted); }

.track-order { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 40px; }
.track-steps { display: flex; justify-content: space-between; margin-top: 34px; position: relative; }
.track-steps::before { content: ""; position: absolute; top: 21px; left: 5%; right: 5%; height: 3px; background: var(--clr-border); z-index: 0; }
.track-steps .ts-fill { position: absolute; top: 21px; left: 5%; height: 3px; background: var(--clr-primary); z-index: 1; width: 60%; transition: width 1s ease; }
.track-step { position: relative; z-index: 2; text-align: center; flex: 1; }
.track-step .ts-dot { width: 44px; height: 44px; border-radius: 50%; background: var(--clr-white); border: 3px solid var(--clr-border); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 1.1rem; }
.track-step.done .ts-dot { background: var(--clr-primary); border-color: var(--clr-primary); color: #fff; }
.track-step.active .ts-dot { background: var(--clr-secondary); border-color: var(--clr-secondary-dark); animation: pulseSoft 1.5s infinite; }
.track-step span { font-size: 0.8rem; color: var(--clr-text-muted); }
.track-step.done span, .track-step.active span { color: var(--clr-text); font-weight: 600; }

/* Free shipping banner */
.ship-banner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--clr-secondary); color: #21330F;
  padding: 12px; font-size: 0.85rem; font-weight: 600; text-align: center;
}

/* Coupons */
.coupon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.coupon-card {
  border: 2px dashed var(--clr-primary);
  border-radius: var(--radius-md);
  padding: 22px;
  background: var(--clr-primary-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.coupon-card strong { display: block; font-size: 1.1rem; color: var(--clr-primary-dark); }
.coupon-card span { font-size: 0.78rem; color: var(--clr-text-muted); }
.coupon-card button { background: var(--clr-white); border: 1px solid var(--clr-primary); color: var(--clr-primary); padding: 8px 14px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 700; }

/* misc */
hr.section-rule { border: none; height: 1px; background: var(--clr-border); margin: 0; }
