/* ============================================================
   Le Jardin Kitchen - style.css
   ASCII-safe. No Unicode above 127.
   ============================================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* VARIABLES */
:root {
  --primary:      #6b21a8;
  --primary-dark: #4c1d95;
  --primary-light:#a855f7;
  --accent:       #c4b5fd;
  --accent-dark:  #7c3aed;
  --bg:           #fafafa;
  --surface:      #ffffff;
  --surface2:     #f5f3ff;
  --border:       #e5e7eb;
  --text:         #111827;
  --text-muted:   #6b7280;
  --text-light:   #9ca3af;
  --success:      #16a34a;
  --warning:      #d97706;
  --error:        #dc2626;
  --premium-red:  #dc2626;
  --free-olive:   #4c1d95;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 4px 24px rgba(107,33,168,0.08);
  --shadow-lg:    0 8px 40px rgba(107,33,168,0.14);
  --transition:   0.2s ease;
  --max-width:    1200px;
  --nav-h:        70px;
}

/* BASE */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.5rem,3.5vw,2.5rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.75rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* LAYOUT */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section   { padding: 72px 0; }
.section-sm{ padding: 40px 0; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; font-family: 'Inter', sans-serif;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 2px 12px rgba(107,33,168,0.3);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 4px 20px rgba(107,33,168,0.45); }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-ghost  { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--surface2); color: var(--primary); }
.btn-sm     { padding: 8px 18px; font-size: 13px; }
.btn-lg     { padding: 16px 36px; font-size: 17px; }
.btn-full   { width: 100%; }
.btn-danger { background: var(--error); color: #fff; }

/* NAVIGATION */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto; padding: 0 24px;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 32px;
}
.nav-logo  { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--primary); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px; font-weight: 700;
}
.logo-text { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; font-weight: 700; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500; color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--surface2); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-link-btn {
  font-size: 14px; font-weight: 600; color: var(--primary);
  padding: 8px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--primary);
  transition: background var(--transition), color var(--transition);
}
.nav-link-btn:hover { background: var(--primary); color: #fff; }
.cart-btn {
  position: relative; display: flex; align-items: center;
  color: var(--text); padding: 6px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.cart-btn:hover { color: var(--primary); background: var(--surface2); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #e53e3e; color: #fff;
  font-size: 11px; font-weight: 700; line-height: 18px;
  text-align: center; display: none;
}
.cart-count.visible { display: block; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* MOBILE DRAWER */
.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 199;
}
.drawer-overlay.open { display: block; }
.mobile-drawer {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100%;
  background: var(--surface); z-index: 200; padding: 24px 20px;
  overflow-y: auto; transition: right 0.3s ease;
  box-shadow: -4px 0 30px rgba(0,0,0,0.12);
}
.mobile-drawer.open { right: 0; }
.drawer-close {
  display: block; margin-left: auto; margin-bottom: 24px;
  font-size: 28px; line-height: 1; color: var(--text-muted);
  background: none; border: none; cursor: pointer;
}
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a {
  padding: 13px 0; font-size: 16px; font-weight: 500;
  color: var(--text); border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.drawer-nav a:hover { color: var(--primary); }
.drawer-nav hr { border: none; border-top: 2px solid var(--border); margin: 12px 0; }

/* HERO */
.hero {
  position: relative; overflow: hidden;
  min-height: 560px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(76,29,149,0.85) 0%, rgba(107,33,168,0.6) 50%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  color: #fff; padding: 80px 24px;
  margin-left: 5%;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content p  { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.hero-actions    { display: flex; flex-wrap: wrap; gap: 14px; }

/* SECTION HEADINGS */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { color: var(--text-muted); max-width: 540px; margin: 0 auto; font-size: 1.05rem; }
.eyebrow-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--primary-light);
  margin-bottom: 8px; display: block;
}

/* RECIPE CARD */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.recipe-card {
  background: var(--surface); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.recipe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.recipe-card-img  { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.recipe-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.recipe-card:hover .recipe-card-img img { transform: scale(1.04); }
.premium-badge {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; background: var(--premium-red);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; box-shadow: 0 2px 8px rgba(220,38,38,0.4);
}
.recipe-card-body { padding: 16px; }
.recipe-card-cat  {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--primary-light); margin-bottom: 6px;
}
.recipe-card-name { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.recipe-card-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
.recipe-card-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); }
.recipe-card-meta span { display: flex; align-items: center; gap: 4px; }
.recipe-stars { color: #f59e0b; font-size: 12px; }

/* PRODUCT CARD */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--surface); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img   { aspect-ratio: 5/4; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-body  { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-card-cat   { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 4px; }
.product-card-name  { font-size: 1rem; font-weight: 700; margin-bottom: 6px; line-height: 1.35; }
.product-card-desc  { font-size: 13px; color: var(--text-muted); flex: 1; margin-bottom: 12px; }
.product-card-footer{ display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price      { font-size: 1.1rem; font-weight: 700; color: var(--primary); }

/* PHOTO MOSAIC */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-mosaic .tile {
  overflow: hidden; position: relative; aspect-ratio: 4/3;
}
.photo-mosaic .tile:first-child,
.photo-mosaic .tile:last-child  { grid-row: span 2; aspect-ratio: auto; }
.photo-mosaic .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.photo-mosaic .tile:hover img   { transform: scale(1.05); }

/* PHOTO STRIP */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 32px 0;
}
.photo-strip .tile { overflow: hidden; border-radius: var(--radius-sm); aspect-ratio: 1/1; }
.photo-strip .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-strip .tile:hover img { transform: scale(1.06); }

/* RECIPE GALLERY */
.recipe-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.recipe-gallery .tile { overflow: hidden; border-radius: var(--radius-sm); aspect-ratio: 4/3; }
.recipe-gallery .tile img { width: 100%; height: 100%; object-fit: cover; }
.recipe-gallery-caption { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 8px; letter-spacing: 0.05em; text-transform: uppercase; }

/* CATEGORY GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.category-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(76,29,149,0.75) 0%, transparent 60%);
}
.category-card-label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 16px 12px;
  color: #fff; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
  text-align: center;
}

/* SUBSCRIPTION CARDS */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.plan-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 40px 36px; box-shadow: var(--shadow);
  border: 2px solid transparent; text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.plan-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; padding: 4px 18px;
  border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase;
}
.plan-name  { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.plan-price { font-size: 2.8rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 4px; }
.plan-period{ font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.plan-features { list-style: none; margin-bottom: 32px; text-align: left; }
.plan-features li { padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--border); display: flex; gap: 10px; }
.plan-features li::before { content: "*"; color: var(--primary); font-weight: 700; }

/* PAYWALL CARD */
.paywall-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius); padding: 48px 40px;
  text-align: center; color: #fff; margin: 32px 0;
}
.paywall-lock-icon { font-size: 48px; margin-bottom: 16px; line-height: 1; }
.paywall-card h2   { color: #fff; margin-bottom: 12px; }
.paywall-card p    { color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.paywall-features  { list-style: none; text-align: left; max-width: 400px; margin: 0 auto 32px; }
.paywall-features li { padding: 7px 0; font-size: 14px; color: rgba(255,255,255,0.9); display: flex; gap: 10px; }
.paywall-features li::before { content: "*"; color: var(--accent); font-weight: 700; }
.paywall-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn-white { background: #fff; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: var(--accent); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.6); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* RECIPE DETAIL */
.recipe-hero { position: relative; height: 460px; overflow: hidden; }
.recipe-hero img { width: 100%; height: 100%; object-fit: cover; }
.recipe-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
}
.recipe-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 40px 32px; color: #fff;
  max-width: var(--max-width); margin: 0 auto;
}
.recipe-eyebrow { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; padding: 4px 14px;
  border-radius: 20px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.pill-cat     { background: var(--primary); color: #fff; }
.pill-premium { background: var(--premium-red); color: #fff; }
.pill-free    { background: var(--free-olive); color: #fff; }
.recipe-hero-content h1 { color: #fff; margin-bottom: 8px; }
.recipe-meta-tiles {
  display: flex; flex-wrap: wrap; gap: 16px; margin: 28px 0;
}
.meta-tile {
  background: var(--surface2); border-radius: var(--radius-sm);
  padding: 14px 20px; text-align: center; min-width: 100px;
}
.meta-tile-label { font-size: 11px; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.08em; margin-bottom: 4px; }
.meta-tile-value { font-size: 1.1rem; font-weight: 700; color: var(--primary); }

/* RECIPE CONTENT */
.recipe-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin: 40px 0;
}
.recipe-ingredients { background: var(--surface2); border-radius: var(--radius); padding: 28px; }
.recipe-ingredients h3 { margin-bottom: 16px; font-size: 1.3rem; }
.ingredient-list { list-style: none; }
.ingredient-list li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 15px; display: flex; gap: 10px; }
.ingredient-list li::before { content: "-"; color: var(--primary); font-weight: 700; }
.recipe-method h3   { margin-bottom: 20px; font-size: 1.3rem; }
.method-step { display: flex; gap: 20px; margin-bottom: 24px; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.step-text { font-size: 15px; line-height: 1.65; padding-top: 6px; }
.blurred-preview { filter: blur(5px); pointer-events: none; user-select: none; opacity: 0.7; }

/* BANNER STRIP */
.recipes-banner {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 28px;
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 36px; flex-wrap: wrap;
}
.recipes-banner p { margin: 0; font-size: 14px; flex: 1; }
.recipes-banner p strong { color: var(--primary); }

/* FORMS */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; font-family: 'Inter', sans-serif;
  background: var(--surface); color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107,33,168,0.12);
}
.form-control.error { border-color: var(--error); }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.form-error{ font-size: 13px; color: var(--error); margin-top: 6px; }

/* ALERT */
.alert {
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 14px; margin-bottom: 20px;
  display: flex; gap: 10px; align-items: flex-start;
}
.alert-error   { background: #fef2f2; color: #991b1b; border-left: 3px solid var(--error); }
.alert-success { background: #f0fdf4; color: #166534; border-left: 3px solid var(--success); }
.alert-info    { background: var(--surface2); color: var(--primary-dark); border-left: 3px solid var(--primary); }

/* CHECKOUT / CART */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 16px 12px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.cart-img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; }
.qty-ctrl { display: flex; align-items: center; gap: 8px; }
.qty-btn  {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--surface2); color: var(--text);
  font-size: 16px; display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--primary); color: #fff; }
.qty-num  { font-weight: 700; min-width: 24px; text-align: center; }
.remove-btn { color: var(--error); font-size: 13px; }
.cart-summary { background: var(--surface2); border-radius: var(--radius); padding: 28px; }
.summary-row  { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.summary-row.total { font-weight: 800; font-size: 1.1rem; border-bottom: none; padding-top: 16px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }

/* ACCOUNT */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; }
.account-nav a  { display: block; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 15px; color: var(--text); margin-bottom: 4px; }
.account-nav a:hover, .account-nav a.active { background: var(--surface2); color: var(--primary); font-weight: 600; }
.account-section { background: var(--surface); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); margin-bottom: 24px; }
.account-section h3 { margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--surface); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 20px; }
.blog-card-cat  { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary-light); margin-bottom: 6px; }
.blog-card-title{ font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.blog-card-excerpt { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.blog-card-meta { font-size: 12px; color: var(--text-light); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  padding: 18px 0; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; font-weight: 600; font-size: 15px;
}
.faq-question::after { content: '+'; font-size: 22px; color: var(--primary); flex-shrink: 0; }
.faq-item.open .faq-question::after { content: '-'; }
.faq-answer { display: none; padding: 0 0 16px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card  { text-align: center; }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 16px; border: 3px solid var(--accent);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name  { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-role  { font-size: 13px; color: var(--primary-light); font-weight: 600; margin-bottom: 8px; }
.team-bio   { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* TOAST */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--text); color: #fff;
  padding: 14px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  transform: translateY(100px); opacity: 0;
  transition: all 0.3s ease; pointer-events: none;
  max-width: 320px; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.toast.success { background: var(--success); }
.toast.error   { background: var(--error); }

/* COOKIE NOTICE */
.cookie-notice {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--surface); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  display: none;
}
.cookie-notice.visible { display: block; }
.cookie-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-inner p   { margin: 0; font-size: 13px; flex: 1; }
.cookie-actions   { display: flex; gap: 10px; flex-shrink: 0; }

/* FOOTER */
.site-footer {
  background: var(--text); color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
  margin-top: 80px;
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand .logo-mark   { background: var(--primary); color: var(--accent); }
.footer-brand .logo-text   { color: #fff; }
.footer-tagline  { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 16px; font-style: italic; }
.footer-company  { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 12px; }
.footer-contact  { font-size: 13px; }
.footer-contact a{ color: var(--accent); }
.footer-col h4   { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul li{ margin-bottom: 10px; }
.footer-col a    { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: var(--max-width); margin: 0 auto; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }

/* MISC UTILITIES */
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.text-primary{ color: var(--primary); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.badge {
  display: inline-flex; align-items: center; padding: 3px 10px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.badge-purple { background: var(--surface2); color: var(--primary); }
.badge-green  { background: #f0fdf4; color: #166534; }
.page-hero { padding: 60px 0; background: var(--surface2); margin-bottom: 0; }
.page-hero h1 { margin-bottom: 12px; }
.breadcrumb   { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.breadcrumb a { color: var(--primary); }
.prose p      { font-size: 15px; line-height: 1.75; margin-bottom: 20px; }
.prose h3     { margin: 28px 0 12px; }
.prose ul     { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.prose ul li  { font-size: 15px; padding: 3px 0; }
.divider      { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.empty-state  { text-align: center; padding: 64px 24px; color: var(--text-muted); }
.empty-state h3 { margin-bottom: 12px; }

/* PRODUCT DETAIL */
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin: 40px 0; }
.product-detail-img    { border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4; }
.product-detail-img img{ width: 100%; height: 100%; object-fit: cover; }
.product-detail-price  { font-size: 2.2rem; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.feature-list { list-style: none; margin-bottom: 28px; }
.feature-list li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; display: flex; gap: 12px; }
.feature-list li::before { content: "*"; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* SUCCESS PAGE */
.success-card { text-align: center; max-width: 540px; margin: 80px auto; background: var(--surface); padding: 56px 48px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.success-icon { font-size: 56px; margin-bottom: 16px; }
.success-card h1 { margin-bottom: 12px; }

/* STARS */
.star.full  { color: #f59e0b; }
.star.half  { color: #fbbf24; }

/* =================================================
   RESPONSIVE
   ================================================= */

/* Tablet - 1024px */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .recipe-grid    { grid-template-columns: repeat(3, 1fr); }
  .product-grid   { grid-template-columns: repeat(3, 1fr); }
  .category-grid  { grid-template-columns: repeat(3, 1fr); }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .photo-mosaic   { grid-template-columns: repeat(3, 1fr); }
  .photo-strip    { grid-template-columns: repeat(4, 1fr); }
  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .checkout-layout{ grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .plan-grid      { max-width: 600px; }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .section  { padding: 48px 0; }
  .recipe-grid    { grid-template-columns: repeat(2, 1fr); }
  .product-grid   { grid-template-columns: repeat(2, 1fr); }
  .category-grid  { grid-template-columns: repeat(2, 1fr); }
  .photo-strip    { grid-template-columns: repeat(3, 1fr); }
  .photo-mosaic   { grid-template-columns: repeat(2, 1fr); }
  .blog-grid      { grid-template-columns: repeat(2, 1fr); }
  .recipe-layout  { grid-template-columns: 1fr; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .recipe-gallery { grid-template-columns: repeat(2, 1fr); }
  .plan-grid      { grid-template-columns: 1fr; }
  .grid-2, .grid-3{ grid-template-columns: 1fr; }
  .hero-content   { margin-left: 0; padding: 60px 24px; }
  .hero-actions   { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .footer-inner   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom  { flex-direction: column; gap: 8px; text-align: center; }
}

/* Small mobile - 480px */
@media (max-width: 480px) {
  .recipe-grid    { grid-template-columns: 1fr; }
  .product-grid   { grid-template-columns: 1fr; }
  .category-grid  { grid-template-columns: repeat(2, 1fr); }
  .photo-strip    { grid-template-columns: repeat(3, 1fr); }
  .recipe-gallery { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; }
  .container      { padding: 0 16px; }
  .cart-table th:nth-child(3), .cart-table td:nth-child(3) { display: none; }
  .paywall-card   { padding: 32px 20px; }
  .success-card   { padding: 32px 24px; }
}
