/* ============================================
   ROYAL POPCORN — El Paso, TX
   Art direction: warm Southwest desert
   Palette: rich amber/caramel, deep terracotta 
            accent, cream surfaces, sage green
   Display: Zodiak (warm editorial serif)
   Body: Satoshi (clean geometric sans)
============================================ */

/* ---- DESIGN TOKENS ---- */
:root,
[data-theme='light'] {
  /* Surfaces — black */
  --color-bg: #000000;
  --color-surface: #0a0a0a;
  --color-surface-2: #111111;
  --color-surface-offset: #1a1a1a;
  --color-border: #2a2200;
  --color-divider: #2a2200;

  /* Text — gold */
  --color-text: #f5c518;
  --color-text-muted: #c9a227;
  --color-text-faint: #7a6200;
  --color-text-inverse: #000000;

  /* Accent — bright gold */
  --color-accent: #f5c518;
  --color-accent-hover: #d4a800;
  --color-accent-light: #1a1200;
  --color-accent-2: #f5c518; /* gold secondary */

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.75rem;
  --radius-full: 9999px;

  /* Shadows — warm toned */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.7);

  /* Transitions */
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Fonts */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body:    'Satoshi', 'Inter', sans-serif;

  /* Content widths */
  --content-default: 1120px;
  --content-narrow:  680px;
}

[data-theme='dark'] {
  --color-bg:              #000000;
  --color-surface:         #0a0a0a;
  --color-surface-2:       #111111;
  --color-surface-offset:  #1a1a1a;
  --color-border:          #2a2200;
  --color-divider:         #2a2200;
  --color-text:            #f5c518;
  --color-text-muted:      #c9a227;
  --color-text-faint:      #7a6200;
  --color-text-inverse:    #000000;
  --color-accent:          #f5c518;
  --color-accent-hover:    #d4a800;
  --color-accent-light:    #1a1200;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.5);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.6);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.7);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #000000;
    --color-surface:        #0a0a0a;
    --color-surface-2:      #111111;
    --color-surface-offset: #1a1a1a;
    --color-border:         #2a2200;
    --color-divider:        #2a2200;
    --color-text:           #f5c518;
    --color-text-muted:     #c9a227;
    --color-text-faint:     #7a6200;
    --color-text-inverse:   #000000;
    --color-accent:         #f5c518;
    --color-accent-hover:   #d4a800;
    --color-accent-light:   #1a1200;
  }
}

/* ---- BASE RESET ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-20);
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img,picture,svg { display: block; max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p,li { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
a,button,[role='button'] {
  transition: color var(--transition), background var(--transition),
    border-color var(--transition), box-shadow var(--transition),
    transform var(--transition), opacity var(--transition);
}
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: var(--radius-sm); }
::selection { background: color-mix(in oklab, #f5c518, transparent 70%); }
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- UTILITIES ---- */
.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.section { padding-block: clamp(var(--space-12), 8vw, var(--space-24)); }
.section-offset { background: var(--color-surface); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
.section-header.center { flex-direction: column; align-items: center; text-align: center; }
.section-title {
  font-size: var(--text-2xl);
  font-weight: 700;
}
.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
  max-width: 50ch;
}
.see-all {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.see-all:hover { text-decoration: underline; }
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 1.2;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}
.btn-add {
  padding: var(--space-2) var(--space-4);
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  flex-shrink: 0;
}
.btn-add:hover { background: var(--color-accent-hover); transform: scale(1.04); }

/* ---- LOGO ---- */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
}
.logo-sub {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.logo:hover { opacity: 0.85; }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--color-bg), transparent 5%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-6);
  height: 72px;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-left: var(--space-4);
}
.site-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}
.site-nav a:hover { color: var(--color-text); }
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
}
.theme-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.theme-toggle:hover { color: var(--color-text); background: var(--color-surface-offset); }

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, color-mix(in oklab, var(--color-accent), transparent 88%) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, color-mix(in oklab, #16a34a, transparent 92%) 0%, transparent 40%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-12);
  min-height: calc(100svh - 72px);
}
.hero-content { position: relative; z-index: 1; }
.hero-content h1 {
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: var(--space-5);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--color-accent);
}
.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 46ch;
  margin-bottom: var(--space-8);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.badge-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}

/* Hero visual — popcorn bucket */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.desert-sun {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--color-accent), transparent 75%) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-bucket {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bucketFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(80,40,0,0.18));
}
@keyframes bucketFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.bucket-top {
  display: flex;
  gap: var(--space-2);
  margin-bottom: -8px;
  position: relative;
  z-index: 2;
}
.kernel {
  font-size: 1.8rem;
  animation: kernelPop 2.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.k1 { animation-delay: 0s; }
.k2 { animation-delay: .25s; transform: translateY(6px); }
.k3 { animation-delay: .5s; }
.k4 { animation-delay: .75s; transform: translateY(8px); }
.k5 { animation-delay: 1s; }
@keyframes kernelPop {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(5deg); }
}
.bucket-body {
  width: 160px;
  height: 200px;
  background: linear-gradient(180deg, #b45309 0%, #92400e 60%, #78350f 100%);
  border-radius: 8px 8px 20px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 4px 0 12px rgba(0,0,0,0.2), inset -4px 0 12px rgba(0,0,0,0.2);
}
.bucket-stripe {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}
.s1 { left: 28px; }
.s2 { left: 88px; }
.bucket-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}
.bucket-crown { font-size: 2.5rem; }
.bucket-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-pecan-pile {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: var(--space-1);
  flex-wrap: wrap;
  width: 80px;
}
.pecan {
  font-size: 1.4rem;
  animation: pecanWobble 3s ease-in-out infinite;
}
.p1 { animation-delay: 0s; }
.p2 { animation-delay: .4s; }
.p3 { animation-delay: .8s; }
.p4 { animation-delay: 1.2s; }
@keyframes pecanWobble {
  0%,100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg) scale(1.08); }
}

/* ---- MARQUEE ---- */
.marquee-wrap {
  overflow: hidden;
  background: var(--color-accent);
  color: #fff;
  padding-block: var(--space-3);
}
.marquee-track {
  display: flex;
  gap: var(--space-10);
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-img {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}
.product-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  color: #fff;
  background: var(--color-accent);
}
.badge-best { background: var(--color-accent); }
.badge-new  { background: #0891b2; }
.badge-hot  { background: #dc2626; }
.product-info { padding: var(--space-5); }
.product-category {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}
.product-name {
  font-size: var(--text-base);
  font-weight: 700;
  font-family: var(--font-display);
  margin-block: var(--space-1) var(--space-2);
  line-height: 1.3;
}
.product-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  max-width: none;
}
.product-rating {
  font-size: var(--text-xs);
  color: #f5c518;
  margin-bottom: var(--space-4);
}
.product-rating span { color: var(--color-text-muted); }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.product-price {
  font-size: var(--text-xl);
  font-weight: 700;
  font-family: var(--font-display);
}

/* ---- GIFT BOXES ---- */
.gifts-section { background: var(--color-surface-offset); }
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;
}
.bundle-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bundle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bundle-featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--color-accent), transparent 80%);
  transform: scale(1.02);
}
.bundle-featured:hover { transform: scale(1.02) translateY(-4px); }
.bundle-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  z-index: 1;
}
.bundle-visual {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.bv-1 { background: linear-gradient(135deg, #fef9c3, #fde68a); }
.bv-2 { background: linear-gradient(135deg, #fef3c7, #fed7aa); }
.bv-3 { background: linear-gradient(135deg, #e7e5e4, #d6d3d1); }
.bundle-info { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; }
.bundle-size {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}
.bundle-info h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-block: var(--space-2);
}
.bundle-info p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  flex: 1;
  margin-bottom: var(--space-5);
}
.bundle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: auto;
}
.bundle-price {
  font-size: var(--text-xl);
  font-weight: 700;
  font-family: var(--font-display);
}

/* ---- SUBSCRIBE ---- */
.subscribe-section {
  background: var(--color-surface);
}
.subscribe-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-16);
  align-items: center;
}
.subscribe-text h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.subscribe-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.subscribe-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.subscribe-perks li {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}
.subscribe-visual { display: flex; flex-direction: column; align-items: center; gap: var(--space-4); }
.sub-box { width: 240px; animation: bucketFloat 6s ease-in-out infinite; }
.sub-box-lid {
  height: 36px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-accent-hover));
  border-radius: 8px 8px 0 0;
  margin-inline: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-crown { font-size: 1.4rem; }
.sub-box-body {
  background: var(--color-surface-offset);
  border: 2px solid var(--color-accent);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.sub-item {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-3);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.sub-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}
.sub-label em { color: var(--color-accent); font-style: italic; font-family: var(--font-display); }

/* ---- WHY US ---- */
.why-section { background: var(--color-bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.why-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon { font-size: 2rem; margin-bottom: var(--space-4); }
.why-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.why-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}

/* ---- REVIEWS ---- */
.reviews-section { background: var(--color-surface); }
.overall-rating {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}
.big-stars { font-size: var(--text-xl); color: #f5c518; line-height: 1; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.review-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-stars { color: #f5c518; letter-spacing: 0.05em; }
.review-text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  font-style: italic;
  flex: 1;
  line-height: 1.7;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-divider);
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-base);
  flex-shrink: 0;
}
.reviewer div { display: flex; flex-direction: column; }
.reviewer strong { font-size: var(--text-sm); font-weight: 700; }
.reviewer span { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ---- ABOUT ---- */
.about-section { background: var(--color-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about-text h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.about-tagline {
  font-size: var(--text-lg);
  font-style: italic;
  font-family: var(--font-display);
  color: var(--color-accent);
  margin-bottom: var(--space-5);
  max-width: none;
}
.about-text p,
.about-body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: var(--space-4);
  max-width: none;
}
.about-text p:last-of-type {
  margin-bottom: var(--space-8);
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.trust-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.about-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.about-card span {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.about-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}
.ac-highlight { background: var(--color-accent-light); border-color: color-mix(in oklab, var(--color-accent), transparent 75%); }

/* ---- LOCAL SEO SECTION ---- */
.local-section { background: var(--color-surface-offset); }
.local-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.local-text h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.local-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}
.local-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.local-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.local-detail strong {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}
.local-detail span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.local-areas h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.areas-grid span {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}

/* ---- EMAIL SIGNUP ---- */
.email-section {
  background: var(--color-text);
  padding-block: clamp(var(--space-12), 8vw, var(--space-20));
}
.email-inner {
  max-width: var(--content-narrow);
  margin-inline: auto;
  text-align: center;
  padding-inline: var(--space-6);
}
.email-inner h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-bg);
  margin-bottom: var(--space-4);
}
.email-inner > p {
  font-size: var(--text-base);
  color: color-mix(in oklab, var(--color-bg), transparent 35%);
  margin-bottom: var(--space-6);
  max-width: none;
}
.email-form {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-3);
}
.email-form input {
  flex: 1;
  min-width: 260px;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  font-size: var(--text-sm);
  background: color-mix(in oklab, var(--color-bg), transparent 18%);
  color: var(--color-bg);
}
.email-form input::placeholder { color: color-mix(in oklab, var(--color-bg), transparent 55%); }
.email-form input:focus { outline: none; border-color: var(--color-accent); }
.email-fine {
  font-size: var(--text-xs);
  color: color-mix(in oklab, var(--color-bg), transparent 55%);
  max-width: none;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-16) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.footer-brand .logo { margin-bottom: var(--space-4); }
.footer-brand > p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}
.social-links { display: flex; gap: var(--space-4); }
.social-links a {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.social-links a:hover { color: var(--color-accent); }
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
  font-family: var(--font-body);
}
.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.footer-links a:hover { color: var(--color-accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ---- CART BADGE ---- */
.cart-badge {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--color-accent);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-lg);
  z-index: 500;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.cart-badge:hover { transform: scale(1.1); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    gap: var(--space-10);
  }
  .hero-sub { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { min-height: 300px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .bundles-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .bundle-featured { transform: none; }
  .bundle-featured:hover { transform: translateY(-4px); }
  .subscribe-inner { grid-template-columns: 1fr; gap: var(--space-10); text-align: center; }
  .subscribe-perks { align-items: center; }
  .subscribe-visual { margin-inline: auto; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .local-inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-visual { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- PRODUCT PHOTO IMAGES ---- */
.product-img-photo {
  height: 220px;
  padding: 0;
  overflow: hidden;
  background: var(--color-surface-offset);
}
.product-img-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(1.12) contrast(1.05) brightness(1.02);
}
.product-card:hover .product-img-photo img {
  transform: scale(1.06);
}

/* ---- JAPONES SECTION ---- */
.japones-section { background: var(--color-surface-offset); }

/* =============================================
   ROYAL PUFFS SECTION
   ============================================= */
.puffs-section {
  background: var(--color-bg);
}
.puffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .puffs-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =============================================
   PAPAS LOCAS / MANGO / PUMPKIN SHOWCASE LAYOUT
   ============================================= */
.papas-section,
.mango-section,
.pumpkin-section {
  background: var(--color-bg);
}
.papas-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}
.papas-img {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #111;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.papas-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.18) contrast(1.07) brightness(1.03);
  transition: transform 0.4s ease;
}
.papas-img:hover img {
  transform: scale(1.04);
}
.papas-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.papas-info .product-name {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--accent);
  line-height: 1.15;
}
.papas-info .product-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.feature-bullets li {
  color: var(--text);
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.papas-info .product-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.papas-info .product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}
@media (max-width: 768px) {
  .papas-showcase {
    grid-template-columns: 1fr;
  }
  .papas-img {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ---- REAL LOGO IMAGE ---- */
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

/* ============================================
   CART + CHECKOUT STYLES
   ============================================ */
#cart-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #f5c518;
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
#cart-btn:hover { transform: scale(1.06); box-shadow: 0 6px 28px rgba(0,0,0,0.6); }
#cart-btn.has-items #cart-count {
  background: #dc2626;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

#cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 95vw;
  height: 100vh;
  background: #111;
  border-left: 2px solid #f5c518;
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#cart-drawer.open { right: 0; }

#cart-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  gap: 1rem;
}
#cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #2a2200;
  padding-bottom: 1rem;
}
#cart-header h3 {
  color: #f5c518;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
#cart-close {
  background: none;
  border: none;
  color: #f5c518;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}
#cart-items {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cart-empty {
  color: #7a6200;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
}
.cart-item {
  background: #1a1a1a;
  border: 1px solid #2a2200;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cart-item-name {
  color: #f5c518;
  font-weight: 600;
  font-size: 0.9rem;
  flex: 1;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #c9a227;
  font-size: 0.9rem;
}
.qty-btn {
  background: #2a2200;
  border: 1px solid #f5c518;
  color: #f5c518;
  border-radius: 4px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.qty-btn:hover { background: #f5c518; color: #000; }
.cart-item-price { color: #f5c518; font-weight: 700; min-width: 50px; text-align: right; }
.remove-btn {
  background: none;
  border: none;
  color: #dc2626;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0 0.25rem;
}
#cart-footer {
  border-top: 1px solid #2a2200;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#cart-total {
  color: #f5c518;
  font-size: 1.2rem;
  text-align: right;
}
.btn-checkout {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.2s;
}
.btn-checkout:hover { opacity: 0.9; }
.btn-checkout-alt {
  background: #0a1172;
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.2s;
}
.btn-checkout-alt:hover { opacity: 0.9; }
#cart-note {
  color: #7a6200;
  font-size: 0.78rem;
  text-align: center;
  margin: 0;
}

/* ---- HERO LOGO ---- */
.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hero-logo-img {
  width: clamp(220px, 30vw, 380px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(245, 197, 24, 0.35));
  animation: heroLogoPulse 3s ease-in-out infinite;
}
@keyframes heroLogoPulse {
  0%, 100% { filter: drop-shadow(0 8px 32px rgba(245,197,24,0.35)); }
  50%       { filter: drop-shadow(0 12px 48px rgba(245,197,24,0.6)); }
}
