/* ═══════════════════════════════════════════════════════════════
   THE NUT BOWL — CSS
   Clean & Aesthetic Gen Z Style
   Mobile-first responsive
═══════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Colors — derived from The Nut Bowl logo */
  --cream:       #fffbee;   /* warm light yellow background */
  --cream-dark:  #fff4c2;   /* soft yellow */
  --beige:       #f0e090;   /* golden beige border */
  --brown-light: #c4a028;
  --brown:       #8b6900;
  --accent:      #1b6357;   /* teal — bowl color */
  --accent-light:#3d9b8a;   /* lighter teal */
  --accent-soft: #d4f0eb;   /* very light teal */
  --yellow:      #f5c200;   /* logo golden yellow */
  --yellow-soft: #fff4c2;   /* light yellow */
  --yellow-mid:  #fde96a;   /* mid yellow */
  --sage:        #5a9e4a;   /* leaf green */
  --text-dark:   #1a0a00;   /* near-black brown */
  --text-mid:    #3d2000;   /* dark brown */
  --text-muted:  #7a5c30;   /* warm mid brown */
  --white:       #ffffff;
  --card-bg:     #ffffff;
  --shadow:      rgba(27, 99, 87, 0.1);
  --shadow-hover:rgba(27, 99, 87, 0.2);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container:   1200px;

  /* Radius */
  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;
  --radius-pill:9999px;

  /* Transitions */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --transition:  0.35s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
textarea { resize: vertical; }

/* ─── Utility ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 3rem; }
}

/* ─── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27, 99, 87, 0.3);
}

.btn-primary:hover {
  background: #155048;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27, 99, 87, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--beige);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--yellow);
  color: var(--text-dark);
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.btn-nav:hover { background: #e0b000; transform: translateY(-1px); }

.btn-small {
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  background: var(--yellow-soft);
  color: var(--text-dark);
  border: 1.5px solid var(--yellow);
}

.btn-small:hover {
  background: var(--yellow);
  color: var(--text-dark);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── Section Helpers ────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── OFFER BANNER ───────────────────────────────────────────── */
:root { --banner-h: 0px; }

.offer-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  z-index: 1002;
  background: var(--yellow);
  display: flex;
  align-items: center;
  overflow: hidden;
  transform: translateY(-100%);
  transition: transform 0.35s var(--ease);
}

.offer-banner.visible { transform: translateY(0); }

/* Scrolling ticker */
.offer-banner-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: bannerTicker 28s linear infinite;
  padding-right: 2rem;
  flex: 1;
  min-width: 0;
}

.offer-banner-track:hover { animation-play-state: paused; }

@keyframes bannerTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.offer-banner-msg {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 0 3rem;
}

.offer-banner-msg::before {
  content: '✦';
  margin-right: 0.75rem;
  opacity: 0.5;
}

.offer-banner-close {
  flex-shrink: 0;
  padding: 0 0.85rem;
  height: 100%;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  opacity: 0.6;
  background: rgba(0,0,0,0.08);
  border-left: 1px solid rgba(0,0,0,0.1);
  transition: opacity var(--transition), background var(--transition);
  cursor: pointer;
}

.offer-banner-close:hover { opacity: 1; background: rgba(0,0,0,0.15); }

/* Shift navbar and hero down when banner is visible */
body.banner-visible .navbar      { top: 38px; }
body.banner-visible .hero        { padding-top: calc(var(--section-pad) + 4rem + 38px); }
body.banner-visible .mobile-overlay { top: 38px; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--beige);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--yellow);
}

.logo-sm {
  height: 36px;
  width: 36px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* Brand name beside logo */
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.05rem;
}

.brand-the {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: lowercase;
}

.brand-main {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-pill);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: var(--radius-pill);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 8, 0.4);
  z-index: 998;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-overlay.show { display: block; opacity: 1; }

/* Desktop nav */
@media (min-width: 768px) {
  .nav-container { padding: 0 2rem; }
  .hamburger { display: none; }
  .nav-links { display: flex; }
}

/* Mobile nav open state */
@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(300px, 82vw);
    background: var(--white);
    border-left: 1.5px solid var(--beige);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 72px 0 2rem;
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    overflow-y: auto;
    list-style: none;
  }

  .nav-links.open { right: 0; display: flex; }

  .nav-links li { width: 100%; }

  .nav-links li + li { border-top: 1px solid var(--cream-dark); }

  .nav-link {
    display: block;
    padding: 1rem 1.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    width: 100%;
  }

  .nav-link::after { display: none; }
  .nav-link:hover  { background: var(--cream); color: var(--accent); }

  .nav-links li:last-child {
    padding: 1.25rem 1.75rem 0;
    border-top: none;
  }

  .nav-links .btn-nav {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: var(--radius-pill);
  }
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding: calc(var(--section-pad) + 4rem) 1.5rem var(--section-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--yellow-soft) 60%, var(--yellow-mid) 100%);
}

/* Decorative blobs */
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite alternate;
}

.blob-1 {
  width: clamp(300px, 40vw, 500px);
  height: clamp(300px, 40vw, 500px);
  background: radial-gradient(circle, #fde96a, transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.blob-2 {
  width: clamp(200px, 30vw, 380px);
  height: clamp(200px, 30vw, 380px);
  background: radial-gradient(circle, #a8d8d2, transparent 70%);
  bottom: 5%;
  left: -5%;
  animation-delay: -3s;
}

.blob-3 {
  width: clamp(150px, 20vw, 250px);
  height: clamp(150px, 20vw, 250px);
  background: radial-gradient(circle, #f5c200, transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -6s;
}

@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(3%, 4%) scale(1.05); }
}

.hero {
  flex-direction: column;
  text-align: center;
  gap: 3rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  border: none;
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(245, 194, 0, 0.3);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--text-mid);
  font-size: 0.8em;
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 0.08em;
  background: var(--yellow);
  border-radius: var(--radius-pill);
  z-index: -1;
}

.hero-sub {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2rem;
}

.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: inline; } }

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-cta-group .btn { font-size: 1rem; padding: 0.85rem 2rem; }

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-card-stack {
  position: relative;
  width: clamp(220px, 40vw, 320px);
  height: clamp(220px, 40vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bowl-emoji {
  font-size: clamp(5rem, 12vw, 9rem);
  filter: drop-shadow(0 20px 40px rgba(139, 105, 64, 0.25));
  animation: bowlBob 4s ease-in-out infinite;
}

@keyframes bowlBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.floating-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  box-shadow: 0 8px 24px var(--shadow);
  white-space: nowrap;
}

.card-a { top: 0; left: 0; animation: floatA 5s ease-in-out infinite; }
.card-b { top: 20%; right: -10%; animation: floatB 6s ease-in-out infinite; }
.card-c { bottom: 10%; left: 10%; animation: floatC 5.5s ease-in-out infinite; }

@keyframes floatA {
  0%, 100% { transform: translate(0, 0) rotate(-4deg); }
  50%       { transform: translate(-4px, -8px) rotate(-2deg); }
}

@keyframes floatB {
  0%, 100% { transform: translate(0, 0) rotate(5deg); }
  50%       { transform: translate(5px, -10px) rotate(3deg); }
}

@keyframes floatC {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  50%       { transform: translate(-3px, -6px) rotate(1deg); }
}

@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    text-align: left;
    gap: 4rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .hero-content { max-width: 600px; }
  .hero-cta-group { justify-content: flex-start; }
  .hero-badge { text-align: left; }
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px var(--shadow-hover);
}

.about-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.about-card-text {
  display: flex;
  flex-direction: column;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.about-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── PRODUCTS ───────────────────────────────────────────────── */
.products {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.products-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

/* ── Skeleton loading cards ──────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}

.skeleton-card {
  background: var(--card-bg);
  border: 1px solid var(--beige);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 260px;
  overflow: hidden;
}

.skeleton-line {
  border-radius: 6px;
  background: linear-gradient(90deg, var(--beige) 25%, var(--cream) 50%, var(--beige) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
}

.skeleton-line.sk-emoji  { width: 48px; height: 48px; border-radius: 50%; }
.skeleton-line.sk-title  { width: 65%; height: 18px; margin-top: 0.5rem; }
.skeleton-line.sk-desc   { width: 90%; height: 13px; }
.skeleton-line.sk-desc2  { width: 70%; height: 13px; }
.skeleton-line.sk-price  { width: 40%; height: 22px; margin-top: auto; }

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--beige);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px var(--shadow-hover);
}

.product-card:hover::before { opacity: 1; }

.product-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--yellow);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

.badge-new { background: var(--accent); color: var(--white); }

.product-emoji {
  font-size: 3.5rem;
  line-height: 1;
}
.product-emoji .product-img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-emoji .product-img:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

/* ── Order Details Modal ───────────────────────────────────── */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: lightboxIn 0.2s ease;
}
.order-modal[hidden] { display: none; }

.order-modal-card {
  background: var(--card-bg, #fff);
  color: var(--text-dark);
  border-radius: 1.25rem;
  padding: 1.75rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  animation: lightboxImgIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.order-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.order-modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.order-modal-close {
  background: rgba(0, 0, 0, 0.07);
  border: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.order-modal-close:hover { background: rgba(0, 0, 0, 0.14); }

.order-modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.order-modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.order-modal-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.75rem;
}

.order-modal-input {
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.65rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  width: 100%;
  box-sizing: border-box;
  background: var(--cream, #fffbee);
  color: var(--text-dark);
  transition: border-color 0.2s;
}
.order-modal-input:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}
.order-modal-input.invalid {
  border-color: #e53e3e;
}

.order-modal-textarea {
  resize: vertical;
  min-height: 76px;
}

.order-modal-submit {
  margin-top: 1.25rem;
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 1rem;
  padding: 0.85rem;
  border: none;
  cursor: pointer;
}

[data-theme="genz"] .order-modal-card {
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
[data-theme="genz"] .order-modal-input {
  background: #111;
  border-color: rgba(255, 255, 255, 0.12);
  color: #f0f0f0;
}
[data-theme="genz"] .order-modal-close {
  background: rgba(255, 255, 255, 0.08);
  color: #f0f0f0;
}
[data-theme="genz"] .order-modal-close:hover { background: rgba(255, 255, 255, 0.16); }

/* ── Lightbox ──────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: lightboxIn 0.2s ease;
}
.lightbox[hidden] { display: none; }

@keyframes lightboxIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-img {
  max-width: min(90vw, 520px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  animation: lightboxImgIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxImgIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.28); }

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.product-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

.product-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
  flex-wrap: wrap;
  row-gap: 0.6rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* Weight selector */
.weight-selector {
  display: flex;
  gap: 0.4rem;
  margin: 0.85rem 0 0.25rem;
}

.weight-btn {
  padding: 0.3rem 0.7rem;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.weight-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.weight-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* DIY Seed Bowl featured card */
.product-card-diy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: linear-gradient(135deg, var(--cream) 60%, var(--accent-soft));
  border: 2px solid var(--accent-light);
}

@media (min-width: 1024px) {
  .product-card-diy {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }
  .product-card-diy .product-info { flex: 1; }
}

.diy-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
}

.diy-seeds-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  max-width: 140px;
}

/* Price stack (for discounted items) */
.price-stack {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.price-mrp-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.product-price-original {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
}

.discount-pill {
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
}

.badge-deal {
  background: var(--yellow);
  color: var(--text-dark);
}

.badge-bestseller {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.35);
}

/* Combo card — ingredient breakdown */
.product-card-combo {
  background: linear-gradient(135deg, #f0fdf4 60%, #dcfce7);
  border: 2px solid #86efac;
}

@media (min-width: 1024px) {
  .product-card-combo {
    align-items: flex-start;
  }
  .product-card-combo .diy-left {
    padding-top: 0.25rem;
    min-width: 150px;
  }
}

.combo-ingredients {
  margin: 0.6rem 0 0.25rem;
}

.ingredients-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1.5px solid #bbf7d0;
  margin-bottom: 0.1rem;
}

.ingredients-header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.5rem 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ingredients-header > div:first-child {
  border-right: 1px solid #bbf7d0;
}

.ingredients-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ingredient-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.5rem;
  border-radius: 6px;
  transition: background var(--transition);
}

.ingredient-row:nth-child(odd) {
  border-right: 1px solid #bbf7d0;
}

.ingredient-row:hover { background: rgba(134, 239, 172, 0.2); }

.ingredient-name {
  font-size: 0.82rem;
  color: var(--text-dark);
  overflow-wrap: break-word;
  min-width: 0;
}

.ingredient-weight {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.ingredients-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.38rem 0.5rem;
  margin-top: 0.1rem;
  border-top: 1.5px solid #86efac;
  font-size: 0.85rem;
  font-weight: 700;
  color: #16a34a;
}

@media (max-width: 480px) {
  .ingredients-list {
    grid-template-columns: 1fr;
  }
  .ingredients-header {
    grid-template-columns: 1fr;
  }
  .ingredients-header > div:first-child {
    border-right: none;
    border-bottom: 1px solid #bbf7d0;
  }
  .ingredients-header > div:last-child {
    display: none;
  }
  .ingredient-row:nth-child(odd) {
    border-right: none;
  }
}

/* Old table styles kept for fallback */
.ingredients-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.ingredients-table th,
.ingredients-table td { padding: 0.35rem 0.6rem; text-align: left; }
.ingredients-table th { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1.5px solid #bbf7d0; }
.ingredients-table td { color: var(--text-dark); }
.ingredients-table tfoot td { border-top: 1.5px solid #86efac; font-weight: 700; color: #16a34a; }

.combo-size-pill {
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid #86efac;
}



.products-note {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  display: inline-block;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

.products-note { display: flex; justify-content: center; }
.products-note p {
  background: var(--yellow-soft);
  border: 1px solid var(--yellow);
  color: var(--text-dark);
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .contact-inner { grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
}

.contact-left .section-title { text-align: left; }
.contact-left .section-desc  { text-align: left; }

.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
}

.social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-link:hover { color: var(--accent); }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 99, 87, 0.12);
}

.form-success {
  display: none;
  text-align: center;
  color: var(--sage);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem;
}

.form-success.show { display: block; }

/* Contact CTA Buttons */
.contact-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--radius-xl);
}

.contact-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.contact-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  opacity: 0.92;
}

.contact-cta-whatsapp {
  background: #25d366;
  color: #fff;
}

.contact-cta-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

/* ─── CART WIDGET ────────────────────────────────────────────── */
.btn-add-cart {
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
}

.btn-add-cart.btn-added {
  background: var(--sage);
}

.cart-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  pointer-events: none;
}

.cart-widget.cart-visible {
  transform: translateY(0);
  pointer-events: all;
}

/* Drawer */
.cart-drawer {
  background: var(--white);
  border-top: 2px solid var(--beige);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
  max-height: 60vh;
  display: flex;
  flex-direction: column;
}

.cart-drawer[hidden] { display: none; }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--beige);
}

.cart-drawer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.cart-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-muted);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.cart-drawer-close:hover { background: var(--cream); }

/* Items list */
.cart-items {
  list-style: none;
  overflow-y: auto;
  flex: 1;
  padding: 0.5rem 1.25rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
}

.cart-item:last-child { border-bottom: none; }

.cart-item-emoji { font-size: 1.2rem; flex-shrink: 0; }

.cart-item-name {
  flex: 1;
  font-weight: 500;
  color: var(--text-dark);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream);
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.5rem;
}

.cart-qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  color: var(--accent);
  padding: 0 0.2rem;
  font-weight: 700;
}

.cart-item-qty {
  font-weight: 700;
  min-width: 1.2rem;
  text-align: center;
  color: var(--text-dark);
}

.cart-item-subtotal {
  font-weight: 600;
  color: var(--accent);
  min-width: 3rem;
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.2rem 0.35rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.cart-item-remove:hover { color: #dc2626; background: #fee2e2; }

/* Drawer footer */
.cart-drawer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem 1rem;
  border-top: 1px solid var(--beige);
  gap: 1rem;
}

.cart-drawer-total {
  font-size: 0.95rem;
  color: var(--text-mid);
}

.cart-drawer-total strong {
  color: var(--accent);
  font-size: 1.1rem;
}

/* Sticky bar */
.cart-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--text-dark);
  padding: 0.85rem 1.25rem;
  border-top: 2px solid var(--yellow);
}

.cart-bar-summary {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  text-align: left;
}

.cart-bar-icon { font-size: 1.3rem; }

.cart-bar-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-family: var(--font-body);
}

.cart-bar-info span {
  font-size: 0.78rem;
  color: var(--beige);
}

.cart-bar-info strong {
  font-size: 1rem;
  color: var(--yellow);
  font-weight: 700;
}

.cart-bar-chevron {
  font-size: 0.75rem;
  color: var(--beige);
  margin-left: auto;
  margin-right: 0.5rem;
}

/* WhatsApp order button */
.btn-whatsapp-order {
  background: #25d366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.btn-whatsapp-order:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

@media (max-width: 400px) {
  .btn-whatsapp-order { font-size: 0.78rem; padding: 0.55rem 0.75rem; }
}

/* ─── CALCULATOR CTA SECTION ────────────────────────────────── */
.calc-cta-section {
  padding: 5rem 0;
  background: var(--bg-alt, rgba(0,0,0,0.02));
}

.calc-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calc-cta-left { display: flex; flex-direction: column; gap: 1.25rem; }
.calc-cta-left .btn { align-self: flex-start; }

/* Preview card */
.calc-cta-preview {
  background: var(--card-bg, #fff);
  border: 1px solid var(--border, rgba(0,0,0,0.08));
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

.calc-preview-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.calc-preview-emoji { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }

.calc-preview-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.calc-preview-name { font-size: 0.8rem; font-weight: 600; opacity: 0.8; }

.calc-preview-bar {
  height: 6px;
  background: var(--border, rgba(0,0,0,0.1));
  border-radius: 99px;
  overflow: hidden;
}
.calc-preview-bar div {
  height: 100%;
  background: var(--accent, #2d6a4f);
  border-radius: 99px;
}

.calc-preview-val {
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  min-width: 70px;
  text-align: right;
}
.calc-preview-val small { font-weight: 400; opacity: 0.5; font-size: 0.72rem; }

.calc-cta-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border, rgba(0,0,0,0.07));
}
.calc-cta-pills span {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--bg-alt, rgba(0,0,0,0.05));
  border-radius: 20px;
  padding: 0.25rem 0.65rem;
  opacity: 0.75;
}

@media (max-width: 768px) {
  .calc-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .calc-cta-right { order: -1; }
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: var(--cream);
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-brand .logo-text,
.footer-brand .logo-img {
  filter: brightness(2);
}

.footer-brand p {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: rgba(253, 248, 243, 0.5);
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(253, 248, 243, 0.65);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(253, 248, 243, 0.1);
  padding-top: 1.25rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(253, 248, 243, 0.4);
  font-weight: 300;
}

/* ─── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--yellow-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

::selection { background: rgba(245, 194, 0, 0.3); }

/* ═══════════════════════════════════════════════════════════════
   THEME TOGGLE BUTTON
═══════════════════════════════════════════════════════════════ */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--yellow-soft);
  border: 1.5px solid var(--beige);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-1px);
}

.theme-icon { font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════════
   GEN-Z THEME  —  [data-theme="genz"]
   Colors pulled from the logo: electric yellow, deep teal,
   dark bg, bold typography.
═══════════════════════════════════════════════════════════════ */

/* ── Google Font imports for Gen-Z (Merriweather) are
   preloaded in <head>; font-family is switched via variables. ── */

[data-theme="genz"] {
  /* Backgrounds */
  --cream:        #0c0c0c;
  --cream-dark:   #1c1c1c;
  --beige:        #2e2e2e;

  /* Brand colours */
  --brown-light:  #FFD60A;
  --brown:        #E6B800;
  --accent:       #00C896;
  --accent-light: #00FFB3;
  --accent-soft:  #052e22;
  --yellow:       #FFD60A;
  --yellow-soft:  #1f1900;
  --yellow-mid:   #FFB800;
  --sage:         #00E676;

  /* Text */
  --text-dark:    #F0F0F0;
  --text-mid:     #BBBBBB;
  --text-muted:   #777777;

  /* Surfaces */
  --white:        #181818;
  --card-bg:      #1a1a1a;
  --shadow:       rgba(255, 214, 10, 0.08);
  --shadow-hover: rgba(255, 214, 10, 0.2);

  /* Typography — Vibe fonts */
  --font-display: 'Merriweather', Georgia, serif;
  --font-body:    'Merriweather', Georgia, serif;
}

/* ── Body ────────────────────────────────────────────────────── */
[data-theme="genz"] body {
  background: var(--cream);
  color: var(--text-dark);
}

/* ── Navbar ──────────────────────────────────────────────────── */
[data-theme="genz"] .navbar.scrolled {
  background: rgba(12, 12, 12, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 214, 10, 0.18);
}

[data-theme="genz"] .brand-the,
[data-theme="genz"] .brand-main {
  font-family: 'Syne', system-ui, sans-serif;
  color: var(--text-dark);
}

[data-theme="genz"] .nav-link  { color: var(--text-mid); }
[data-theme="genz"] .nav-link:hover,
[data-theme="genz"] .nav-link.active { color: #FFD60A; }
[data-theme="genz"] .nav-link::after { background: #FFD60A; }

[data-theme="genz"] .btn-nav {
  background: #FFD60A;
  color: #0c0c0c;
}
[data-theme="genz"] .btn-nav:hover { background: #FFE240; }

/* Mobile nav drawer */
[data-theme="genz"] .nav-links {
  background: #141414;
  border-left-color: rgba(255, 214, 10, 0.2);
}
[data-theme="genz"] .nav-links li + li { border-top-color: #2a2a2a; }
[data-theme="genz"] .nav-link:hover    { background: rgba(255, 214, 10, 0.07); color: #FFD60A; }

/* Theme toggle button in Gen-Z mode */
[data-theme="genz"] .theme-toggle {
  background: rgba(255, 214, 10, 0.1);
  border-color: rgba(255, 214, 10, 0.35);
  color: #FFD60A;
}
[data-theme="genz"] .theme-toggle:hover {
  background: rgba(255, 214, 10, 0.2);
  border-color: #FFD60A;
}

/* ── Hero ────────────────────────────────────────────────────── */
[data-theme="genz"] .hero {
  background: linear-gradient(140deg, #0c0c0c 0%, #1a1500 45%, #071e18 100%) !important;
}

[data-theme="genz"] .blob-1 {
  background: radial-gradient(circle, rgba(255,214,10,0.35), transparent 70%);
}
[data-theme="genz"] .blob-2 {
  background: radial-gradient(circle, rgba(0,200,150,0.3), transparent 70%);
}
[data-theme="genz"] .blob-3 {
  background: radial-gradient(circle, rgba(255,107,107,0.2), transparent 70%);
}

[data-theme="genz"] .hero-badge {
  background: rgba(255, 214, 10, 0.12);
  color: #FFD60A;
  border: 1px solid rgba(255, 214, 10, 0.3);
  box-shadow: none;
}

[data-theme="genz"] .hero-title { color: #F0F0F0; }
[data-theme="genz"] .hero-title em { color: #888; }

[data-theme="genz"] .hero-title .highlight {
  background: linear-gradient(90deg, #FFD60A 0%, #00C896 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
[data-theme="genz"] .hero-title .highlight::after {
  background: rgba(255, 214, 10, 0.3);
}

[data-theme="genz"] .floating-card {
  background: #1e1e1e;
  border-color: rgba(255, 214, 10, 0.25);
  color: var(--text-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ── Buttons ─────────────────────────────────────────────────── */
[data-theme="genz"] .btn-primary {
  background: #FFD60A;
  color: #0c0c0c;
  box-shadow: 0 4px 20px rgba(255, 214, 10, 0.3);
}
[data-theme="genz"] .btn-primary:hover {
  background: #FFE240;
  box-shadow: 0 8px 32px rgba(255, 214, 10, 0.45);
}

[data-theme="genz"] .btn-ghost {
  color: #FFD60A;
  border-color: rgba(255, 214, 10, 0.4);
}
[data-theme="genz"] .btn-ghost:hover {
  background: rgba(255, 214, 10, 0.08);
  border-color: #FFD60A;
  color: #FFD60A;
}

[data-theme="genz"] .btn-small {
  background: rgba(255, 214, 10, 0.1);
  border-color: rgba(255, 214, 10, 0.3);
  color: #FFD60A;
}
[data-theme="genz"] .btn-small:hover,
[data-theme="genz"] .btn-small.btn-added {
  background: #FFD60A;
  border-color: #FFD60A;
  color: #0c0c0c;
}

/* ── Section helpers ─────────────────────────────────────────── */
[data-theme="genz"] .section-tag {
  background: rgba(0, 200, 150, 0.12);
  color: #00C896;
}

[data-theme="genz"] .section-title { color: #F0F0F0; }
[data-theme="genz"] .section-title em { color: #FFD60A; }

/* ── About section ───────────────────────────────────────────── */
[data-theme="genz"] .about { background: #101010; }

[data-theme="genz"] .about-card {
  background: #1a1a1a;
  border-color: #2a2a2a;
}
[data-theme="genz"] .about-card:hover {
  border-color: rgba(255, 214, 10, 0.3);
  box-shadow: 0 12px 40px rgba(255, 214, 10, 0.08);
}

/* ── Products section ────────────────────────────────────────── */
[data-theme="genz"] .product-card {
  background: #1a1a1a;
  border-color: #272727;
}
[data-theme="genz"] .product-card:hover {
  box-shadow: 0 20px 60px rgba(255, 214, 10, 0.12);
  border-color: rgba(255, 214, 10, 0.25);
}
[data-theme="genz"] .product-card::before {
  background: linear-gradient(90deg, #FFD60A, #00C896);
}

[data-theme="genz"] .product-badge {
  background: rgba(255, 214, 10, 0.15);
  color: #FFD60A;
}
[data-theme="genz"] .badge-new {
  background: rgba(0, 200, 150, 0.15);
  color: #00C896;
}

[data-theme="genz"] .product-tag   { color: #00C896; }
[data-theme="genz"] .product-name  { color: #F0F0F0; }
[data-theme="genz"] .product-price { color: #FFD60A; }
[data-theme="genz"] .product-price-original { color: #555; }

[data-theme="genz"] .product-footer { border-top-color: #272727; }

[data-theme="genz"] .weight-btn {
  background: #222;
  border-color: #333;
  color: var(--text-muted);
}
[data-theme="genz"] .weight-btn.active {
  background: rgba(255, 214, 10, 0.15);
  border-color: #FFD60A;
  color: #FFD60A;
}

[data-theme="genz"] .discount-pill {
  background: rgba(0, 230, 118, 0.12);
  color: #00E676;
}

[data-theme="genz"] .products-note {
  background: rgba(255, 214, 10, 0.06);
  border-color: rgba(255, 214, 10, 0.2);
  color: #BBB;
}

/* Combo cards */
[data-theme="genz"] .product-card-combo {
  background: linear-gradient(135deg, #0a1a14 0%, #0e2218 100%);
  border: 1px solid rgba(0, 200, 150, 0.25);
}
[data-theme="genz"] .product-card-combo:hover {
  border-color: rgba(0, 200, 150, 0.5);
  box-shadow: 0 20px 60px rgba(0, 200, 150, 0.12);
}
[data-theme="genz"] .badge-bestseller { background: rgba(0,200,150,0.2); color: #00C896; }
[data-theme="genz"] .ingredients-header { border-bottom-color: rgba(0,200,150,0.25); }
[data-theme="genz"] .ingredients-header > div:first-child { border-right-color: rgba(0,200,150,0.2); }
[data-theme="genz"] .ingredient-row:nth-child(odd) { border-right-color: rgba(0,200,150,0.2); }
[data-theme="genz"] .ingredient-row:hover { background: rgba(0,200,150,0.08); }
[data-theme="genz"] .ingredient-name  { color: #DDD; }
[data-theme="genz"] .ingredient-weight { color: #00C896; }
[data-theme="genz"] .ingredients-total { border-top-color: rgba(0,200,150,0.3); color: #00C896; }
[data-theme="genz"] .combo-size-pill   { background: rgba(0,200,150,0.15); color: #00C896; border-color: rgba(0,200,150,0.3); }

/* ── Contact section ─────────────────────────────────────────── */
[data-theme="genz"] .contact { background: #101010; }

[data-theme="genz"] .contact-cta-group {
  background: #1a1a1a;
  border-color: #2a2a2a;
}

[data-theme="genz"] .social-link { color: #999; }
[data-theme="genz"] .social-link:hover { color: #FFD60A; }

/* ── Footer ──────────────────────────────────────────────────── */
[data-theme="genz"] .footer { background: #080808; }
[data-theme="genz"] .footer-bottom { border-top-color: rgba(255,255,255,0.06); }

/* ── Cart widget ─────────────────────────────────────────────── */
[data-theme="genz"] .cart-bar {
  background: linear-gradient(90deg, #1a1a1a, #1f1f1f);
  border-color: rgba(255, 214, 10, 0.2);
  box-shadow: 0 -4px 30px rgba(255, 214, 10, 0.08);
}
[data-theme="genz"] .cart-bar-summary { color: var(--text-dark); }
[data-theme="genz"] .cart-total-label { color: #888; }
[data-theme="genz"] .cart-total-value { color: #FFD60A; }
[data-theme="genz"] .btn-whatsapp-order { background: #25d366; }

[data-theme="genz"] .cart-drawer {
  background: #141414;
  border-color: rgba(255, 214, 10, 0.15);
}
[data-theme="genz"] .cart-drawer-header { border-bottom-color: #2a2a2a; }
[data-theme="genz"] .cart-item         { border-bottom-color: #222; }
[data-theme="genz"] .cart-item-controls { background: #222; }
[data-theme="genz"] .cart-item-subtotal { color: #FFD60A; }
[data-theme="genz"] .cart-qty-btn      { color: #00C896; }
[data-theme="genz"] .cart-drawer-footer { border-top-color: #2a2a2a; background: #1a1a1a; }

/* ── Scrollbar ───────────────────────────────────────────────── */
[data-theme="genz"] ::-webkit-scrollbar-track { background: #1a1a1a; }
[data-theme="genz"] ::-webkit-scrollbar-thumb { background: #FFD60A; }
[data-theme="genz"] ::-webkit-scrollbar-thumb:hover { background: #00C896; }

/* ── Gen-Z banner ────────────────────────────────────────────── */
[data-theme="genz"] .offer-banner {
  background: #FFD60A;
}
[data-theme="genz"] .offer-banner-msg  { color: #0c0c0c; }
[data-theme="genz"] .offer-banner-close { color: #0c0c0c; border-left-color: rgba(0,0,0,0.15); }
