/* ============================================================
   LAOFABANG – PROFESSIONAL KITCHEN APPLIANCE AFFILIATE THEME
   Modern, Responsive, Clean Design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #fafaf8;
  --bg-secondary: #f3f2ef;
  --bg-card: #ffffff;
  --bg-dark: #0f0f10;
  --bg-dark-2: #1a1a1e;
  --text-primary: #111111;
  --text-body: #3d3d4e;
  --text-muted: #888899;
  --text-light: #b8b8c4;
  --accent: #e85a1b;
  --accent-dark: #c94d10;
  --accent-light: #ff7d3a;
  --accent-soft: rgba(232, 90, 27, 0.08);
  --accent-ultra-soft: rgba(232, 90, 27, 0.04);
  --secondary: #0d8a74;
  --secondary-soft: rgba(13, 138, 116, 0.1);
  --border: rgba(17, 17, 17, 0.08);
  --border-medium: rgba(17, 17, 17, 0.14);
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 48px;
  --radius-full: 9999px;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.25s var(--ease-out);
  --transition-slow: 0.45s var(--ease-out);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-main); color: var(--text-primary); line-height: 1.2; font-weight: 700; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.container--narrow { max-width: 860px; }
.container--wide { max-width: 1440px; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: #ffffff;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
#preloader .preloader-logo {
  font-family: var(--font-main); font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 800; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--accent); animation: fadeSlideUp 0.6s ease forwards; opacity: 0;
}
#preloader .preloader-spinner {
  width: 40px; height: 40px;
  border: 2px solid rgba(232,90,27,0.12);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
#preloader .preloader-text {
  font-family: var(--font-main); font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600; color: var(--text-primary); letter-spacing: 0.01em;
  animation: pulse 1.5s ease infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeSlideUp { from { opacity:0; transform: translateY(12px); } to { opacity:1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.site-header .top-bar {
  text-align: center; font-size: clamp(0.65rem, 1.5vw, 0.75rem);
  padding: 7px 1rem; font-family: var(--font-main); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(232,90,27,0.06); color: var(--accent);
  border-bottom: 1px solid rgba(232,90,27,0.12);
}
.nav-container {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1240px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: 68px;
}
.brand-logo {
  font-family: var(--font-main); font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800; color: var(--text-primary); letter-spacing: -0.03em;
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); }
.nav-links a {
  font-family: var(--font-main); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-body);
  position: relative; padding: 4px 0; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  border-radius: 2px; transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: all var(--transition);
}
.mobile-nav {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; opacity: 0; visibility: hidden;
  transition: all var(--transition-slow);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav ul { text-align: center; }
.mobile-nav li { margin: 1.6rem 0; }
.mobile-nav a {
  font-family: var(--font-main); font-size: clamp(1.4rem, 5vw, 1.8rem);
  font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; font-family: var(--font-main);
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; cursor: pointer;
  border: 2px solid var(--accent); background: transparent;
  color: var(--accent); transition: all var(--transition);
  border-radius: var(--radius-full); white-space: nowrap;
}
.btn:hover {
  background: var(--accent); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,90,27,0.28);
}
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn-lg { padding: 16px 40px; font-size: 0.85rem; }
.btn-sm { padding: 9px 20px; font-size: 0.72rem; }
.btn-full { width: 100%; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-main); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--secondary); margin-bottom: 1rem;
  background: var(--secondary-soft); padding: 5px 14px;
  border-radius: var(--radius-full);
}
.section-label--accent { color: var(--accent); background: var(--accent-soft); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 1rem; line-height: 1.15;
}
.section-header p {
  font-size: clamp(0.9rem, 2vw, 1.05rem); color: var(--text-body);
  max-width: 560px; margin: 0 auto; font-weight: 300; line-height: 1.8;
}

/* ===== HERO ===== */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
  background: var(--bg-primary); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -30%; right: -15%;
  width: 60%; height: 160%;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,90,27,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.hero-content { max-width: 580px; }
.hero-content .badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-main); font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--secondary);
  background: var(--secondary-soft); padding: 6px 16px;
  border-radius: var(--radius-full); margin-bottom: 1.5rem; border: 1px solid rgba(13,138,116,0.15);
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 1.5rem;
}
.hero-content h1 em { font-style: normal; color: var(--accent); }
.hero-content p {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem); color: var(--text-body);
  margin-bottom: 2rem; line-height: 1.85; font-weight: 300;
}
.hero-price-block {
  display: flex; align-items: baseline; gap: 12px; margin-bottom: 2rem;
}
.hero-price { font-family: var(--font-main); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--text-primary); }
.hero-price-note { font-size: 0.82rem; color: var(--text-muted); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-xl);
  background: var(--bg-card); border: 1px solid var(--border);
}
.hero-image img { width: 100%; display: block; transition: transform 0.6s var(--ease-out); }
.hero-image:hover img { transform: scale(1.04); }

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--bg-dark); padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2rem); text-align: center;
}
.stat-item h3 {
  font-family: var(--font-main); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900; color: #fff; margin-bottom: 0.3rem;
  letter-spacing: -0.03em;
}
.stat-item p {
  font-family: var(--font-main); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.5);
}

/* ===== FEATURES ===== */
.features-section { padding: clamp(4rem, 10vw, 7rem) 0; background: var(--bg-card); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.feature-card {
  background: var(--bg-primary); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem);
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: rgba(232,90,27,0.2); background: var(--bg-card);
}
.feature-icon {
  width: 52px; height: 52px; background: var(--accent-soft);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.2rem;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--accent); stroke-width: 1.8; fill: none; }
.feature-card h3 {
  font-family: var(--font-main); font-size: 1rem; font-weight: 700;
  margin-bottom: 0.7rem; color: var(--text-primary);
}
.feature-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.75; font-weight: 300; }

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--bg-secondary);
}
.product-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.product-gallery { position: sticky; top: 88px; }
.product-main-img {
  border-radius: var(--radius-xl); overflow: hidden;
  background: var(--bg-card); box-shadow: var(--shadow-md);
  border: 1px solid var(--border); margin-bottom: 12px;
}
.product-main-img img { width: 100%; display: block; transition: transform 0.5s var(--ease-out); }
.product-main-img:hover img { transform: scale(1.03); }
.product-thumbs { display: flex; gap: 10px; }
.product-thumbs img {
  width: 80px; height: 80px; object-fit: cover;
  border-radius: var(--radius-sm); cursor: pointer;
  border: 2px solid transparent; opacity: 0.4;
  transition: all var(--transition);
}
.product-thumbs img.active, .product-thumbs img:hover { opacity: 1; border-color: var(--accent); }

.product-detail .subtitle {
  font-family: var(--font-main); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--secondary);
  margin-bottom: 0.8rem;
}
.product-detail h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 0.6rem;
}
.product-price {
  font-family: var(--font-main); font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--text-primary); margin-bottom: 0.4rem;
}
.product-tax { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.product-desc { font-size: 0.95rem; color: var(--text-body); margin-bottom: 1.5rem; line-height: 1.85; font-weight: 300; }

.product-highlights {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: 1.8rem; background: var(--bg-card);
}
.product-highlights li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.4rem; border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.product-highlights li:last-child { border-bottom: none; }
.product-highlights .label {
  font-family: var(--font-main); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted);
}
.product-highlights .value { color: var(--text-primary); font-weight: 500; }

/* ===== RECIPE BAND ===== */
.recipe-section { padding: clamp(4rem, 10vw, 7rem) 0; background: var(--bg-primary); }
.recipe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.5rem); }
.recipe-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: all var(--transition);
}
.recipe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.recipe-card img { width: 100%; height: 200px; object-fit: cover; }
.recipe-card-body { padding: 1.4rem; }
.recipe-card .time-tag {
  display: inline-block; font-family: var(--font-main); font-size: 0.68rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); background: var(--accent-soft);
  padding: 4px 12px; border-radius: var(--radius-full); margin-bottom: 0.8rem;
}
.recipe-card h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.recipe-card p { font-size: 0.85rem; color: var(--text-body); line-height: 1.7; font-weight: 300; }

/* ===== PHILOSOPHY ===== */
.philosophy-section { padding: clamp(4rem, 10vw, 7rem) 0; background: var(--bg-card); }
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.philosophy-grid .hero-image { order: 1; }
.philosophy-grid .hero-content { order: 2; max-width: 100%; }
.philosophy-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 1.5rem; line-height: 1.15;
}
.philosophy-content h2 em { font-style: normal; color: var(--accent); }
.philosophy-content p { font-size: 0.97rem; color: var(--text-body); line-height: 1.85; font-weight: 300; margin-bottom: 1rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: clamp(4rem, 10vw, 7rem) 0; background: var(--bg-secondary); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.5rem); }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem);
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(232,90,27,0.15); }
.testimonial-stars { color: var(--accent); font-size: 0.82rem; letter-spacing: 3px; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.95rem; color: var(--text-body); line-height: 1.8;
  font-style: italic; margin-bottom: 1.2rem; font-weight: 300;
}
.testimonial-author {
  font-family: var(--font-main); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-primary);
}

/* ===== FAQ ===== */
.faq-section { padding: clamp(4rem, 10vw, 7rem) 0; background: var(--bg-card); }
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--bg-primary); border: 1px solid var(--border);
  border-radius: var(--radius-md); margin-bottom: 10px;
  overflow: hidden; transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(232,90,27,0.2); }
.faq-question {
  width: 100%; background: transparent; border: none;
  padding: 1.3rem 1.8rem; font-family: var(--font-main);
  font-size: 0.92rem; font-weight: 600; color: var(--text-primary);
  text-align: left; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; outline: none;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.3rem; font-weight: 300; color: var(--accent);
  transition: transform var(--transition); line-height: 1; flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 1.8rem 1.3rem; font-size: 0.9rem; color: var(--text-body); line-height: 1.85; font-weight: 300; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--accent); text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-divider {
  width: 48px; height: 3px; border-radius: 3px;
  background: rgba(255,255,255,0.4); margin: 0 auto 1.5rem;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem); font-weight: 900;
  color: #fff; letter-spacing: -0.03em; margin-bottom: 1.2rem;
}
.cta-section h2 em { color: rgba(255,255,255,0.75); font-style: normal; }
.cta-section p { font-size: clamp(0.9rem, 1.8vw, 1.05rem); color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; font-weight: 300; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section .btn { background: #fff; color: var(--accent); border-color: #fff; font-size: 0.82rem; }
.cta-section .btn:hover { background: var(--text-primary); border-color: var(--text-primary); color: #fff; }

/* ===== INTERNAL PAGES ===== */
.internal-page { padding: clamp(5rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 5rem); }
.internal-page h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 3rem; text-align: center; }

/* ===== COMPARISON TABLE ===== */
.comparison-section { margin-top: clamp(3rem, 8vw, 5rem); }
.comparison-table {
  width: 100%; border-collapse: collapse; margin-top: 2rem;
  font-family: var(--font-body); background: var(--bg-card);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.comparison-table th, .comparison-table td {
  padding: clamp(0.8rem, 2vw, 1.3rem) clamp(1rem, 2.5vw, 1.5rem);
  text-align: left; border-bottom: 1px solid var(--border);
  font-size: clamp(0.8rem, 1.5vw, 0.9rem); color: var(--text-body);
}
.comparison-table th {
  background: var(--bg-secondary); font-family: var(--font-main);
  font-size: 0.82rem; font-weight: 700; color: var(--text-primary);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--bg-primary); }
.comparison-table .col-highlight { background: rgba(232,90,27,0.04); color: var(--text-primary); font-weight: 500; }
.comparison-table th.col-highlight { background: rgba(232,90,27,0.08); color: var(--accent); }

/* ===== EDITORIAL / REVIEW ===== */
.editorial { max-width: 780px; margin: 0 auto; }
.editorial img { width: 100%; max-width: 640px; display: block; margin: 0 auto 2.5rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.editorial h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 800; letter-spacing: -0.02em; margin: 2.5rem 0 1rem; color: var(--text-primary); }
.editorial p { font-size: clamp(0.9rem, 1.8vw, 1rem); color: var(--text-body); margin-bottom: 1.3rem; line-height: 1.9; font-weight: 300; }
.editorial .pull-quote {
  border-left: 4px solid var(--accent); padding-left: 1.5rem;
  margin: 2.5rem 0; font-family: var(--font-main); font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700; color: var(--text-primary); line-height: 1.5;
}
.editorial .btn-wrap { text-align: center; margin-top: 3rem; }

/* ===== CONTACT ===== */
.contact-section { padding: clamp(4rem, 10vw, 6rem) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem); }
.contact-card {
  background: var(--bg-card); padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-xl); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 2rem; }
.contact-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 0.4rem; }
.contact-card strong {
  display: block; font-family: var(--font-main); font-size: 0.68rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin-top: 1.5rem; margin-bottom: 0.5rem;
}
.contact-card a { color: var(--accent); font-weight: 500; }
.form-card {
  background: var(--bg-card); padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-xl); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-input {
  width: 100%; padding: 13px 0; margin-bottom: 1.5rem;
  border: none; border-bottom: 2px solid var(--border-medium);
  background: transparent; color: var(--text-primary);
  font-family: var(--font-body); font-size: 0.95rem; outline: none;
  transition: border-color var(--transition); border-radius: 0;
}
.form-input::placeholder { color: var(--text-light); }
.form-input:focus { border-bottom-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ===== LEGAL ===== */
.legal-content { max-width: 800px; margin: 0 auto; padding-bottom: 4rem; }
.legal-content h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 2.5rem; text-align: center; }
.legal-content h2 {
  font-family: var(--font-main); font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 700; margin: 2.5rem 0 0.8rem; color: var(--text-primary);
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--accent-soft);
}
.legal-content p { font-size: 0.92rem; color: var(--text-body); margin-bottom: 1rem; line-height: 1.85; font-weight: 300; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { font-size: 0.92rem; color: var(--text-body); line-height: 1.8; margin-bottom: 0.4rem; font-weight: 300; }
.legal-content a { color: var(--accent); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark); padding: clamp(3rem, 8vw, 5rem) 0 clamp(1.5rem, 4vw, 2.5rem);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); max-width: 1240px; margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.footer-logo {
  font-family: var(--font-main); font-size: 1.4rem; font-weight: 800;
  color: #fff; margin-bottom: 1rem; display: block; letter-spacing: -0.03em;
}
.footer-col p { color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 1.7; font-weight: 300; margin-bottom: 0.6rem; }
.footer-col h4 {
  font-family: var(--font-main); font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent);
  margin-bottom: 1.5rem;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.45); font-size: 0.85rem;
  margin-bottom: 0.65rem; font-weight: 300; transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1240px; margin: clamp(2rem, 5vw, 3rem) auto 0;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2.5rem) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.25); font-weight: 300;
  flex-wrap: wrap; gap: 0.5rem;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: -200px; left: 0; width: 100%;
  background: var(--bg-card); z-index: 9998;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem);
  border-top: 1px solid var(--border); box-shadow: 0 -4px 30px rgba(0,0,0,0.08);
  transition: bottom var(--transition-slow);
}
#cookie-banner.active { bottom: 0; }
.cookie-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text h4 {
  font-family: var(--font-main); font-size: 0.9rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.3rem;
}
.cookie-text p { font-size: 0.82rem; color: var(--text-body); font-weight: 300; }
.cookie-text a { color: var(--accent); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

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

/* Tablet: 768px – 1024px */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-content { max-width: 100%; }
  .hero-content .badge { margin: 0 auto 1.5rem; }
  .hero-price-block { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-image { max-width: 500px; margin: 0 auto; order: -1; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .product-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-gallery { position: static; max-width: 500px; margin: 0 auto; }
  .product-detail { text-align: center; }
  .product-highlights { max-width: 480px; margin-left: auto; margin-right: auto; }

  .recipe-grid { grid-template-columns: repeat(2, 1fr); }

  .philosophy-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .philosophy-grid .hero-image { max-width: 500px; margin: 0 auto; }
  .philosophy-grid .hero-content { max-width: 100%; text-align: center; }

  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  .features-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .recipe-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .testimonial-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .product-highlights li { flex-direction: column; align-items: flex-start; gap: 0.3rem; }

  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-buttons { justify-content: center; width: 100%; }
  .cookie-buttons .btn { flex: 1; }

  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 0.75rem 1rem; }

  .hero { padding-top: 2rem; }

  .site-header .top-bar { font-size: 0.6rem; padding: 6px 0.75rem; }
}

/* Small mobile: < 480px */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item h3 { font-size: 1.8rem; }

  .product-thumbs img { width: 65px; height: 65px; }

  .btn-lg { padding: 14px 28px; font-size: 0.78rem; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
