/* ===== COOKFIT GRANOLA — MAIN STYLESHEET ===== */

@font-face {
  font-family: 'ravi';
  src: url('fonts/rav.woff2') format('woff2');
  font-display: swap;
}
/* ===== CSS VARIABLES ===== */
:root {
  --clr-bg: #f6f6f6;
  --clr-bg2: #f2f2f2;
  --clr-dark: #1a1208;
  --clr-dark2: #2d2010;
  --clr-primary: #d78b3e;
  --clr-primary-light: #e07a2a;
  --clr-primary-dark: #9e4d06;
  --clr-accent: #6b9e3f;
  --clr-accent2: #e8c547;
  --clr-muted: #8a7460;
  --clr-border: #dadad9;
  --clr-card: #fffcf6;
  --clr-card-hover: #f4f3f3;
  --clr-section-dark: #2b2b2b;

  --font-main: 'ravi', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-sm: 0 2px 12px rgba(26,18,8,.07);
  --shadow-md: 0 6px 30px rgba(26,18,8,.12);
  --shadow-lg: 0 16px 60px rgba(26,18,8,.18);

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-dark);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-main); border: none; background: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== IMAGE PLACEHOLDERS (dev helper) ===== */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #f5e8d0 0%, #e8d0b0 50%, #d4b890 100%);
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--clr-muted);
  font-size: 13px;
  text-align: center;
  padding: 20px;
  border: 2px dashed var(--clr-border);
}
.img-placeholder span { font-size: 32px; }
.img-placeholder small { opacity: .7; font-size: 11px; direction: ltr; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.light h2,
.section-header.light .section-label { color: #fff; }
.section-header.light p { color: rgba(255,255,255,.75); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: rgba(196,98,10,.1);
  border-radius: 100px;
  padding: 4px 16px;
  margin-bottom: 12px;
}
h2 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 12px;
}
h2 em {
  font-style: normal;
  color: var(--clr-primary);
  position: relative;
}
.section-header p {
  color: var(--clr-muted);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  padding: 14px 32px;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(196,98,10,.35);
}
.btn-primary:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,98,10,.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--clr-dark);
  font-size: 16px;
  font-weight: 200;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid var(--clr-border);
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: rgba(196,98,10,.05);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  background: rgba(253,248,240,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo-text {
  font-size: 22px;
  font-weight: 900;
  color: var(--clr-primary);
  letter-spacing: -1px;
}
.logo-sub {
  font-size: 13px;
  color: var(--clr-muted);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-dark);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { background: rgba(196,98,10,.08); color: var(--clr-primary); }
.nav-cta {
  background: var(--clr-primary) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 9px 22px !important;
  border-radius: 100px !important;
}
.nav-cta:hover { background: var(--clr-primary-dark) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--clr-dark); border-radius: 2px; transition: var(--transition); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--clr-border);
  gap: 4px;
}
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-dark);
  padding: 10px 14px;
  border-radius: 10px;
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(196,98,10,.08); color: var(--clr-primary); }
.mobile-cta {
  background: var(--clr-primary) !important;
  color: #fff !important;
  text-align: center;
  font-weight: 700 !important;
  margin-top: 8px;
  border-radius: 12px !important;
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: .6;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: blob-float 8s ease-in-out infinite;
}
.blob-1 { width: 500px; height: 500px; background: radial-gradient(circle, #f5c07a, transparent 70%); top: -10%; right: -10%; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: radial-gradient(circle, #c4620a44, transparent 70%); top: 40%; left: 5%; animation-delay: -3s; }
.blob-3 { width: 300px; height: 300px; background: radial-gradient(circle, #6b9e3f33, transparent 70%); bottom: 10%; right: 20%; animation-delay: -5s; }

@keyframes blob-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content { position: relative; z-index: 1;  }
.hero-visual { position: relative; z-index: 1; padding: 80px 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196,98,10,.1);
  color: var(--clr-primary);
  font-size: 13px;
  font-weight: 200;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(196,98,10,.2);
  margin-bottom: 20px;
  animation: fade-up .6s ease both;
}
.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
  animation: fade-up .6s .1s ease both;
}
.title-line { color: var(--clr-dark); }
.title-brand {
  color: var(--clr-primary);
  -webkit-text-stroke: 2px var(--clr-primary);
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #ffab58, #fff);
  -webkit-background-clip: text;
}
.hero-desc {
  font-size: 18px;
  font-weight: 200;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 460px;
  animation: fade-up .6s .2s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fade-up .6s .3s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fade-up .6s .4s ease both;
}
.stat { text-align: center; }
.stat-n { display: block; font-size: 28px; font-weight: 300; color: var(--clr-primary); }
.stat-l { display: block; font-size: 12px; color: var(--clr-muted); font-weight: 300; }
.stat-div { width: 1px; height: 36px; background: var(--clr-border); }

.hero-img-wrap { position: relative; }
.hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: scale-in .8s .2s ease both;
}
.hero-float-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.float-1 { bottom: 30px; right: -20px; animation: float 3s ease-in-out infinite; }
.float-2 { top: 40px; left: -20px; animation: float 3s 1.5s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== ABOUT OATS ===== */
.about-oats {
  padding: 100px 0;
  background: var(--clr-bg2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-col {
  display: grid;
  grid-template-rows: auto auto;
  gap: 16px;
}
.about-img { min-height: 340px; border-radius: var(--radius-lg); overflow: hidden; }
.about-img-small { height: 160px; }
.about-img-small .img-placeholder { min-height: 160px; border-radius: var(--radius-md); }

.about-text-col h2 { margin-bottom: 20px; }
.about-text-col p {
  color: var(--clr-muted);
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 16px;
}
.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 300;
  transition: var(--transition);
}
.benefit-item:hover { border-color: var(--clr-primary); background: var(--clr-card-hover); }
.benefit-icon { font-size: 20px; }

/* ===== FLAVORS ===== */
.flavors-section {
  padding: 100px 0;
  background: var(--clr-bg);
}
.flavors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.flavor-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.flavor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-primary);
}
.flavor-img-wrap { position: relative; height: 220px; overflow: hidden; }
.flavor-img { min-height: 220px; border-radius: 0; }
.flavor-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 200;
  padding: 5px 14px;
  border-radius: 100px;
  color: #fff;
  z-index: 2;
}
.flavor-badge.bestseller { background: var(--clr-primary); }
.flavor-badge.energy { background: #c47a0a; }
.flavor-badge.premium { background: #7e40c4; }

.flavor-body { padding: 20px; }
.flavor-emoji { font-size: 28px; margin-bottom: 8px; }
.flavor-body h3 { font-size: 20px; font-weight: 400; margin-bottom: 8px; }
.flavor-body p { font-size: 14px; color: var(--clr-muted); margin-bottom: 14px; line-height: 1.6; }
.flavor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.flavor-tags span {
  font-size: 11px;
  font-weight: 400;
  padding: 3px 12px;
  border-radius: 100px;
  background: rgba(196,98,10,.08);
  color: var(--clr-primary);
  border: 1px solid rgba(196,98,10,.15);
}
.flavor-qr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--clr-border);
}
.qr-placeholder {
  width: 52px;
  height: 52px;
  min-height: 52px;
  background: linear-gradient(135deg, #f0e4d0, #e0d0b8);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-muted);
  border: 1px dashed var(--clr-border);
  text-align: center;
}
.qr-placeholder p { font-size: 7px; direction: ltr; }
.qr-label { font-size: 12px; color: var(--clr-muted); }

/* ===== PACKAGES ===== */
.packages-section {
  padding: 100px 0;
  background: #1d2023;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.package-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: #fff;
  transition: var(--transition);
}
.package-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-4px);
}
.package-card.featured {
  background: rgba(196,98,10,.25);
  border-color: var(--clr-primary);
  position: relative;
}
.package-card.featured::before {
  content: "محبوب‌ترین";
  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
  background: var(--clr-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.package-card.pro {
  background: url("../assets/images/1kg.jpg") center / cover no-repeat;
  border-color: rgba(107, 158, 63, 0.9);
  position: relative;
  overflow: hidden;
}

.package-card.pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(57, 57, 57, 0.7); /* همون رنگ محوی قدیم */
  z-index: 0;
}

.package-card.pro > * {
  position: relative;
  z-index: 1; /* محتوا بالاتر از overlay */
}



.pkg-icon { font-size: 32px; margin-bottom: 10px; }
.pkg-weight { font-size: 32px; font-weight: 300; margin-bottom: 4px; }
.pkg-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 300;
  padding: 3px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,.12);
  margin-bottom: 14px;
}
.pkg-badge.cafe { background: rgba(107,158,63,.3); }
.package-card h3 { font-size: 18px; font-weight: 150; margin-bottom: 8px; }
.package-card p { font-size: 14px; opacity: .7; margin-bottom: 16px; line-height: 1.6; }
.package-card ul { display: flex; flex-direction: column; gap: 6px; }
.package-card li {
  font-size: 13px;
  opacity: .8;
  padding-right: 12px;
  position: relative;
}
.package-card li::before { content: "✓"; position: absolute; right: 0; color: var(--clr-accent2); font-weight: 700; }
.pkg-img-wrap { margin-top: 18px; border-radius: var(--radius-md); overflow: hidden; height: 120px; }
.pkg-img { min-height: 120px; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.5); }

/* ===== USAGE ===== */
.usage-section {
  padding: 100px 0;
  background: var(--clr-bg);
}
.usage-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.usage-tab {
  font-size: 14px;
  font-weight: 300;
  padding: 10px 22px;
  border-radius: 100px;
  border: 2px solid var(--clr-border);
  color: var(--clr-muted);
  background: transparent;
  transition: var(--transition);
}
.usage-tab:hover { border-color: var(--clr-primary); color: var(--clr-primary); }
.usage-tab.active {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196,98,10,.3);
}
.usage-panel { display: none; }
.usage-panel.active { display: block; animation: fade-up .4s ease both; }
.usage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.usage-text h3 { font-size: 28px; font-weight: 300; margin-bottom: 12px; }
.usage-text p { color: var(--clr-muted); font-size: 16px; margin-bottom: 20px; line-height: 1.7; }
.usage-items { display: flex; flex-wrap: wrap; gap: 10px; }
.usage-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 300;
  transition: var(--transition);
}
.usage-item:hover { background: rgba(196,98,10,.08); border-color: var(--clr-primary); color: var(--clr-primary); }
.usage-img .img-placeholder { min-height: 300px; border-radius: var(--radius-lg); }

/* ===== NUTRITION ===== */
.nutrition-section {
  padding: 100px 0;
  background: var(--clr-bg2);
}
.nutrition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nutrition-text h2 { margin-bottom: 16px; }
.nutrition-text p { color: var(--clr-muted); font-size: 16px; margin-bottom: 24px; }
.nutrition-benefits { margin-bottom: 20px; display: flex; flex-direction: column; gap: 10px; }
.nb-item { font-size: 15px; font-weight: 300; color: var(--clr-dark); }
.nutrition-note { font-size: 13px; color: var(--clr-muted); }

.nut-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.nut-header {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-muted);
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 14px;
  margin-bottom: 18px;
  letter-spacing: .5px;
}
.nut-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.nut-label { font-size: 13px; font-weight: 300; color: var(--clr-muted); }
.nut-bar-wrap { position: relative; }
.nut-bar {
  height: 28px;
  width: var(--pct);
  background: linear-gradient(90deg, #6bbf6b, #3a9e3a);
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  min-width: 120px;
  transition: width 1s ease;
}
.nut-bar.protein { background: linear-gradient(90deg, #6bbf6b, #3a9e3a); }
.nut-bar.fat { background: linear-gradient(90deg, #e0b847, #c49e1a); }
.nut-bar.carb { background: linear-gradient(90deg, #c4b10a, #a08906); }
.nut-bar.fiber { background: linear-gradient(90deg, #6b9e8a, #3a7e6a); }
.nut-bar span { font-size: 11px; font-weight: 100; color: #fff; white-space: nowrap; }

/* ===== RECIPES ===== */
.recipes-section {
  padding: 100px 0;
  background: var(--clr-bg);
}
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.recipe-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.recipe-img-wrap { position: relative; height: 200px; }
.recipe-img { min-height: fit-content; border-radius: 0; }
.recipe-time {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  padding: 4px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.recipe-body { padding: 20px; }
.recipe-emoji { font-size: 28px; margin-bottom: 8px; }
.recipe-body h3 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.recipe-desc { font-size: 13px; color: var(--clr-muted); margin-bottom: 12px; }
.recipe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.recipe-tags span {
  font-size: 11px;
  font-weight: 200;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(107,158,63,.1);
  color: var(--clr-accent);
  border: 1px solid rgba(107,158,63,.2);
}
.recipe-toggle {
  width: 100%;
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-primary);
  padding: 10px 0;
  border-top: 1px solid var(--clr-border);
  transition: var(--transition);
}
.recipe-toggle:hover { opacity: .75; }
.recipe-details {
  display: none;
  padding-top: 16px;
  animation: fade-up .3s ease;
}
.recipe-details.open { display: block; }
.recipe-ingredients, .recipe-steps { margin-bottom: 14px; }
.recipe-ingredients strong, .recipe-steps strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-dark);
  display: block;
  margin-bottom: 8px;
}
.recipe-ingredients ul, .recipe-steps ol {
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.recipe-ingredients li, .recipe-steps li {
  font-size: 13px;
  color: var(--clr-muted);
  list-style: disc;
}
.recipe-steps li { list-style: decimal; }
.recipe-notes {
  font-size: 13px;
  color: var(--clr-primary);
  background: rgba(196,98,10,.07);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-weight: 500;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0;
  background: var(--clr-section-dark);
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,.05);
}
.faq-q {
  width: 100%;
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}
.faq-q:hover { background: rgba(255,255,255,.05); }
.faq-arrow { transition: transform .3s; font-size: 14px; opacity: .6; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}
.faq-a.open { display: block; animation: fade-up .3s ease; }

/* ===== CONTACT ===== */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff 0%, #faffff 50%, #d8d8d8 100%);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-text h2 { margin-bottom: 14px; }
.contact-text p { font-size: 17px; color: var(--clr-muted); margin-bottom: 24px; }
.contact-features { display: flex; flex-direction: column; gap: 10px; }
.cf-item { font-size: 15px; font-weight: 400; color: var(--clr-dark); }

.contact-card { display: flex; flex-direction: column; gap: 20px; }
.contact-img { border-radius: var(--radius-lg); overflow: hidden; height: 200px; }
.contact-img .img-placeholder { min-height: 200px; border-radius: 0; }
.contact-btns { display: flex; flex-direction: column; gap: 12px; }
.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn-contact.whatsapp { background: var(--clr-primary); color: #fff; }
.btn-contact.whatsapp:hover { background: var(--clr-primary-dark); transform: translateY(-2px); }
.btn-contact.instagram { background: #fff; color: var(--clr-dark); border: 2px solid var(--clr-border); }
.btn-contact.instagram:hover { border-color: var(--clr-primary); color: var(--clr-primary); }
.btn-contact.order { background: var(--clr-section-dark); color: #fff; }
.btn-contact.order:hover { background: #111; transform: translateY(-2px); }
.hashtag { text-align: center; font-size: 15px; font-weight: 700; color: var(--clr-primary); }

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: rgba(255,255,255,.8);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo { font-size: 28px; font-weight: 900; color: var(--clr-primary); margin-bottom: 10px; }
.footer-brand p { font-size: 14px; opacity: .6; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  font-size: 20px;
  opacity: .5;
  transition: var(--transition);
}
.footer-social a:hover { opacity: 1; }
.footer-links h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { font-size: 13px; opacity: .6; transition: var(--transition); }
.footer-links li a:hover { opacity: 1; color: var(--clr-primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; opacity: .5; }
.footer-tag { color: var(--clr-primary) !important; opacity: 1 !important; font-weight: 700; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .flavors-grid,
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 40px;
    gap: 32px;
    text-align: center;
  }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-badge { margin: 0 auto 20px; }
  .float-1 { right: -10px; bottom: 10px; }
  .float-2 { left: -10px; top: 20px; }

  .about-grid,
  .nutrition-grid,
  .contact-inner,
  .usage-content { grid-template-columns: 1fr; gap: 32px; }

  .benefit-list { grid-template-columns: 1fr; }

  .flavors-grid { grid-template-columns: 1fr; }
  .recipes-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; gap: 16px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }

  .section-header { margin-bottom: 36px; }

  .about-oats, .flavors-section, .packages-section,
  .usage-section, .nutrition-section, .recipes-section,
  .faq-section, .contact-section { padding: 60px 0; }

  .nut-row { grid-template-columns: 80px 1fr; }

  .usage-img { display: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 48px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .packages-grid { grid-template-columns: 1fr; }
  .nut-bar { min-width: 80px; }
}
