/* ============================================
   DUTCH TREATS — "Dutch Golden Hour" Redesign
   Warm, artisanal, editorial aesthetic
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --parchment: #F5EDE0;
  --parchment-dark: #EDE3D2;
  --cream: #FAF6EF;
  --warm-white: #FFFCF7;
  --white: #FFFFFF;

  --chocolate: #2C1810;
  --chocolate-mid: #3D2519;
  --chocolate-light: #5C3D2A;

  --caramel: #C8842D;
  --caramel-dark: #A86E22;
  --caramel-hover: #B5761F;
  --caramel-light: #F5E6CC;
  --caramel-glow: rgba(200, 132, 45, 0.15);

  --terracotta: #B85C38;
  --terracotta-light: #F8EAE3;

  --gold: #D4A24E;
  --gold-light: #F5E6B8;
  --gold-glow: rgba(212, 162, 78, 0.2);

  --sage: #4A7C59;
  --sage-light: #E8F0EA;

  --gray-50: #FAF8F5;
  --gray-100: #F0ECE5;
  --gray-200: #E0D9CE;
  --gray-300: #CCC3B4;
  --gray-400: #A89F90;
  --gray-500: #857B6C;
  --gray-600: #635B4F;
  --gray-700: #474038;
  --gray-800: #2E2822;
  --gray-900: #1A1510;

  --red: #C4503A;
  --red-light: #FBEFEB;
  --green: #4A7C59;
  --green-light: #E8F0EA;

  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-xs: 0 1px 2px rgba(44, 24, 16, 0.04);
  --shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.06), 0 1px 2px rgba(44, 24, 16, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(44, 24, 16, 0.06), 0 2px 4px -2px rgba(44, 24, 16, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(44, 24, 16, 0.08), 0 4px 10px -4px rgba(44, 24, 16, 0.04);
  --shadow-xl: 0 20px 40px -5px rgba(44, 24, 16, 0.1), 0 8px 16px -8px rgba(44, 24, 16, 0.06);
  --shadow-2xl: 0 25px 50px -12px rgba(44, 24, 16, 0.18);
  --shadow-warm: 0 8px 24px rgba(200, 132, 45, 0.2);
  --shadow-card: 0 1px 3px rgba(44, 24, 16, 0.04), 0 6px 16px rgba(44, 24, 16, 0.05);
  --shadow-card-hover: 0 4px 12px rgba(44, 24, 16, 0.06), 0 20px 48px rgba(44, 24, 16, 0.1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;

  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::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);
  color: var(--gray-700);
  background: var(--parchment);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle paper grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--parchment-dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--caramel) 0%, var(--caramel-dark) 100%); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--caramel-dark); }
html { scrollbar-width: thin; scrollbar-color: var(--caramel) var(--parchment-dark); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

::selection {
  background: var(--caramel-light);
  color: var(--chocolate);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--chocolate);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.btn-primary {
  background: var(--caramel);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(200, 132, 45, 0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--caramel);
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity var(--transition);
}
.btn-primary:hover {
  background: var(--caramel-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 132, 45, 0.4);
}
.btn-primary:hover::before { opacity: 0.5; }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--chocolate);
  color: var(--white);
  box-shadow: 0 2px 4px rgba(44, 24, 16, 0.15);
}
.btn-secondary:hover {
  background: var(--chocolate-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--chocolate);
  border: 2px solid var(--gray-300);
}
.btn-outline::after { display: none; }
.btn-outline:hover {
  border-color: var(--caramel);
  color: var(--caramel);
  background: var(--caramel-light);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* --- Announcement Bar --- */
.announcement-bar {
  background: var(--chocolate);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.announcement-bar span {
  color: var(--gold);
  font-weight: 700;
}

/* --- Cart Weight Bar (under header) --- */
.cart-weight-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-100);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--chocolate-light);
}
.cart-weight-bar-inner {
  max-width: 600px;
  margin: 0 auto;
}
.cart-weight-bar-inner > i { color: var(--caramel); margin-right: 0.3rem; }
.cart-weight-bar-inner > strong { margin-left: 0.3rem; color: var(--chocolate); }
.cart-weight-bar-tiers { margin-top: 0.35rem; }
.cart-weight-bar-track {
  display: flex;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--gray-100);
  gap: 2px;
}
.cart-weight-bar-seg {
  flex: 1;
  border-radius: 4px;
  transition: background 0.3s;
  background: var(--gray-100);
}
.cart-weight-bar-seg.seg-1.active { background: linear-gradient(90deg, #22c55e, #4ade80); }
.cart-weight-bar-seg.seg-2.active { background: linear-gradient(90deg, #eab308, #facc15); }
.cart-weight-bar-seg.seg-3.active { background: linear-gradient(90deg, #ef4444, #f87171); }
.cart-weight-bar-labels {
  display: flex;
  justify-content: space-around;
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-top: 0.2rem;
}
.cart-weight-bar-msg {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  font-weight: 600;
}
.cart-weight-bar-msg.tier-1 { color: #166534; }
.cart-weight-bar-msg.tier-2 { color: #854d0e; }
.cart-weight-bar-msg.tier-3 { color: #991b1b; }

/* --- Header / Navigation --- */
.header {
  background: rgba(245, 237, 224, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 1px 12px rgba(44, 24, 16, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--chocolate);
  letter-spacing: -0.03em;
}
.logo .logo-icon {
  font-size: 1.1rem;
  color: var(--caramel);
  background: var(--caramel-light);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo .logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.logo .logo-accent {
  color: var(--caramel);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-500);
  transition: all var(--transition-fast);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--caramel);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}
.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav a:hover {
  color: var(--chocolate);
  background: rgba(44, 24, 16, 0.04);
}
.nav a.active {
  color: var(--caramel);
  background: var(--caramel-light);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  background: var(--warm-white);
  transition: all var(--transition-fast);
}
.lang-selector:hover {
  border-color: var(--gray-400);
  background: var(--parchment);
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: var(--caramel);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(200, 132, 45, 0.25);
}
.cart-btn:hover {
  background: var(--caramel-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 132, 45, 0.35);
}

.cart-count {
  background: var(--white);
  color: var(--caramel);
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -5px;
  right: -5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--chocolate-light);
  border-radius: 1px;
  transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
  background: var(--cream);
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 132, 45, 0.1) 0%, rgba(212, 162, 78, 0.05) 40%, transparent 65%);
  pointer-events: none;
  animation: heroFloat 10s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-20px, 15px) scale(1.04); }
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.5rem 1.125rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--caramel);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.75rem;
  border: 1px solid var(--caramel-light);
  position: relative;
  overflow: hidden;
}
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 132, 45, 0.08), transparent);
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1.02;
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
  color: var(--chocolate);
  font-weight: 800;
}
.hero h1 .highlight {
  color: transparent;
  background: linear-gradient(135deg, var(--caramel) 0%, var(--gold) 50%, var(--terracotta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  display: inline-block;
  font-style: italic;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -2%;
  right: -2%;
  height: 10px;
  background: linear-gradient(90deg, var(--caramel-glow), rgba(200, 132, 45, 0.2), var(--caramel-glow));
  border-radius: 4px;
  z-index: -1;
}

.hero p {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: 2.25rem;
  max-width: 520px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.82rem;
  color: var(--gray-400);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.hero-trust-item i {
  color: var(--caramel);
  font-size: 0.9rem;
}

.hero-content {
  animation: heroEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: heroEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  opacity: 0;
}
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 420px;
}

.hero-product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-spring);
  border: 1px solid rgba(44, 24, 16, 0.04);
  position: relative;
}
.hero-product-card { perspective: 1000px; }
.hero-product-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg) scale(1.03);
  box-shadow: 0 20px 40px rgba(44, 24, 16, 0.12), 0 0 0 1px rgba(200, 132, 45, 0.1);
}

.hero-product-icon {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.875rem;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}
.hero-product-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  filter: drop-shadow(0 2px 4px rgba(44, 24, 16, 0.1));
}

.hero-product-card .product-emoji {
  font-size: 2.75rem;
  margin-bottom: 0.875rem;
  display: block;
}
.hero-product-card .product-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: 0.01em;
}
.hero-product-card .confiscated-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.625rem;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-product-card .allowed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.625rem;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Authenticity Seal --- */
.authenticity-seal {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
}
.seal-inner {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(250, 246, 239, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212, 162, 78, 0.25);
  animation: sealPulse 4s ease-in-out infinite;
}
.seal-inner i { font-size: 1rem; color: var(--gold); margin-bottom: 0.15rem; }
.seal-text { font-family: var(--font-heading); font-size: 0.55rem; font-weight: 700; color: var(--chocolate); text-align: center; line-height: 1.2; }
.seal-year { font-size: 0.45rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
@keyframes sealPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.03) rotate(2deg); }
}
@media (max-width: 768px) { .authenticity-seal { display: none; } }

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--caramel);
  margin: 0.875rem auto 0;
  border-radius: 2px;
}
.section-header p {
  color: var(--gray-400);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- Diamond Ornament Divider --- */
.section-header h2::before {
  content: '\25C6';
  display: block;
  font-size: 0.5rem;
  color: var(--caramel);
  margin-bottom: 0.5rem;
  letter-spacing: 0.75rem;
  opacity: 0.5;
}

/* --- How It Works --- */
.how-it-works {
  background: var(--warm-white);
  border-bottom: 1px solid var(--gray-100);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--caramel-light), var(--caramel), var(--caramel-light));
  z-index: 0;
  opacity: 0.4;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px;
  height: 72px;
  background: var(--warm-white);
  border: 3px solid var(--caramel);
  color: var(--caramel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px var(--caramel-glow);
  transition: all var(--transition);
}
.step:hover .step-number {
  background: var(--caramel);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(200, 132, 45, 0.3);
}

.step-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--caramel);
}
.step-icon i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--caramel-light);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.step:hover .step-icon i {
  background: var(--caramel);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(200, 132, 45, 0.3);
}

.step h3 {
  margin-bottom: 0.5rem;
  color: var(--chocolate);
  font-size: 1rem;
  font-weight: 700;
}
.step p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* --- Products Section --- */
.products-section {
  background: var(--parchment);
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  background: var(--white);
  padding: 0.375rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--gray-200);
}
.products-section .section-header + .product-tabs,
.product-tabs {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
.product-tab {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--gray-500);
  background: transparent;
  border: none;
  transition: all var(--transition-fast);
}
.product-tab:hover {
  color: var(--chocolate);
  background: var(--parchment);
}
.product-tab.active {
  background: var(--caramel);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(200, 132, 45, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(44, 24, 16, 0.04);
  transition: all var(--transition), transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  z-index: 2;
}
.product-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-8px) scale(1.02);
}

.product-image {
  background: linear-gradient(180deg, var(--cream) 0%, var(--parchment) 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-image img {
  width: auto;
  height: 85%;
  max-width: 80%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(44, 24, 16, 0.1));
  transition: transform var(--transition);
}
.product-card:hover .product-image img {
  transform: scale(1.08) translateY(-2px);
  filter: drop-shadow(0 8px 16px rgba(44, 24, 16, 0.15));
}

.product-tag {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-body);
  padding: 0.3rem 0.875rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}
.product-tag.bestseller {
  background: linear-gradient(135deg, var(--caramel), var(--gold));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(200, 132, 45, 0.35);
}
.product-tag.confiscated {
  background: linear-gradient(135deg, var(--terracotta), #D06B47);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(184, 92, 56, 0.35);
}
.product-tag.new {
  background: linear-gradient(135deg, var(--sage), #5E9A6F);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.35);
}

.product-info {
  padding: 1.25rem 1.375rem 1.375rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-brand {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.product-weight {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}
.product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--chocolate);
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
}
.product-price .currency {
  font-size: 0.85rem;
  font-weight: 700;
}

.add-to-cart {
  width: 42px;
  height: 42px;
  background: var(--caramel);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(200, 132, 45, 0.25);
  position: relative;
  border: none;
  cursor: pointer;
}
.add-to-cart::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-md) + 3px);
  background: var(--caramel);
  opacity: 0;
  z-index: -1;
  filter: blur(8px);
  transition: opacity var(--transition);
}
.add-to-cart:hover {
  transform: scale(1.12);
  background: var(--caramel-dark);
  box-shadow: 0 6px 20px rgba(200, 132, 45, 0.4);
}
.add-to-cart:hover::after { opacity: 0.4; }

/* --- Category Cards --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(44, 24, 16, 0.04);
  transition: all var(--transition), transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  z-index: 2;
}
.category-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-8px) scale(1.02);
}

.category-image {
  background: linear-gradient(180deg, var(--cream) 0%, var(--parchment) 100%);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.category-image img {
  width: auto;
  height: 80%;
  max-width: 75%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(44, 24, 16, 0.1));
  transition: transform var(--transition);
}
.category-card:hover .category-image img {
  transform: scale(1.08) translateY(-2px);
  filter: drop-shadow(0 8px 16px rgba(44, 24, 16, 0.15));
}

.category-info { padding: 1.5rem; }
.category-brand {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
  display: block;
}
.category-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 0.4rem;
}
.category-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.category-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}
.category-price {
  font-size: 0.85rem;
  color: var(--gray-500);
}
.category-price .currency { font-weight: 700; }
.category-variants {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--caramel);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}
.category-card:hover .category-variants { gap: 0.6rem; }
.card-add-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: none; cursor: pointer;
  background: var(--caramel); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.card-add-btn:hover { background: var(--caramel-dark, #A0702E); transform: scale(1.1); }

/* Seasonal product styling */
.category-card.seasonal {
  opacity: 0.45;
  filter: grayscale(40%);
  cursor: default;
  position: relative;
}
.category-card.seasonal:hover {
  transform: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.seasonal-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #7B8794;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.seasonal-badge i {
  margin-right: 4px;
  font-size: 0.6rem;
}

.category-variants i {
  font-size: 0.6rem;
  transition: transform var(--transition);
}
.category-card:hover .category-variants i { transform: translateX(2px); }

/* --- Product Detail Modal --- */
.product-detail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 16, 0.55);
  backdrop-filter: blur(6px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.product-detail-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-detail-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 780px;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-2xl);
  z-index: 10001;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 60px rgba(44, 24, 16, 0.25);
}
.product-detail-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.product-detail-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  font-size: 1.25rem;
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
}
.product-detail-close:hover {
  background: var(--gray-200);
  color: var(--chocolate);
}

.product-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.detail-image {
  background: linear-gradient(180deg, var(--cream) 0%, var(--parchment) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  min-height: 350px;
}
.detail-image img {
  max-width: 80%;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(44, 24, 16, 0.12));
}

.detail-info {
  padding: 2rem 2rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.detail-brand {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.detail-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 0.5rem;
}
.detail-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Allergen info in product detail */
.detail-melt-warning {
  background: #FFF8E1;
  border: 1px solid #FFD54F;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: #E65100;
  line-height: 1.4;
}
.detail-melt-warning i {
  margin-right: 0.35rem;
}

.detail-allergens {
  background: #FBF7F0;
  border: 1px solid #E8E0D4;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}
.allergen-title {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #C4883C;
  margin-bottom: 0.5rem;
}
.allergen-title i {
  font-size: 0.65rem;
  margin-right: 0.25rem;
}
.allergen-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}
.allergen-row:last-child {
  margin-bottom: 0;
}
.allergen-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6B5B4A;
  margin-right: 0.25rem;
}
.allergen-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-weight: 500;
}
.allergen-contains {
  background: #FDECEA;
  color: #B71C1C;
  border: 1px solid #F5C6CB;
}
.allergen-may {
  background: #FFF8E1;
  color: #F57F17;
  border: 1px solid #FFE082;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex: 1;
}
.detail-weight {
  font-size: 0.85rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.detail-weight i {
  font-size: 0.75rem;
  color: var(--gray-400);
}
.detail-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--chocolate);
}
.detail-price .currency {
  font-size: 1.1rem;
  font-weight: 600;
}

.detail-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
}

.detail-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--parchment);
  border-radius: var(--radius-md);
  padding: 0.25rem;
}
.detail-qty .qty-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--white);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.detail-qty .qty-btn:hover {
  background: var(--gray-200);
  color: var(--chocolate);
}
.detail-qty .qty-value {
  width: 2rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}

.detail-add-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* --- Combo Boxes Section --- */
.combo-section {
  background: var(--gray-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.combo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 132, 45, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(92, 61, 42, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.combo-section .section-header {
  position: relative;
  z-index: 1;
}
.combo-section .section-header h2 { color: var(--white); }
.combo-section .section-header h2::before { color: var(--gold); }
.combo-section .section-header h2::after { background: var(--gold); }
.combo-section .section-header p { color: rgba(255,255,255,0.5); }

.combo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.combo-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.combo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.combo-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.12);
}

.combo-card.featured {
  border-color: var(--gold);
  background: rgba(212, 162, 78, 0.06);
}
.combo-card.featured::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.combo-popular {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--gold), #DEB550);
  color: var(--gray-900);
  font-size: 0.6rem;
  font-weight: 800;
  font-family: var(--font-body);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 16px rgba(212, 162, 78, 0.35);
}

.combo-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.combo-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(200, 132, 45, 0.15), rgba(200, 132, 45, 0.05));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--caramel);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(200, 132, 45, 0.1);
}
.combo-card.featured .combo-icon {
  background: linear-gradient(135deg, rgba(212, 162, 78, 0.2), rgba(212, 162, 78, 0.05));
  color: var(--gold);
  border-color: rgba(212, 162, 78, 0.15);
}

.combo-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.combo-card .combo-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.combo-contents { margin-bottom: 1.5rem; }
.combo-contents li {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 500;
}
.combo-contents li i {
  color: var(--caramel);
  font-size: 0.65rem;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 132, 45, 0.12);
  border-radius: 50%;
  flex-shrink: 0;
}
.combo-card.featured .combo-contents li i {
  color: var(--gold);
  background: rgba(212, 162, 78, 0.12);
}

.combo-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.combo-price {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--caramel);
  letter-spacing: -0.03em;
}

.combo-btn {
  background: var(--caramel);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(200, 132, 45, 0.3);
}
.combo-btn:hover {
  background: var(--caramel-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 132, 45, 0.4);
}

/* --- About / Story Section --- */
.story-section {
  background: var(--warm-white);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

.story-visual {
  background: linear-gradient(135deg, var(--cream) 0%, var(--caramel-light) 100%);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(200, 132, 45, 0.1);
}
.story-visual .story-emoji {
  font-size: 4.5rem;
  margin-bottom: 0.75rem;
}

.story-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  margin-top: 2rem;
}
.story-stat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.125rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 24, 16, 0.03);
}
.story-stat .stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--caramel);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.story-stat .stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 0.125rem;
}

.story-content h2 { margin-bottom: 1.75rem; }
.story-content p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.8;
}

.story-features {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.story-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--parchment);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-fast);
}
.story-feature:hover {
  background: var(--caramel-light);
  border-color: rgba(200, 132, 45, 0.12);
}

.story-feature-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--caramel);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--caramel-light);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(200, 132, 45, 0.1);
  transition: all var(--transition);
}
.story-feature:hover .story-feature-icon {
  background: var(--caramel);
  color: var(--white);
  transform: scale(1.05);
}

.story-feature h3 {
  font-size: 0.875rem;
  color: var(--chocolate);
  margin-bottom: 0.2rem;
  font-weight: 700;
}
.story-feature p {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 0;
  line-height: 1.5;
}

/* --- Shipping Info --- */
.shipping-section {
  background: var(--parchment);
  border-top: 1px solid var(--gray-100);
}
.shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.shipping-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(44, 24, 16, 0.04);
  transition: all var(--transition);
}
.shipping-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.shipping-icon {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--caramel);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--caramel-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 132, 45, 0.1);
  transition: all var(--transition);
}
.shipping-card:hover .shipping-icon {
  background: var(--caramel);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(200, 132, 45, 0.25);
}

.shipping-card h3 { margin-bottom: 0.625rem; font-size: 1.05rem; }
.shipping-card p { color: var(--gray-400); font-size: 0.875rem; line-height: 1.7; }

.shipping-price {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--caramel);
  margin: 0.5rem 0;
  letter-spacing: -0.03em;
}
.shipping-note {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--sage);
  font-weight: 600;
  background: var(--sage-light);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

/* --- Reviews Section --- */
.reviews-section {
  background: var(--warm-white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--caramel-light);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  border-color: rgba(200, 132, 45, 0.2);
  box-shadow: 0 16px 40px rgba(44, 24, 16, 0.08);
  transform: translateY(-6px);
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}
.review-stars i {
  filter: drop-shadow(0 1px 2px rgba(212, 162, 78, 0.3));
}
.review-text {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--caramel-light), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  font-family: var(--font-body);
  color: var(--caramel);
  border: 2px solid rgba(200, 132, 45, 0.15);
  letter-spacing: 0.02em;
}
.review-author-info .review-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--chocolate);
}
.review-author-info .review-location {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* --- Newsletter / CTA Section --- */
.cta-section {
  background: var(--caramel);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(0,0,0,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 0.75rem;
  font-style: italic;
}
.cta-section h2::before { display: none; }
.cta-section h2::after { display: none; }

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto 2.25rem;
  color: var(--white);
}

.newsletter-form {
  display: flex;
  gap: 0.625rem;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 0.95rem 1.25rem;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-body);
  outline: none;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus {
  border-color: var(--white);
  background: rgba(255,255,255,0.18);
}
.newsletter-form button {
  background: var(--chocolate);
  color: var(--white);
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.newsletter-form button:hover {
  background: var(--gray-900);
  transform: translateY(-1px);
}

/* --- Footer --- */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
  padding: 4.5rem 0 2rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--caramel), var(--gold), var(--caramel));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  padding: 0.35rem 0;
  transition: all var(--transition-fast);
}
.footer-col a:hover {
  color: var(--caramel);
  transform: translateX(3px);
}

.footer-payment {
  display: flex;
  gap: 0.375rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.payment-icon {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a:hover { color: var(--caramel); }

/* --- Cart Sidebar --- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 16, 0.45);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 92vw;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 48px rgba(44, 24, 16, 0.15);
  overflow-x: hidden;
}
.cart-sidebar.active { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--gray-100);
}
.cart-header h3 { font-size: 1.15rem; }

.cart-close {
  font-size: 1.5rem;
  color: var(--gray-400);
  transition: all var(--transition-fast);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.cart-close:hover { color: var(--chocolate); background: var(--gray-100); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.75rem;
}

.cart-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--gray-400);
}
.cart-empty .empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.cart-item-image {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  border: 1px solid rgba(44, 24, 16, 0.04);
}
.cart-item-details { flex: 1; min-width: 0; overflow: hidden; }
.cart-item-name {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.2rem;
  color: var(--chocolate);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-item-variant { font-size: 0.78rem; color: var(--gray-400); }

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.625rem;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  transition: all var(--transition-fast);
  font-weight: 600;
}
.qty-btn:hover { background: var(--gray-100); color: var(--chocolate); }
.qty-value {
  width: 32px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--chocolate);
}

.cart-item-price {
  font-weight: 800;
  color: var(--chocolate);
  font-size: 0.95rem;
  font-family: var(--font-heading);
}

.cart-item-remove {
  color: var(--gray-400);
  font-size: 0.75rem;
  margin-top: 0.375rem;
  transition: color var(--transition-fast);
  font-weight: 500;
}
.cart-item-remove:hover { color: var(--red); }

.cart-footer {
  padding: 1.5rem 1.75rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--gray-100);
  background: var(--parchment);
  overflow: hidden;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  gap: 0.5rem;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--chocolate);
  margin-bottom: 1.25rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--gray-200);
  gap: 0.5rem;
}

.cart-shipping-note {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 1rem;
}

.free-shipping-bar {
  background: var(--gray-200);
  border-radius: 50px;
  height: 5px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.free-shipping-fill {
  background: linear-gradient(90deg, var(--sage), #5E9A6F);
  height: 100%;
  border-radius: 50px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.free-shipping-text {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

/* Cart weight indicator */
.cart-weight-indicator {
  background: var(--gray-50, #f9f7f4);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm, 8px);
  padding: 0.75rem;
  margin-bottom: 1rem;
}
.cart-weight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}
.cart-weight-header i {
  color: var(--chocolate);
  margin-right: 0.25rem;
}
.cart-weight-value {
  font-weight: 700;
  color: var(--chocolate);
}
.cart-weight-tiers {
  margin-bottom: 0.4rem;
}
.cart-weight-tier-bar {
  display: flex;
  height: 6px;
  border-radius: 50px;
  overflow: hidden;
  gap: 2px;
}
.cart-weight-tier-segment {
  border-radius: 50px;
  transition: all 0.4s ease;
}
.cart-weight-tier-segment.tier-1 {
  flex: 2;
  background: var(--gray-200);
}
.cart-weight-tier-segment.tier-2 {
  flex: 3;
  background: var(--gray-200);
}
.cart-weight-tier-segment.tier-3 {
  flex: 5;
  background: var(--gray-200);
}
.cart-weight-tier-segment.active {
  background: var(--sage);
}
.cart-weight-tier-segment.active.tier-2 {
  background: #E6A817;
}
.cart-weight-tier-segment.active.tier-3 {
  background: #D97706;
}
.cart-weight-tier-labels {
  display: flex;
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-top: 0.2rem;
}
.cart-weight-tier-labels span {
  text-align: center;
}
.cart-weight-tier-labels span:nth-child(1) { flex: 2; }
.cart-weight-tier-labels span:nth-child(2) { flex: 3; }
.cart-weight-tier-labels span:nth-child(3) { flex: 5; }
.cart-weight-message {
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  margin-top: 0.4rem;
}
.cart-weight-message.tier-1 { color: var(--sage); }
.cart-weight-message.tier-2 { color: #E6A817; }
.cart-weight-message.tier-3 { color: #D97706; }

#checkout-btn {
  border-radius: var(--radius-md);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

/* --- Checkout Modal --- */
.checkout-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 16, 0.55);
  z-index: 1100;
  backdrop-filter: blur(4px);
}
.checkout-overlay.active { display: block; }

.checkout-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1101;
  box-shadow: var(--shadow-2xl);
}
.checkout-modal.active { display: block; }

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  z-index: 1;
}
.checkout-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--chocolate);
}

.checkout-body { padding: 1.5rem; }

.checkout-summary {
  background: var(--parchment);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.checkout-summary-item .item-qty {
  color: var(--gray-400);
  font-size: 0.8rem;
}

.checkout-form h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 0.75rem;
  margin-top: 1.25rem;
}
.checkout-form h4:first-child { margin-top: 0; }

.checkout-form input,
.checkout-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  margin-bottom: 0.625rem;
  transition: border-color var(--transition-fast);
  background: var(--white);
  color: var(--gray-800);
  box-sizing: border-box;
}
.checkout-form input:focus,
.checkout-form select:focus {
  outline: none;
  border-color: var(--caramel);
  box-shadow: 0 0 0 3px var(--caramel-glow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

.checkout-shipping-cost {
  background: var(--caramel-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.checkout-totals {
  border-top: 2px solid var(--gray-200);
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.checkout-totals-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.checkout-totals-row.total {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--chocolate);
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-200);
  margin-top: 0.5rem;
}
.checkout-totals-row.vat-note {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-style: italic;
}

#pay-btn {
  margin-top: 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.checkout-secure {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
}

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-xl);
    gap: 0.25rem;
  }
  .nav.active { display: flex; }
  .nav a { padding: 0.75rem 1rem; border-radius: var(--radius-sm); width: 100%; }
  .mobile-menu-btn { display: flex; }

  .hero { padding: 3rem 0 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero p { margin: 0 auto 2rem; }
  .hero-cta { justify-content: center; flex-wrap: wrap; }
  .hero-trust { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  .hero-products { max-width: 340px; margin: 0 auto; grid-template-columns: repeat(2, 1fr); }

  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .steps::before { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .category-name { font-size: 1.15rem; }
  .category-desc { font-size: 0.8rem; margin-bottom: 0.75rem; }

  .product-detail-modal { width: 95%; max-height: 85vh; }
  .product-detail-content { grid-template-columns: 1fr; }
  .detail-image { min-height: 200px; padding: 1.5rem; }
  .detail-info { padding: 1.25rem; }
  .detail-name { font-size: 1.35rem; }

  .combo-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-features { grid-template-columns: 1fr; }
  .shipping-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* Cart sidebar mobile */
  .cart-sidebar { max-width: 100%; width: 100%; overflow-x: hidden; }
  .cart-header { padding: 1.25rem 1rem; }
  .cart-items { padding: 1rem; }
  .cart-footer { padding: 1rem; padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px)); }
  .cart-item-image { width: 52px; height: 52px; font-size: 1.4rem; }
  .cart-item-name { font-size: 0.8rem; }
  .cart-item-bottom { gap: 0.5rem; flex-wrap: wrap; }
  .cart-weight-header { flex-wrap: wrap; gap: 0.25rem; }
  .cart-combo-choices { max-width: 140px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }
  .products-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .product-image { height: 180px; }
  .steps { grid-template-columns: 1fr; }
  .product-tab { padding: 0.5rem 0.875rem; font-size: 0.78rem; }
  .hero-products { gap: 0.75rem; grid-template-columns: repeat(2, 1fr); }
  .hero-product-card { padding: 1.25rem 1rem; }
  .checkout-modal { width: 100%; max-width: 100%; max-height: 100vh; border-radius: 0; top: 0; left: 0; transform: none; }
  .checkout-header { border-radius: 0; }
  .form-row { grid-template-columns: 1fr; }
  /* Cart extra small screens */
  .cart-header { padding: 1rem 0.75rem; }
  .cart-items { padding: 0.75rem; }
  .cart-footer { padding: 0.75rem; padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px)); }
  .cart-item { gap: 0.625rem; }
  .cart-item-image { width: 44px; height: 44px; font-size: 1.2rem; }
  .cart-item-price { font-size: 0.85rem; }
  .cart-total { font-size: 1rem; }
  .qty-btn { width: 26px; height: 26px; font-size: 0.75rem; }
  .qty-value { width: 26px; font-size: 0.78rem; }
  .cart-weight-indicator { padding: 0.5rem; }
  .cart-weight-tier-labels { font-size: 0.58rem; }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px) scale(0.98); filter: blur(2px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.animate-in { animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.animate-scale { animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

/* Stagger animation delays */
.category-card:nth-child(1), .product-card:nth-child(1), .combo-card:nth-child(1), .step:nth-child(1) { animation-delay: 0s; }
.category-card:nth-child(2), .product-card:nth-child(2), .combo-card:nth-child(2), .step:nth-child(2) { animation-delay: 0.08s; }
.category-card:nth-child(3), .product-card:nth-child(3), .combo-card:nth-child(3), .step:nth-child(3) { animation-delay: 0.16s; }
.category-card:nth-child(4), .product-card:nth-child(4), .combo-card:nth-child(4), .step:nth-child(4) { animation-delay: 0.24s; }
.category-card:nth-child(5), .product-card:nth-child(5) { animation-delay: 0.32s; }
.category-card:nth-child(6), .product-card:nth-child(6) { animation-delay: 0.4s; }
.category-card:nth-child(7), .product-card:nth-child(7) { animation-delay: 0.48s; }
.category-card:nth-child(8), .product-card:nth-child(8) { animation-delay: 0.56s; }

/* Pre-animation state */
.category-card, .product-card, .combo-card, .step, .shipping-card, .review-card {
  opacity: 0;
  transform: translateY(24px);
}

/* --- Utility --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Combo Choice Modal --- */
.combo-choice-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 16, 0.55);
  backdrop-filter: blur(6px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.combo-choice-overlay.active { opacity: 1; visibility: visible; }

.combo-choice-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%; max-width: 480px; max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-2xl);
  z-index: 10001;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 60px rgba(44, 24, 16, 0.25);
}
.combo-choice-modal.active {
  opacity: 1; visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.combo-choice-close {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none;
  font-size: 1.5rem; color: var(--gray-400);
  cursor: pointer; width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  z-index: 1;
}
.combo-choice-close:hover { background: var(--cream); color: var(--brown-dark); }

.combo-choice-header {
  text-align: center; padding: 2rem 1.5rem 1rem;
  border-bottom: 1px solid var(--cream-dark);
}
.combo-choice-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--caramel), var(--gold));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 0.75rem;
}
.combo-choice-header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem; color: var(--brown-dark); margin: 0 0 0.25rem;
}
.combo-choice-header p {
  font-size: 0.85rem; color: var(--gray-400); margin: 0;
}

.combo-choice-body { padding: 1rem 1.5rem; }

.combo-choice-group {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--cream);
}
.combo-choice-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.combo-choice-title {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--gray-400); margin-bottom: 0.6rem;
}

.combo-choice-option {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.85rem; border-radius: var(--radius-lg);
  cursor: pointer; transition: all var(--transition);
  border: 2px solid transparent; margin-bottom: 0.4rem;
}
.combo-choice-option:hover { background: var(--cream); border-color: var(--caramel); }
.combo-choice-option:has(input:checked) {
}

.combo-choice-option input[type="radio"] { display: none; }

.combo-choice-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  flex-shrink: 0;
  position: relative;
  transition: all var(--transition);
  display: inline-block;
  box-sizing: border-box;
}
.combo-choice-radio::after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--caramel);
  transform: scale(0);
  transition: transform var(--transition);
}
.combo-choice-option:has(input:checked) .combo-choice-radio {
  border-color: var(--caramel);
}
.combo-choice-option:has(input:checked) .combo-choice-radio::after {
  transform: scale(1);
}

.combo-choice-label {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem;
  flex: 1;
}
.combo-choice-label strong {
  font-size: 0.9rem; color: var(--brown-dark);
}
.combo-choice-weight {
  font-size: 0.75rem; color: var(--gray-400);
}
.combo-choice-subtitle {
  font-size: 0.8rem; color: var(--primary); font-style: italic;
}
/* combo-choice-rec removed - now inline text */

.combo-choice-fixed-section {
  padding-top: 0.5rem;
  border-top: 1px solid var(--cream);
}
.combo-choice-fixed {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0.85rem; color: var(--brown-dark);
}
.combo-choice-fixed i {
  color: var(--green, #2E7D32); font-size: 0.85rem;
}
.combo-choice-fixed strong { font-size: 0.9rem; }
.combo-choice-inc {
  margin-left: auto;
  font-size: 0.7rem; font-weight: 600;
  color: var(--green, #2E7D32);
  text-transform: uppercase; letter-spacing: 0.03em;
}

.combo-choice-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--cream-dark);
  background: var(--cream);
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}
.combo-choice-price {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800; color: var(--brown-dark);
}
.combo-choice-confirm {
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--caramel), var(--caramel-dark));
  color: var(--white); border: none; border-radius: var(--radius-full);
  font-weight: 700; font-size: 0.9rem; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.25);
}
.combo-choice-confirm:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.35);
}

/* Combo card shuffle icon for choice items */
.combo-contents li i.fa-shuffle {
  color: var(--caramel);
}
.combo-contents li em {
  font-style: normal; color: var(--gray-400); font-size: 0.8rem;
}

/* Cart combo choices display */
.cart-combo-choices {
  font-size: 0.7rem !important;
  line-height: 1.3;
  max-width: 180px;
}

@media (max-width: 480px) {
  .combo-choice-modal { width: 95%; max-height: 92vh; }
  .combo-choice-header { padding: 1.5rem 1rem 0.75rem; }
  .combo-choice-body { padding: 0.75rem 1rem; }
  .combo-choice-footer { padding: 0.75rem 1rem; }
}
