/* ============================================================
   TasteForge – Premium Kitchen & Recipe Landing Page
   style.css
   ============================================================ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --primary:     #FF6B35;
  --secondary:   #F7931E;
  --bg:          #FFF8F2;
  --dark:        #222222;
  --white:       #FFFFFF;
  --accent:      #FFE4D6;
  --text:        #444444;
  --text-light:  #777777;
  --card-bg:     #FFFFFF;
  --border:      rgba(255,107,53,0.12);
  --shadow:      0 8px 40px rgba(255,107,53,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12);
  --radius:      16px;
  --radius-sm:   10px;
  --transition:  0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  --nav-h:       72px;
  --grad:        linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

[data-theme="dark"] {
  --bg:         #0f0f0f;
  --dark:       #f0f0f0;
  --text:       #cccccc;
  --text-light: #888888;
  --card-bg:    #1a1a1a;
  --border:     rgba(255,107,53,0.18);
  --white:      #1a1a1a;
  --shadow:     0 8px 40px rgba(0,0,0,0.40);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--grad);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── LOADING SCREEN ── */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s, visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo { font-size: 3rem; animation: spin 1.2s linear infinite; display: inline-block; }
.loader-bar {
  width: 200px; height: 4px;
  background: var(--accent);
  border-radius: 99px;
  margin: 20px auto 12px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 99px;
  animation: loadFill 1.5s ease forwards;
}
.loader-text { color: var(--text-light); font-size: 0.85rem; }

@keyframes loadFill { from { width: 0 } to { width: 100% } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── CONTAINER ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION BASE ── */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em {
  color: var(--primary);
  font-style: italic;
}
.section-sub {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
}
.section-cta { text-align: center; margin-top: 50px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.50);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.btn-lg  { padding: 16px 36px; font-size: 1rem; }
.btn-sm  { padding: 9px 20px; font-size: 0.82rem; }
.btn-ghost-sm {
  padding: 9px 18px;
  font-size: 0.82rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  color: var(--text);
  transition: var(--transition);
  font-weight: 500;
}
.btn-ghost-sm:hover { border-color: var(--primary); color: var(--primary); }

/* Ripple */
.ripple { isolation: isolate; }
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--card-bg);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--transition);
  position: relative;
}
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }
.navbar:not(.scrolled) .nav-links a:hover { color: #fff; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-search-btn, .dark-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: var(--dark);
  font-size: 0.95rem;
}
.navbar:not(.scrolled) .nav-search-btn,
.navbar:not(.scrolled) .dark-toggle { color: rgba(255,255,255,0.85); }
.nav-search-btn:hover, .dark-toggle:hover {
  background: rgba(255,107,53,0.12);
  color: var(--primary);
}
.nav-hamburger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--dark);
}
.navbar:not(.scrolled) .nav-hamburger { color: #fff; }

/* Search Bar */
.search-bar {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.search-bar.open { max-height: 80px; padding: 14px 0; }
.search-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.search-inner input {
  flex: 1;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  background: var(--bg);
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
}
.search-inner input:focus { border-color: var(--primary); }
.search-submit, .search-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.search-close { background: #eee; color: #666; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 20s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 720px;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,107,53,0.2);
  border: 1px solid rgba(255,107,53,0.5);
  color: #FFB38A;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-heading em { font-style: italic; color: var(--secondary); }
.hero-accent { color: var(--primary); }

.hero-subtext {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-stat { text-align: center; }
.hero-stat .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.hero-stat .stat-suffix { color: var(--primary); font-weight: 700; font-size: 1.4rem; }
.hero-stat p { color: rgba(255,255,255,0.65); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.hero-stat-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.2);
}

/* Hero floating emojis */
.hero-float {
  position: absolute;
  font-size: 2.4rem;
  user-select: none;
  pointer-events: none;
  animation: floatBob 4s ease-in-out infinite;
  z-index: 2;
}
.hero-float-1 { top: 20%; right: 15%; animation-delay: 0s; }
.hero-float-2 { top: 55%; right: 8%; animation-delay: 1.3s; }
.hero-float-3 { bottom: 20%; right: 22%; animation-delay: 2.6s; }
@keyframes floatBob {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%       { transform: translateY(-20px) rotate(8deg); }
}

/* Hero Scroll Cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: bounceDot 1.4s ease-in-out infinite;
}
@keyframes bounceDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.4; }
}

/* ── CATEGORIES ── */
.categories-section { background: var(--bg); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.cat-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-img { transform: scale(1.08); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
  transition: background 0.3s ease;
}
.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(255,107,53,0.82) 0%, rgba(0,0,0,0.3) 100%);
}
.cat-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  color: #fff;
  z-index: 2;
}
.cat-icon { font-size: 1.8rem; display: block; margin-bottom: 6px; }
.cat-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.cat-count { font-size: 0.78rem; opacity: 0.8; }

/* ── RECIPES ── */
.recipes-section { background: var(--card-bg); }

.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text);
  transition: var(--transition);
  background: transparent;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(255,107,53,0.30);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.recipe-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  animation-delay: var(--delay);
}
.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.recipe-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.recipe-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.recipe-card:hover .recipe-img-wrap img { transform: scale(1.06); }
.recipe-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--grad);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.recipe-badge.new { background: linear-gradient(135deg, #2ecc71, #1abc9c); }
.wishlist-btn {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.wishlist-btn:hover, .wishlist-btn.active { color: #e74c3c; transform: scale(1.1); }
.wishlist-btn.active i { font-weight: 900; }

.recipe-body { padding: 20px; }
.recipe-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.recipe-meta .fa-star { color: #f59e0b; }
.recipe-diff {
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}
.recipe-diff.easy   { background: rgba(46,204,113,0.15); color: #2ecc71; }
.recipe-diff.medium { background: rgba(255,165,0,0.15);  color: #f59e0b; }
.recipe-diff.hard   { background: rgba(231,76,60,0.15);  color: #e74c3c; }

.recipe-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.35;
}
.recipe-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ── KITCHEN TOOLS ── */
.tools-section { background: var(--bg); }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tool-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  animation-delay: var(--delay);
}
.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tool-wishlist {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  transition: var(--transition);
}
.tool-wishlist:hover { background: #e74c3c; color: #fff; transform: scale(1.1); }
.tool-img {
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--accent);
}
.tool-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tool-card:hover .tool-img img { transform: scale(1.05); }
.tool-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.78rem;
  color: #f59e0b;
  margin-bottom: 8px;
}
.tool-rating span { color: var(--text-light); margin-left: 4px; }
.tool-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.tool-body p {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.6;
}
.tool-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.tool-old-price {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 4px;
}
.tool-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── WHY SECTION ── */
.why-section {
  background: var(--card-bg);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,53,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  padding: 36px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  animation-delay: var(--delay);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(255,107,53,0.18);
}
.why-icon {
  width: 68px; height: 68px;
  background: var(--grad);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { transform: rotate(-6deg) scale(1.08); }
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ── VIDEO SECTION ── */
.video-section { background: var(--bg); }
.video-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 16/9;
}
.video-thumb {
  position: relative;
  width: 100%; height: 100%;
  cursor: pointer;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: var(--grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 0 0 16px rgba(255,107,53,0.25);
  transition: var(--transition);
  padding-left: 5px;
}
.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 0 24px rgba(255,107,53,0.20);
}
.yt-iframe {
  width: 100%; height: 100%;
  border: none;
}
.yt-iframe.hidden { display: none; }

.video-text .section-title { text-align: left; }
.video-features {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.video-features .fa-check-circle { color: var(--primary); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--card-bg); overflow: hidden; }
.testimonial-slider { overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }

/* Glassmorphism */
.glass {
  background: rgba(255, 248, 242, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,107,53,0.12);
}
[data-theme="dark"] .glass {
  background: rgba(26, 26, 26, 0.6);
  border-color: rgba(255,107,53,0.15);
}

.testi-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: flex; gap: 3px;
}
.testi-quote {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-author img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.testi-author span  { font-size: 0.78rem; color: var(--text-light); }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.testi-prev, .testi-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--text);
  transition: var(--transition);
}
.testi-prev:hover, .testi-next:hover {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  background: var(--border);
  border-radius: 50%;
  transition: var(--transition);
  cursor: pointer;
}
.testi-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ── BLOG ── */
.blog-section { background: var(--bg); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--grad);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-body { padding: 22px; }
.blog-date {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 10px;
}
.blog-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}
.blog-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.blog-link:hover { gap: 10px; }

/* ── NEWSLETTER ── */
.newsletter-section { background: var(--card-bg); }
.newsletter-box {
  background: var(--grad);
  border-radius: 24px;
  padding: 64px 80px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.newsletter-text { flex: 1; position: relative; }
.newsletter-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin: 12px 0;
  line-height: 1.25;
}
.newsletter-text h2 em { font-style: italic; }
.newsletter-text p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin-bottom: 14px;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 20px;
  border-radius: 50px;
  border: none;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { background: rgba(255,255,255,0.28); }
.newsletter-note { font-size: 0.78rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 6px; }

.newsletter-art {
  flex-shrink: 0;
  position: relative;
  width: 220px;
  height: 180px;
}
.nl-emoji {
  position: absolute;
  font-size: 2.8rem;
  animation: floatBob 3s ease-in-out infinite;
}
.nl-e1 { top: 0;   left: 30%;  animation-delay: 0s; }
.nl-e2 { top: 30%; left: 0;    animation-delay: 0.5s; }
.nl-e3 { top: 55%; left: 55%;  animation-delay: 1s; }
.nl-e4 { top: 5%;  right: 0;   animation-delay: 1.5s; }
.nl-e5 { bottom: 0; left: 15%; animation-delay: 2s; }

/* ── FAQ ── */
.faq-section { background: var(--bg); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--card-bg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--primary); }
.faq-q {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--primary); }
.faq-item.open .faq-q { color: var(--primary); }
.faq-q i {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--text-light);
  transition: transform 0.35s ease;
}
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--primary); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── INSTAGRAM GALLERY ── */
.insta-section { background: var(--card-bg); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.insta-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insta-hover {
  position: absolute; inset: 0;
  background: rgba(255,107,53,0.7);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.insta-item:hover .insta-hover { opacity: 1; }
.insta-item:hover img { transform: scale(1.08); }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
[data-theme="dark"] .footer { background: #080808; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-logo .logo-text { color: var(--primary); }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin: 16px 0 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--primary); }
.footer-col p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 14px; }
.footer-form {
  display: flex;
  gap: 8px;
}
.footer-form input {
  flex: 1;
  padding: 9px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 0.83rem;
  outline: none;
}
.footer-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-form input:focus { border-color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--primary); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--grad);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(255,107,53,0.40);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-3px); }

/* ── SCROLL ANIMATIONS ── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}
[data-animate="fade-left"]  { transform: translateX(-30px); }
[data-animate="fade-right"] { transform: translateX(30px); }
[data-animate="zoom"]       { transform: scale(0.93); }
[data-animate].animated {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .why-grid            { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr 1fr; }
  .insta-grid          { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .categories-grid     { grid-template-columns: repeat(2, 1fr); }
  .recipes-grid        { grid-template-columns: repeat(2, 1fr); }
  .tools-grid          { grid-template-columns: repeat(2, 1fr); }
  .blog-grid           { grid-template-columns: 1fr 1fr; }
  .video-layout        { grid-template-columns: 1fr; gap: 40px; }
  .newsletter-box      { padding: 48px 40px; flex-direction: column; }
  .testimonial-card    { flex: 0 0 calc(100% - 0px); }
}
@media (max-width: 768px) {
  .section             { padding: 72px 0; }
  .nav-links           { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--card-bg); padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 0; box-shadow: var(--shadow-lg); }
  .nav-links.open      { display: flex; }
  .nav-links a         { color: var(--dark) !important; padding: 12px 0; border-bottom: 1px solid var(--border); width: 100%; font-size: 1rem; }
  .nav-shop-btn        { display: none; }
  .nav-hamburger       { display: flex; }
  .categories-grid     { grid-template-columns: 1fr 1fr; }
  .recipes-grid        { grid-template-columns: 1fr; }
  .tools-grid          { grid-template-columns: 1fr; }
  .blog-grid           { grid-template-columns: 1fr; }
  .why-grid            { grid-template-columns: 1fr 1fr; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .newsletter-box      { padding: 40px 28px; }
  .newsletter-art      { display: none; }
  .hero-stats          { gap: 20px; }
  .insta-grid          { grid-template-columns: repeat(3, 1fr); }
  .hero-float          { display: none; }
  .newsletter-form     { flex-direction: column; }
}
@media (max-width: 480px) {
  .categories-grid     { grid-template-columns: 1fr; }
  .why-grid            { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; }
  .insta-grid          { grid-template-columns: repeat(2, 1fr); }
  .hero-stats          { flex-direction: column; gap: 12px; }
  .hero-stat-divider   { width: 60px; height: 1px; }
  .section-title       { font-size: 1.8rem; }
}