/* ============================================================
   Vorwerk Thermomix TM7 — Product Page Styles
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #4b4a4b;
  --white:       #ffffff;
  --off-white:   #f4f4f4;
  --red:         #009a3d;
  --red-dark:    #006e2c;
  --grey-light:  #e8eded;
  --grey-mid:    #b1b2b3;
  --grey-text:   #6d6e71;
  --font-sans:   'Source Sans 3', 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
  --font-serif:  'Georgia', 'Times New Roman', serif;
  --max-w:       1280px;
  --radius:      2px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #d8d8d8;
  height: 60px;
  display: flex; align-items: center;
}
.site-nav .container {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center;
  line-height: 1;
  flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px; font-weight: 600;
  color: #4b4a4b;
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: #4b4a4b;
  color: var(--white);
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .3px;
  transition: background .2s;
}
.nav-cta:hover { background: #000; }
.nav-burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--black); transition: .2s; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  margin-top: 60px;
  position: relative;
  min-height: 540px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .55;
}
.hero-content {
  position: relative; z-index: 1;
  color: var(--white);
  max-width: 600px;
  padding: 64px 0;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero h1 span { color: var(--red); }
.hero p {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: #4b4a4b; color: var(--white);
  padding: 13px 32px; border-radius: 20px;
  font-weight: 700; font-size: 14px;
  letter-spacing: .3px;
  transition: background .2s;
  display: inline-block;
  text-transform: none;
}
.btn-primary:hover { background: #000; }
.btn-outline {
  border: 2px solid var(--white); color: var(--white);
  padding: 11px 30px; border-radius: 20px;
  font-weight: 700; font-size: 14px;
  letter-spacing: .3px;
  transition: .2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--white); color: var(--black); }

/* ══════════════════════════════════════════
   INTRO BANNER
══════════════════════════════════════════ */
.intro-banner {
  background: var(--off-white);
  padding: 56px 0;
  text-align: center;
}
.intro-banner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.3px;
  color: #000;
}
.intro-banner p {
  max-width: 700px; margin: 0 auto 32px;
  font-size: 17px; color: var(--grey-text);
}
.stat-row {
  display: flex; justify-content: center; gap: 48px;
  flex-wrap: wrap; margin-top: 40px;
}
.stat { text-align: center; }
.stat-num {
  font-size: 44px; font-weight: 900; color: var(--red);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 13px; color: var(--grey-text);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 4px;
}

/* ══════════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════════ */
.section {
  padding: 80px 0;
}
.section-alt { background: var(--off-white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900; line-height: 1.15;
  color: #000;
  letter-spacing: -.3px;
}
.section-header p {
  max-width: 600px; margin: 16px auto 0;
  color: var(--grey-text); font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.feature-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border: 1px solid #ebebeb;
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.12);
}
.feature-card img {
  width: auto;
  height: 96px;
  object-fit: contain;
  margin: 32px auto 0;
  display: block;
}
.feature-card-body { padding: 20px 24px 28px; }
.feature-card-body h3 {
  font-size: 17px; font-weight: 700; margin-bottom: 10px;
  color: #000;
}
.feature-card-body p {
  font-size: 14px; color: var(--grey-text); line-height: 1.65;
}

/* ══════════════════════════════════════════
   SPLIT SECTION (image + text)
══════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img { border-radius: 8px; overflow: hidden; }
.split-img img { width: 100%; height: auto; object-fit: contain; display: block; border-radius: 8px; }
.split-text h2 {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 900; line-height: 1.15; margin-bottom: 20px;
  color: #000; letter-spacing: -.3px;
}
.split-text p {
  font-size: 16px; color: var(--grey-text);
  line-height: 1.75; margin-bottom: 20px;
}
.split-text ul { margin-bottom: 28px; }
.split-text ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--grey-text);
  margin-bottom: 10px;
}
.split-text ul li::before {
  content: '✓';
  color: var(--red); font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}

/* ══════════════════════════════════════════
   MODES GRID
══════════════════════════════════════════ */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}
.mode-chip {
  background: var(--white);
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  padding: 20px 16px;
  text-align: center;
  font-size: 14px; font-weight: 600;
  cursor: default;
  transition: .2s;
  color: #4b4a4b;
}
.mode-chip:hover { border-color: var(--red); color: var(--red); background: #fff8f7; }
.mode-chip .mode-icon { font-size: 26px; margin-bottom: 8px; }

/* ══════════════════════════════════════════
   RECIPES / COOKIDOO
══════════════════════════════════════════ */
.recipes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.recipes-img img {
  border-radius: 8px;
  width: 100%; height: 420px; object-fit: cover;
}
.recipes-text h2 {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 900; line-height: 1.15; margin-bottom: 20px;
  color: #000; letter-spacing: -.3px;
}
.recipes-text ul { margin-bottom: 28px; }
.recipes-text ul li {
  display: flex; gap: 12px;
  font-size: 15px; color: var(--grey-text);
  margin-bottom: 12px; align-items: flex-start;
}
.recipes-text ul li::before {
  content: '✓';
  color: var(--red); font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}
.cookidoo-badge {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid var(--grey-mid);
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 14px; color: var(--grey-text);
  margin-top: 8px;
}
.cookidoo-badge strong { color: var(--black); }

/* ══════════════════════════════════════════
   BOX CONTENTS
══════════════════════════════════════════ */
.box-section .section-header { padding-bottom: 32px; }
.box-section .section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}
.box-images {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 820px;
  margin: 0 auto;
}
.box-composite {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* ══════════════════════════════════════════
   WHY CHOOSE
══════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.why-card {
  padding: 32px 28px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  background: #fff;
}
.why-card-num {
  font-size: 40px; font-weight: 900; color: var(--red);
  margin-bottom: 16px; line-height: 1;
}
.why-card h3 {
  font-size: 17px; font-weight: 700; margin-bottom: 12px;
  color: #000;
}
.why-card ul li {
  display: flex; gap: 10px;
  font-size: 14px; color: var(--grey-text);
  margin-bottom: 8px; align-items: flex-start;
}
.why-card ul li::before {
  content: '·'; color: var(--red);
  font-weight: 700; flex-shrink: 0;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--grey-mid);
}
.faq-question {
  width: 100%;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  font-size: 16px; font-weight: 700;
  font-family: var(--font-sans);
  text-align: left; color: #000;
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-size: 22px; color: var(--red);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  font-size: 15px; color: var(--grey-text); line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }

/* ══════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════ */
.cta-strip {
  background: #4b4a4b;
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}
.cta-strip h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800; margin-bottom: 16px;
}
.cta-strip p { font-size: 17px; margin-bottom: 32px; opacity: .9; }
.btn-white {
  background: var(--white); color: #4b4a4b;
  padding: 13px 36px; border-radius: 20px;
  font-weight: 700; font-size: 14px;
  letter-spacing: .3px;
  display: inline-block;
  transition: .2s;
}
.btn-white:hover { background: var(--red); color: #fff; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: #2b2b2b;
  color: rgba(255,255,255,.65);
  padding: 56px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  margin-bottom: 18px;
}
.footer-brand p { line-height: 1.7; }
.footer-col h4 {
  color: var(--white); font-size: 13px;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--white); }
.payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-icons img { height: 24px; width: auto; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .split, .recipes-grid { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-img img, .recipes-img img { height: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 28px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .modes-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════
   MOBILE NAV (open state)
══════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0; z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  padding: 16px 24px 24px;
  flex-direction: column; gap: 12px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px; font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-light);
}
