/* ============================================
   SWEET NOLAS - MAIN STYLESHEET
   Design: Editorial / Modern Food Magazine
   Fonts: Playfair Display + DM Sans
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::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; }

:root {
  --cream:    #FBF6F6;
  --sand:     #FBE8CE;
  --amber:    #D97A2B;
  --amber-dk: #B8621C;
  --rose:     #D96868;
  --charcoal: #1A1512;
  --mid:      #5C4A3A;
  --light:    #8C7B6B;
  --border:   #EDE5DC;
  --white:    #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius:   12px;
  --radius-lg:20px;
  --shadow:   0 4px 24px rgba(26,21,18,0.08);
  --shadow-lg:0 12px 48px rgba(26,21,18,0.14);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --bg:       #FBF6F6;
  --text:     #1A1512;
  --text-muted: #5C4A3A;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--amber); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber-dk); }

h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.text-amber { color: var(--amber); }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.section-header {
  margin-bottom: 2.5rem;
}
.section-header p {
  color: var(--mid);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0.75rem auto 0;
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--amber);
  margin: 1rem 0;
  border-radius: 2px;
}
.divider.center { margin: 1rem auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dk);
  border-color: var(--amber-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217,122,43,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-amber {
  background: transparent;
  color: var(--amber);
  border-color: var(--amber);
}
.btn-outline-amber:hover {
  background: var(--amber);
  color: var(--white);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; border-radius: 50px; }
.btn-ghost {
  background: transparent;
  color: var(--amber);
  border: none;
  padding: 0;
  font-weight: 600;
}
.btn-ghost:hover { color: var(--amber-dk); text-decoration: underline; }

/* ---- NAVIGATION ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(251,246,246,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(26,21,18,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 1.5rem;
  overflow: hidden;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--charcoal);
  font-weight: 600;
  white-space: nowrap;
}
.logo-text em { color: var(--amber); font-style: italic; }
.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-link {
  padding: 0.4rem 0.85rem;
  color: var(--mid);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--charcoal); background: var(--border); }
.nav-cta-link {
  padding: 0.4rem 1rem;
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1.5px solid var(--amber);
  transition: all var(--transition);
}
.nav-cta-link:hover { background: var(--amber); color: var(--white); }
.nav-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--charcoal);
  transition: all var(--transition);
}
.cart-btn:hover { background: var(--amber); color: var(--white); }
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count.hidden { display: none; }
.btn-nav-login {
  color: var(--mid);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}
.btn-nav-login:hover { color: var(--charcoal); }
.btn-nav-user {
  background: var(--sand);
  color: var(--charcoal);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.mobile-menu a {
  padding: 0.85rem 24px;
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: var(--sand); }
.mobile-menu .mobile-cta {
  color: var(--amber);
  font-weight: 700;
}
.mobile-menu.open { display: flex; }

/* ---- HERO - HOMEPAGE ---- */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}
.hero-content {
  padding: 80px 48px 80px 5%;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sand);
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}
.hero h1 {
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.hero h1 em {
  color: var(--amber);
  font-style: italic;
}
.hero p {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 460px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--light);
  font-weight: 500;
  margin-top: 0.2rem;
}
.hero-image-side {
  height: 92vh;
  position: relative;
  overflow: hidden;
}
.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease;
}
.hero-image-side:hover img { transform: scale(1.04); }
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217,122,43,0.15), transparent 60%);
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  min-width: 200px;
}
.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
}
.hero-badge-text span {
  font-size: 0.75rem;
  color: var(--light);
}

/* ---- MARQUEE / TICKER ---- */
.marquee-wrap {
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.85rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.85;
}
.marquee-track .dot {
  color: var(--amber);
  opacity: 1;
  font-size: 1.2rem;
  line-height: 1;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section-alt { background: var(--sand); }
.section-dark { background: var(--charcoal); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .section-label { color: var(--amber); }
.section-dark p { color: rgba(251,246,246,0.75); }

/* ---- CATEGORY GRID ---- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.cat-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform var(--transition);
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,18,0.8) 0%, rgba(26,21,18,0.1) 60%, transparent 100%);
}
.cat-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.cat-card-count {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-weight: 400;
  display: block;
  margin-top: 0.15rem;
}

/* ---- RECIPE GRID ---- */
.recipe-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.recipe-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(26,21,18,0.05);
  display: flex;
  flex-direction: column;
}
.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.recipe-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.recipe-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.recipe-card:hover .recipe-card-img img { transform: scale(1.06); }
.recipe-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--amber);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}
.recipe-badge.locked {
  background: var(--charcoal);
}
.recipe-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.recipe-cat-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.recipe-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.recipe-card-desc {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recipe-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--light);
  font-weight: 500;
}
.recipe-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.recipe-stars {
  color: var(--amber);
  font-size: 0.8rem;
}

/* ---- PRODUCT GRID ---- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(26,21,18,0.05);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--sand);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}
.product-card-body { padding: 1.25rem; }
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.product-card-cat {
  font-size: 0.75rem;
  color: var(--light);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--amber);
}
.product-rating {
  font-size: 0.78rem;
  color: var(--light);
}
.add-to-cart-btn {
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.add-to-cart-btn:hover {
  background: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217,122,43,0.3);
}

/* ---- FEATURED RECIPE STRIP ---- */
.featured-recipe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.featured-recipe-img {
  position: relative;
  min-height: 480px;
}
.featured-recipe-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-recipe-content {
  background: var(--charcoal);
  color: var(--cream);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-recipe-content .section-label { color: var(--amber); }
.featured-recipe-content h2 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}
.featured-recipe-content p { color: rgba(251,246,246,0.8); margin-bottom: 1.5rem; }
.featured-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.featured-meta-item {
  display: flex;
  flex-direction: column;
}
.featured-meta-item strong {
  font-size: 1.1rem;
  color: var(--cream);
  font-family: var(--font-display);
}
.featured-meta-item span {
  font-size: 0.75rem;
  color: rgba(251,246,246,0.55);
  font-weight: 500;
}

/* ---- HOW IT WORKS ---- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.how-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.how-card:hover {
  border-color: var(--amber);
  box-shadow: 0 8px 32px rgba(217,122,43,0.12);
  transform: translateY(-4px);
}
.how-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.how-card h3 { margin-bottom: 0.75rem; }
.how-card p { color: var(--mid); font-size: 0.92rem; margin: 0; }

/* ---- TESTIMONIALS ---- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.testi-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testi-stars { color: var(--amber); font-size: 1rem; margin-bottom: 1rem; }
.testi-text {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--amber);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
.testi-location { font-size: 0.75rem; color: var(--light); }

/* ---- SUBSCRIBE / PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 780px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 2px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--amber);
  transform: scale(1.03);
}
.pricing-card.featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 50px;
}
.pricing-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.pricing-amount sup {
  font-size: 1.3rem;
  vertical-align: super;
  font-weight: 600;
}
.pricing-period {
  font-size: 0.85rem;
  color: var(--light);
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--mid);
  margin-bottom: 0.65rem;
}
.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D97A2B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(217,122,43,0.12);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(217,122,43,0.08);
  pointer-events: none;
}
.cta-banner h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-banner p { color: rgba(251,246,246,0.75); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- BLOG GRID ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(26,21,18,0.05);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.5rem; }
.blog-cat-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.blog-card-title a { color: var(--charcoal); }
.blog-card-title a:hover { color: var(--amber); }
.blog-card-preview {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}
.blog-card-meta {
  font-size: 0.77rem;
  color: var(--light);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--charcoal);
  color: var(--cream);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero .section-label { color: var(--amber); }
.page-hero h1 { color: var(--cream); margin-bottom: 1rem; }
.page-hero p { color: rgba(251,246,246,0.75); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.page-hero-img {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,21,18,0.72) 0%, rgba(26,21,18,0.3) 100%);
  display: flex;
  align-items: center;
}
.page-hero-img-content {
  padding: 0 5%;
  max-width: 600px;
}
.page-hero-img-content .section-label { color: var(--amber); }
.page-hero-img-content h1 { color: var(--cream); margin-bottom: 1rem; }
.page-hero-img-content p { color: rgba(251,246,246,0.85); font-size: 1.05rem; }

/* ---- FILTER BAR ---- */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--mid);
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

/* ---- FORMS ---- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(217,122,43,0.1); }
.form-control::placeholder { color: var(--light); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row { display: flex; gap: 1rem; }

/* ---- AUTH PAGES ---- */
.auth-wrap {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.auth-image {
  height: 100%;
  min-height: 80vh;
  overflow: hidden;
  position: relative;
}
.auth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.auth-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,21,18,0.3), rgba(26,21,18,0.6));
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  color: var(--cream);
}
.auth-image-overlay blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
}
.auth-form-side {
  padding: 3rem 5%;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.auth-form-side h2 { margin-bottom: 0.5rem; }
.auth-form-side .subtitle {
  color: var(--mid);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* ---- ALERTS ---- */
.alert {
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.alert-error { background: #FEE; color: #C0392B; border: 1px solid #FAD7D7; }
.alert-success { background: #EEFAF3; color: #1A7F4A; border: 1px solid #C3EDDA; }
.alert-info { background: var(--sand); color: var(--charcoal); border: 1px solid var(--border); }

/* ---- ABOUT / TEAM ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  text-align: center;
}
.team-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--sand);
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.82rem;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.team-bio { font-size: 0.88rem; color: var(--mid); }

/* ---- VALUES GRID ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.value-card h4 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--mid); margin: 0; }

/* ---- DETAIL PAGES ---- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}
.product-detail-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  margin: 1rem 0;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 1.25rem;
}
.qty-btn {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--charcoal);
  transition: background var(--transition);
  font-family: var(--font-body);
}
.qty-btn:hover { background: var(--sand); }
.qty-input {
  width: 50px;
  border: none;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  font-family: var(--font-body);
  outline: none;
  background: none;
}

/* ---- RECIPE DETAIL ---- */
.recipe-detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.recipe-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.recipe-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.recipe-detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.meta-box {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.meta-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
}
.meta-box span {
  font-size: 0.75rem;
  color: var(--light);
  font-weight: 500;
}
.recipe-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1rem 0; }
.recipe-tag {
  background: var(--border);
  color: var(--mid);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.locked-recipe-banner {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}
.locked-recipe-banner h3 { color: var(--cream); margin-bottom: 0.75rem; }
.locked-recipe-banner p { color: rgba(251,246,246,0.75); margin-bottom: 1.5rem; }

/* ---- CART ---- */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}
.cart-items { }
.cart-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.cart-item-price { font-size: 0.88rem; color: var(--light); }
.cart-item-controls { margin-left: auto; display: flex; align-items: center; gap: 1rem; }
.cart-item-total { font-weight: 700; font-size: 1rem; color: var(--charcoal); }
.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--light);
  font-size: 1.1rem;
  transition: color var(--transition);
  font-family: var(--font-body);
  line-height: 1;
}
.cart-remove-btn:hover { color: var(--rose); }
.cart-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: sticky;
  top: 90px;
}
.cart-summary h3 { margin-bottom: 1.5rem; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 0.75rem;
}
.cart-summary-row.total {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--charcoal);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-top: 0.75rem;
}
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
}
.empty-state-icon { font-size: 3rem; margin-bottom: 1rem; color: var(--light); }
.empty-state h3 { margin-bottom: 0.5rem; }
.empty-state p { color: var(--mid); margin-bottom: 1.5rem; }

/* ---- CHECKOUT ---- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  align-items: start;
}
.checkout-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.checkout-card h3 { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.order-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: sticky;
  top: 90px;
}
.order-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.order-item-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--sand);
}
.order-item-img img { width: 100%; height: 100%; object-fit: cover; }
.order-item-name { font-size: 0.85rem; font-weight: 600; }
.order-item-price { font-size: 0.82rem; color: var(--light); }
.order-item-total { margin-left: auto; font-weight: 700; font-size: 0.9rem; }
.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1.5rem;
}
.guarantee-box p {
  font-size: 0.82rem;
  color: var(--mid);
  margin: 0;
  line-height: 1.5;
}
.guarantee-icon { color: var(--amber); flex-shrink: 0; margin-top: 2px; }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--amber); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: var(--mid); margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
}
.contact-detail-text strong { display: block; font-weight: 600; font-size: 0.88rem; }
.contact-detail-text span { font-size: 0.9rem; color: var(--mid); }

/* ---- CAREERS ---- */
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.job-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow);
}
.job-dept {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}
.job-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.35rem; }
.job-meta { font-size: 0.82rem; color: var(--light); margin-bottom: 1rem; }
.job-desc { font-size: 0.88rem; color: var(--mid); margin-bottom: 1.25rem; }

/* ---- ACCOUNT ---- */
.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.account-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.account-sidebar-header {
  background: var(--charcoal);
  color: var(--cream);
  padding: 1.5rem;
}
.account-sidebar-name { font-weight: 600; font-size: 1rem; }
.account-sidebar-email { font-size: 0.8rem; color: rgba(251,246,246,0.7); margin-top: 0.2rem; }
.account-nav { padding: 0.5rem 0; }
.account-nav a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  color: var(--mid);
  font-weight: 500;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.account-nav a:hover, .account-nav a.active {
  color: var(--amber);
  background: var(--sand);
  border-left-color: var(--amber);
}
.account-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.account-card h3 { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }

/* ---- PAYMENT SUCCESS ---- */
.success-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.success-icon {
  width: 90px;
  height: 90px;
  background: #EEFAF3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #1A7F4A;
}
.success-page h1 { margin-bottom: 1rem; }
.success-page p { color: var(--mid); max-width: 500px; margin: 0 auto 1.5rem; font-size: 1.05rem; }

/* ---- LEGAL PAGES ---- */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
  color: var(--charcoal);
}
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.legal-content p, .legal-content li { color: var(--mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.75rem; }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.legal-content th, .legal-content td { padding: 0.75rem 1rem; text-align: left; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.legal-content th { background: var(--sand); font-weight: 600; color: var(--charcoal); }

/* ---- SITEMAP ---- */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.sitemap-col h3 { margin-bottom: 1rem; font-size: 1rem; }
.sitemap-col ul { list-style: none; }
.sitemap-col ul li { margin-bottom: 0.5rem; }
.sitemap-col ul li a { font-size: 0.9rem; color: var(--mid); }
.sitemap-col ul li a:hover { color: var(--amber); }

/* ---- COOKIE NOTICE ---- */
.cookie-notice {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-notice.hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
.cookie-inner {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.cookie-notice p { color: rgba(251,246,246,0.85); font-size: 0.88rem; margin: 0; }
.cookie-notice a { color: var(--amber); }
.cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }

/* ---- FOOTER ---- */
.footer { background: #111; color: rgba(251,246,246,0.8); }
.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-brand .logo-mark { background: var(--amber); color: var(--white); }
.footer-brand .logo-text { color: var(--cream); }
.footer-tagline { font-size: 0.9rem; color: rgba(251,246,246,0.6); margin-bottom: 1rem; }
.footer-address { font-size: 0.82rem; color: rgba(251,246,246,0.5); margin-bottom: 0.5rem; }
.footer-email { font-size: 0.85rem; color: var(--amber); }
.footer-col h4 {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { color: rgba(251,246,246,0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--amber); }
.footer-subscribe-mini { margin-top: 1.5rem; }
.footer-subscribe-mini p { font-size: 0.82rem; color: rgba(251,246,246,0.6); margin-bottom: 0.6rem; }
.footer-form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(251,246,246,0.15);
}
.footer-form input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: none;
  padding: 0.6rem 1rem;
  color: var(--cream);
  font-size: 0.82rem;
  font-family: var(--font-body);
  outline: none;
}
.footer-form input::placeholder { color: rgba(251,246,246,0.35); }
.footer-form button {
  background: var(--amber);
  border: none;
  padding: 0.6rem 1.1rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition);
}
.footer-form button:hover { background: var(--amber-dk); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(251,246,246,0.4); margin: 0; }
.footer-disclaimer { font-size: 0.75rem; }

/* ---- PAGINATION ---- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--mid);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--amber); border-color: var(--amber); color: var(--white); }

/* ---- STARS ---- */
.stars { color: var(--amber); letter-spacing: -2px; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--light);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--amber); }
.breadcrumb-sep { color: var(--border); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-grid, .cart-layout { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-image { display: none; }
  .auth-form-side { padding: 3rem 2rem; }
  .recipe-detail-header { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-side { height: 50vh; }
  .hero-content { padding: 60px 5%; }
  .featured-recipe { grid-template-columns: 1fr; }
  .featured-recipe-img { min-height: 280px; }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: relative; top: auto; }
}

@media (max-width: 768px) {
  .how-grid, .testi-grid, .values-grid, .team-grid,
  .careers-grid, .contact-grid, .blog-grid { grid-template-columns: 1fr; }
  .recipe-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-stats { gap: 1.25rem; }
  .hero-badge { left: 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .form-grid-2 { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 0 40px; }
  .page-hero-img { height: 280px; }
  .section { padding: 56px 0; }
  .nav-actions .btn-sm { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .recipe-grid, .product-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .cta-actions { flex-direction: column; }
  .cookie-inner { flex-direction: column; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .sitemap-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   LEGAL PAGES
   =================================================== */
.legal-hero {
  background: var(--sand);
  padding: 5rem 0 3.5rem;
  text-align: center;
}
.legal-eyebrow {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 1rem;
}
.legal-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: .75rem;
}
.legal-meta {
  font-size: .9rem;
  color: var(--text-muted);
}
.legal-body {
  padding: 4rem 0 6rem;
}
.legal-container {
  max-width: 780px;
}
.legal-container h2 {
  font-size: 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin: 2.5rem 0 .8rem;
  color: var(--text);
}
.legal-container h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.75rem 0 .6rem;
}
.legal-container p,
.legal-container li {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: .97rem;
}
.legal-container ul,
.legal-container ol {
  padding-left: 1.5rem;
  margin: .75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.legal-container address {
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: .75rem;
}
.legal-container a {
  color: var(--amber);
  text-decoration: underline;
}

/* ============================================================
   BEM COMPONENT ALIASES + MISSING STYLES
   Maps all page class names to design system values
   ============================================================ */

/* --- BUTTONS (BEM variants) --- */
.btn--amber { background: var(--amber); color: var(--white); border: 2px solid var(--amber); padding: 0.7rem 1.75rem; border-radius: 50px; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.02em; cursor: pointer; transition: all var(--transition); display: inline-flex; align-items: center; gap: 0.4rem; text-decoration: none; }
.btn--amber:hover { background: var(--amber-dk); border-color: var(--amber-dk); color: var(--white); }
.btn--outline { background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); padding: 0.7rem 1.75rem; border-radius: 50px; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all var(--transition); display: inline-flex; align-items: center; text-decoration: none; }
.btn--outline:hover { background: var(--charcoal); color: var(--cream); }
.btn--cream { background: var(--cream); color: var(--charcoal); border: 2px solid var(--cream); padding: 0.7rem 1.75rem; border-radius: 50px; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all var(--transition); display: inline-flex; align-items: center; text-decoration: none; }
.btn--cream:hover { background: var(--sand); border-color: var(--sand); }
.btn--sm { padding: 0.45rem 1.1rem !important; font-size: 0.82rem !important; }
.btn--full { width: 100%; justify-content: center; text-align: center; }

/* --- ALERTS (BEM variants) --- */
.alert--error { background: #FEE; color: #C0392B; border: 1px solid #FAD7D7; padding: 0.9rem 1.2rem; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 1.25rem; font-weight: 500; }
.alert--success { background: #EEFAF3; color: #1A7F4A; border: 1px solid #C3EDDA; padding: 0.9rem 1.2rem; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 1.25rem; font-weight: 500; }

/* --- AUTH CARD (login / register) --- */
.auth-section { min-height: calc(100vh - 80px); display: flex; align-items: center; justify-content: center; padding: 3rem 1rem; background: var(--bg); }
.auth-card { background: var(--white); border-radius: 1.25rem; box-shadow: 0 4px 40px rgba(26,21,18,0.10); padding: 2.75rem 2.5rem; width: 100%; max-width: 460px; }
.auth-card__brand { text-align: center; margin-bottom: 2rem; }
.auth-card__logo { width: 52px; height: 52px; border-radius: 12px; margin: 0 auto 1rem; display: block; }
.auth-card__title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; margin-bottom: 0.35rem; }
.auth-card__sub { color: var(--mid); font-size: 0.92rem; }
.auth-card__row { display: flex; justify-content: flex-end; margin-bottom: 1rem; }
.auth-card__switch { text-align: center; margin-top: 1.5rem; font-size: 0.9rem; color: var(--mid); }
.auth-card__legal { font-size: 0.8rem; color: var(--mid); margin-bottom: 1.25rem; line-height: 1.5; }
.auth-link { color: var(--amber); font-weight: 500; text-decoration: none; }
.auth-link:hover { text-decoration: underline; }

/* --- PAGE HERO INNER (BEM) --- */
.page-hero__inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.page-hero__inner--overlay { position: relative; z-index: 2; }
.page-hero[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,21,18,0.55);
  z-index: 1;
}
.page-hero[style*="background-image"] { background-size: cover !important; background-position: center !important; }
.page-hero__eyebrow { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--amber); margin-bottom: 0.9rem; }
.page-hero__title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: var(--cream); margin-bottom: 1rem; line-height: 1.15; }
.page-hero__sub { color: rgba(251,246,246,0.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.65; }
.page-hero--sm { padding: 60px 0 48px; }

/* --- CTA BANNER (BEM) --- */
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner__title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--cream); margin-bottom: 0.5rem; }
.cta-banner__sub { color: rgba(251,246,246,0.75); font-size: 1rem; }

/* --- BLOG FEATURED --- */
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 2px 20px rgba(26,21,18,0.07); text-decoration: none; color: inherit; transition: box-shadow 0.3s; margin-bottom: 3rem; }
.blog-featured:hover { box-shadow: var(--shadow-lg); }
.blog-featured__img { aspect-ratio: 4/3; overflow: hidden; }
.blog-featured__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-featured:hover .blog-featured__img img { transform: scale(1.04); }
.blog-featured__body { padding: 2.5rem 2rem; }
.blog-featured__title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--charcoal); margin: 0.6rem 0 1rem; line-height: 1.25; }
.blog-featured__preview { color: var(--mid); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem; }

/* --- BLOG CARD (BEM) --- */
.blog-card__img-wrap { display: block; aspect-ratio: 16/10; overflow: hidden; }
.blog-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card__img-wrap img { transform: scale(1.06); }
.blog-card__body { padding: 1.5rem; }
.blog-card__cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem; display: block; }
.blog-card__title { font-family: var(--font-display); font-size: 1.1rem; color: var(--charcoal); margin-bottom: 0.6rem; line-height: 1.35; }
.blog-card__title a { color: var(--charcoal); text-decoration: none; }
.blog-card__title a:hover { color: var(--amber); }
.blog-card__preview { font-size: 0.86rem; color: var(--mid); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 1rem; }
.blog-card__meta { font-size: 0.77rem; color: var(--light); }

/* --- BLOG ARTICLE (detail page) --- */
.blog-article__container { max-width: 760px; }
.blog-article__header { margin-bottom: 2rem; }
.blog-article__title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; margin: 0.75rem 0 0.5rem; line-height: 1.2; }
.blog-article__hero { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; margin-bottom: 2.5rem; }
.blog-article__hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-article__body { font-size: 1rem; line-height: 1.8; color: var(--mid); }
.blog-article__body h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); margin: 2.5rem 0 1rem; }
.blog-article__body p { margin-bottom: 1.5rem; }
.blog-article__lead { font-size: 1.1rem; color: var(--charcoal); font-weight: 500; line-height: 1.7; margin-bottom: 2rem; }

/* --- PRODUCT CARDS (BEM) --- */
.product-card__img-wrap { display: block; aspect-ratio: 4/3; overflow: hidden; position: relative; }
.product-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card__img-wrap img { transform: scale(1.05); }
.product-card__badge { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--amber); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.65rem; border-radius: 50px; letter-spacing: 0.04em; }
.product-card__body { padding: 1.25rem 1rem; }
.product-card__cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.4rem; }
.product-card__name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.3; }
.product-card__name a { color: var(--charcoal); text-decoration: none; }
.product-card__name a:hover { color: var(--amber); }
.product-card__rating { display: flex; align-items: center; gap: 0.35rem; margin-bottom: 0.75rem; font-size: 0.82rem; color: var(--amber); }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.product-card__price { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--charcoal); }

/* --- PRODUCT DETAIL (BEM) --- */
.product-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.product-detail__img { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.product-detail__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-detail__info {}
.product-detail__name { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 0.75rem; }
.product-detail__desc { color: var(--mid); line-height: 1.75; margin-bottom: 1.5rem; }
.product-detail__price { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--amber); margin-bottom: 1.5rem; }
.product-detail__actions { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.product-detail__perks { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.product-detail__perks li { font-size: 0.88rem; color: var(--mid); }

/* --- TEAM CARD (BEM) --- */
.team-card__img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.25rem; display: block; border: 4px solid var(--sand); }
.team-card__name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.25rem; }
.team-card__role { font-size: 0.82rem; color: var(--amber); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.75rem; }
.team-card__bio { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }

/* --- VALUE CARD (BEM) --- */
.value-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--sand); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.5rem; }

/* --- TESTIMONIAL CARD (BEM) --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; border: 1px solid var(--border); }
.testimonial-card__text { font-size: 0.95rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-card__author { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); }

/* --- PRICING CARD (BEM) --- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; max-width: 780px; margin: 3rem auto 0; }
.pricing-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem 2rem; position: relative; transition: all 0.3s; }
.pricing-card--featured { border-color: var(--amber); box-shadow: 0 8px 40px rgba(217,122,43,0.15); transform: scale(1.02); }
.pricing-card__badge { display: inline-block; background: var(--amber); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 50px; letter-spacing: 0.05em; margin-bottom: 1rem; }
.pricing-card__plan { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mid); margin-bottom: 0.5rem; }
.pricing-card__price { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.25rem; line-height: 1; }
.pricing-card__price span { font-size: 1.25rem; }
.pricing-card__price small { font-family: var(--font-body); font-size: 0.9rem; color: var(--mid); font-weight: 400; }
.pricing-card__savings { font-size: 0.82rem; color: var(--amber); font-weight: 600; margin-bottom: 1.5rem; }
.pricing-card__perks { list-style: none; padding: 0; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-card__perks li { font-size: 0.9rem; color: var(--mid); padding-left: 1.25rem; position: relative; }
.pricing-card__perks li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }

/* --- ACCOUNT (BEM) --- */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.account-sidebar { position: sticky; top: 6rem; }
.account-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--amber); color: var(--white); font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.account-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.account-email { font-size: 0.85rem; color: var(--mid); margin-bottom: 1.5rem; }
.account-nav { display: flex; flex-direction: column; gap: 0.35rem; }
.account-nav__link { display: block; padding: 0.6rem 1rem; border-radius: 0.5rem; font-size: 0.9rem; color: var(--mid); text-decoration: none; transition: all 0.2s; }
.account-nav__link:hover, .account-nav__link.active { background: var(--sand); color: var(--charcoal); }
.account-nav__link--danger { color: #C0392B; margin-top: 0.75rem; }
.account-nav__link--danger:hover { background: #FEE; color: #C0392B; }
.account-main { min-width: 0; }
.account-block { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 2rem; margin-bottom: 1.5rem; }
.account-block__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.account-status { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 1.1rem; border-radius: 0.6rem; margin-bottom: 1rem; font-weight: 600; font-size: 0.9rem; }
.account-status--active { background: #EEFAF3; color: #1A7F4A; }
.account-status--inactive { background: var(--sand); color: var(--mid); }
.account-status__plan { font-size: 0.8rem; font-weight: 500; }

/* --- ABOUT PAGE (BEM) --- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-intro__text { }
.about-intro__text h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1.25rem; }
.about-intro__text p { color: var(--mid); line-height: 1.75; margin-bottom: 1rem; }
.about-intro__img { border-radius: var(--radius-lg); overflow: hidden; }
.about-intro__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* --- FORM ROW VARIANTS --- */
.form-row--3 { grid-template-columns: 2fr 1fr 1fr !important; }

/* --- RESPONSIVE ADDITIONS --- */
@media (max-width: 1024px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__img { aspect-ratio: 16/9; }
  .product-detail__grid { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
}
@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; }
  .about-intro__img { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 2rem 1.5rem; }
}
