/* ═══════════════════════════════════════════════════════════
   burgerandwaffle.de – Globales Stylesheet
   American Diner | Premium Affiliate & Info Site
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Brand */
  --red:       #c1121f;
  --red-light: #e63946;
  --red-dark:  #8b0000;

  /* Neutrals */
  --dark:      #1a1a1a;
  --dark2:     #242424;
  --dark3:     #111111;
  --dark4:     #0d0d0d;
  --cream:     #f9f3e8;
  --cream2:    #f5ede0;
  --white:     #ffffff;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-300:  #d1d5db;
  --gray-400:  #9ca3af;
  --gray-500:  #6b7280;
  --gray-600:  #4b5563;
  --gray-700:  #374151;
  --gray-800:  #1f2937;

  /* Accents */
  --mustard:   #e8a82c;
  --mustard-dk:#c48a1a;
  --green:     #16a34a;
  --green-lt:  #dcfce7;
  --amber:     #d97706;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.18);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.22);
  --radius:    12px;
  --radius-lg: 20px;
  --radius-sm: 8px;

  /* Type */
  --font-head:  'Playfair Display', Georgia, serif;
  --font-display:'Bebas Neue', Impact, sans-serif;
  --font-body:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --header-h: 72px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ── RESET ─────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-body);
  color:var(--dark);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
  overflow-x:hidden;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
address{font-style:normal}
button{cursor:pointer;border:none;background:none;font-family:inherit;color:inherit}
input,select,textarea{font-family:inherit;font-size:inherit}
section{scroll-margin-top:var(--header-h)}
*:focus-visible{outline:2px solid var(--red-light);outline-offset:3px;border-radius:2px}

/* ── TYPOGRAPHY HELPERS ────────────────────────────────── */
.font-display{font-family:var(--font-display);letter-spacing:.04em}
.font-head{font-family:var(--font-head)}
.text-center{text-align:center}

.section-label{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--red-light);
  margin-bottom:10px;
}
.section-title{
  font-family:var(--font-head);
  font-size:clamp(30px,5vw,48px);
  line-height:1.15;
  font-weight:700;
  margin-bottom:16px;
}
.section-desc{
  color:var(--gray-500);
  font-size:17px;
  line-height:1.7;
  max-width:600px;
  margin:0 auto;
}

/* ── LAYOUT ───────────────────────────────────────────── */
.container{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.section{padding:80px 0}
.section-sm{padding:56px 0}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  font-weight:600;
  font-size:15px;
  border-radius:var(--radius-sm);
  transition:all .25s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:var(--red-light);
  color:var(--white);
}
.btn-primary:hover{background:var(--red);transform:translateY(-1px);box-shadow:0 8px 24px rgba(230,57,70,.3)}
.btn-outline{
  border:2px solid currentColor;
  background:transparent;
}
.btn-outline-light{color:var(--white);border-color:rgba(255,255,255,.8)}
.btn-outline-light:hover{background:var(--white);color:var(--dark);transform:translateY(-1px)}
.btn-outline-dark{color:var(--dark);border-color:var(--gray-300)}
.btn-outline-dark:hover{background:var(--dark);color:var(--white);border-color:var(--dark)}
.btn-mustard{background:var(--mustard);color:var(--dark)}
.btn-mustard:hover{background:var(--mustard-dk);color:var(--white);transform:translateY(-1px)}
.btn-lg{padding:16px 36px;font-size:16px}
.btn-sm{padding:10px 20px;font-size:13px}

/* ── HEADER ────────────────────────────────────────────── */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  height:var(--header-h);
  display:flex;
  align-items:center;
  transition:background .3s var(--ease),box-shadow .3s var(--ease);
}
.site-header.scrolled{
  background:rgba(13,13,13,.96);
  backdrop-filter:blur(12px);
  box-shadow:0 4px 24px rgba(0,0,0,.4);
}
.header-inner{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.logo{display:flex;align-items:center;gap:10px}
.logo-icon{
  width:38px;height:38px;
  background:var(--red-light);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  transition:transform .25s var(--ease);
}
.logo:hover .logo-icon{transform:scale(1.1) rotate(-5deg)}
.logo-icon svg{width:20px;height:20px;color:#fff;stroke:#fff}
.logo-text{
  font-family:var(--font-display);
  font-size:22px;
  letter-spacing:.1em;
  color:var(--white);
  line-height:1;
}
.logo-text span{color:var(--red-light)}

.main-nav{display:flex;align-items:center;gap:28px}
.main-nav a{
  font-size:13px;
  font-weight:500;
  color:#d1d5db;
  letter-spacing:.04em;
  transition:color .2s;
  position:relative;
}
.main-nav a::after{
  content:'';
  position:absolute;
  bottom:-4px;left:0;right:0;
  height:2px;
  background:var(--red-light);
  transform:scaleX(0);
  transition:transform .25s var(--ease);
}
.main-nav a:hover{color:var(--white)}
.main-nav a:hover::after,.main-nav a.active::after{transform:scaleX(1)}
.main-nav a.active{color:var(--white)}
.btn-reserve{
  margin-left:4px;
  padding:9px 20px;
  background:var(--red-light);
  color:var(--white)!important;
  font-weight:600;
  border-radius:6px;
  transition:background .2s,transform .15s;
}
.btn-reserve::after{display:none}
.btn-reserve:hover{background:var(--red);transform:scale(1.03)}

.hamburger{display:none;flex-direction:column;gap:5px;padding:6px}
.hamburger span{display:block;width:24px;height:2px;background:var(--white);border-radius:2px;transition:transform .25s,opacity .25s}
.hamburger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-nav{
  display:none;
  position:fixed;
  top:var(--header-h);left:0;right:0;
  background:var(--dark3);
  border-top:1px solid #333;
  z-index:99;
  padding:8px 0 16px;
  max-height:calc(100vh - var(--header-h));
  overflow-y:auto;
}
.mobile-nav.open{display:block}
.mobile-nav a{
  display:block;
  padding:14px 24px;
  color:#d1d5db;
  font-size:15px;
  font-weight:500;
  transition:color .2s,background .2s;
}
.mobile-nav a:hover{color:var(--red-light);background:#1e1e1e}
.mobile-nav .btn-mobile-reserve{
  display:block;
  margin:12px 24px 0;
  padding:14px;
  text-align:center;
  background:var(--red-light);
  color:var(--white);
  font-weight:600;
  border-radius:6px;
}

/* ── HERO ──────────────────────────────────────────────── */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  z-index:0;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,.75) 0%,rgba(0,0,0,.5) 45%,rgba(0,0,0,.85) 100%);
  z-index:1;
}
.hero-content{
  position:relative;z-index:2;
  text-align:center;
  padding:0 24px;
  max-width:900px;
  margin:0 auto;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(230,57,70,.18);
  border:1px solid rgba(230,57,70,.4);
  color:var(--red-light);
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:7px 18px;
  border-radius:999px;
  margin-bottom:24px;
  opacity:0;
  animation:fadeIn .8s var(--ease) .2s forwards;
}
.hero-badge svg{width:12px;height:12px;fill:currentColor}
.hero-h1{
  font-family:var(--font-display);
  font-size:clamp(56px,11vw,120px);
  color:var(--white);
  line-height:.9;
  letter-spacing:.04em;
  margin-bottom:20px;
  opacity:0;
  animation:slideUp .8s var(--ease) .3s forwards;
}
.hero-h1 span{display:block;color:var(--red-light)}
.hero-sub{
  font-size:clamp(16px,2.2vw,20px);
  color:#e5e7eb;
  max-width:560px;
  margin:0 auto 36px;
  line-height:1.65;
  opacity:0;
  animation:slideUp .8s var(--ease) .5s forwards;
}
.hero-ctas{
  display:flex;flex-wrap:wrap;gap:16px;justify-content:center;
  opacity:0;
  animation:slideUp .8s var(--ease) .7s forwards;
}
.hero-scroll{
  position:absolute;
  bottom:28px;left:50%;
  transform:translateX(-50%);
  color:rgba(255,255,255,.5);
  transition:color .2s;
  animation:bounce 2s infinite;
  z-index:2;
}
.hero-scroll:hover{color:var(--white)}
.hero-scroll svg{width:32px;height:32px;stroke:currentColor;stroke-width:2;fill:none}

/* Sub-page hero */
.page-hero{
  position:relative;
  padding:calc(var(--header-h) + 60px) 0 60px;
  background:var(--dark3);
  overflow:hidden;
}
.page-hero-bg{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  opacity:.35;
}
.page-hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(13,13,13,.9),rgba(26,26,26,.7));
}
.page-hero-content{
  position:relative;z-index:2;
  text-align:center;
  max-width:800px;
  margin:0 auto;
}
.page-hero h1{
  font-family:var(--font-display);
  font-size:clamp(40px,7vw,72px);
  color:var(--white);
  line-height:1;
  letter-spacing:.04em;
  margin-bottom:16px;
}
.page-hero p{
  color:#d1d5db;
  font-size:18px;
  line-height:1.7;
  max-width:600px;
  margin:0 auto;
}

/* Breadcrumb */
.breadcrumb{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:6px;
  font-size:13px;
  color:var(--gray-400);
  margin-bottom:20px;
}
.breadcrumb a{color:var(--gray-400);transition:color .2s}
.breadcrumb a:hover{color:var(--red-light)}
.breadcrumb span{color:var(--gray-500)}
.breadcrumb .sep{color:var(--gray-600);margin:0 2px}

/* ── CARDS ─────────────────────────────────────────────── */
.card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:box-shadow .3s var(--ease),border-color .3s var(--ease),transform .3s var(--ease);
}
.card:hover{
  box-shadow:var(--shadow-lg);
  border-color:rgba(230,57,70,.25);
  transform:translateY(-4px);
}
.card-img-wrap{
  position:relative;
  overflow:hidden;
  aspect-ratio:4/3;
}
.card-img-wrap img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .6s var(--ease);
}
.card:hover .card-img-wrap img{transform:scale(1.06)}
.card-badge{
  position:absolute;
  top:12px;left:12px;
  font-size:11px;
  font-weight:700;
  padding:5px 14px;
  border-radius:999px;
  color:var(--white);
  z-index:2;
}
.card-badge.bestseller{background:var(--red-light)}
.card-badge.vegan{background:var(--green)}
.card-badge.special{background:var(--amber)}
.card-badge.new{background:var(--mustard);color:var(--dark)}
.card-body{padding:24px}
.card-body h3{
  font-family:var(--font-head);
  font-size:20px;
  margin-bottom:8px;
}
.card-body p{
  font-size:14px;
  color:var(--gray-500);
  line-height:1.65;
}
.card-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:16px;
}
.card-price{
  font-family:var(--font-display);
  font-size:24px;
  color:var(--red-light);
  white-space:nowrap;
}

/* ── GRIDS ──────────────────────────────────────────────── */
.grid-2{display:grid;gap:24px}
.grid-3{display:grid;gap:24px}
.grid-4{display:grid;gap:24px}
@media(min-width:640px){
  .grid-2{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:900px){
  .grid-3{grid-template-columns:repeat(3,1fr)}
  .grid-4{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:1100px){
  .grid-4{grid-template-columns:repeat(4,1fr)}
}

/* ── ABOUT / FEATURE BLOCKS ─────────────────────────────── */
.feature-block{
  display:grid;
  gap:48px;
  align-items:center;
}
@media(min-width:900px){.feature-block{grid-template-columns:1fr 1fr}}
.feature-block.reverse .feature-text{order:2}
.feature-block.reverse .feature-img-wrap{order:1}
@media(max-width:899px){.feature-block.reverse .feature-text,.feature-block.reverse .feature-img-wrap{order:initial}}
.feature-text p{
  color:var(--gray-600);
  line-height:1.8;
  margin-bottom:16px;
}
.feature-img-wrap{position:relative}
.feature-img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-xl);
}
.rating-bubble{
  position:absolute;
  bottom:-20px;left:-20px;
  background:var(--red-light);
  color:var(--white);
  border-radius:var(--radius);
  padding:14px 22px;
  box-shadow:0 8px 24px rgba(230,57,70,.4);
}
.rating-bubble .stars{font-family:var(--font-display);font-size:36px;line-height:1}
.rating-bubble .reviews{font-size:11px;font-weight:600;margin-top:2px;opacity:.9}
@media(max-width:640px){.rating-bubble{display:none}}

/* Badge cards */
.badges-row{display:grid;gap:16px;margin-top:32px}
@media(min-width:480px){.badges-row{grid-template-columns:repeat(3,1fr)}}
.badge-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:8px;
  box-shadow:var(--shadow-sm);
}
.badge-card svg{width:24px;height:24px;stroke:var(--red-light);fill:none;stroke-width:2}
.badge-card strong{font-size:13px;color:var(--dark)}
.badge-card span{font-size:12px;color:var(--gray-500)}

/* ── CTA STRIP ──────────────────────────────────────────── */
.cta-strip{
  background:var(--red-light);
  text-align:center;
  padding:56px 0;
}
.cta-strip h2{
  font-family:var(--font-display);
  font-size:clamp(32px,6vw,56px);
  color:var(--white);
  letter-spacing:.06em;
  margin-bottom:12px;
}
.cta-strip p{
  color:rgba(255,255,255,.9);
  font-size:17px;
  margin-bottom:28px;
}
.cta-strip .btn-white{
  background:var(--white);
  color:var(--red-light);
  font-weight:700;
}
.cta-strip .btn-white:hover{background:var(--cream);transform:translateY(-1px)}

/* ── HOURS ──────────────────────────────────────────────── */
.hours-section{
  padding:56px 0;
  background:var(--dark);
  text-align:center;
}
.hours-section h2{
  font-family:var(--font-display);
  font-size:clamp(36px,7vw,56px);
  color:var(--white);
  letter-spacing:.1em;
  margin-bottom:32px;
}
.hours-grid{
  display:grid;gap:16px;
  max-width:480px;margin:0 auto 32px;
}
@media(min-width:480px){.hours-grid{grid-template-columns:1fr 1fr}}
.hours-card{
  display:flex;align-items:center;gap:14px;
  background:rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:18px 22px;
  text-align:left;
}
.hours-card svg{width:22px;height:22px;stroke:rgba(255,255,255,.85);fill:none;stroke-width:2;flex-shrink:0}
.hours-card-label{font-weight:600;color:var(--white);font-size:14px}
.hours-card-time{color:rgba(255,255,255,.75);font-size:13px}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq-item{
  border:1px solid var(--gray-700);
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--dark2);
}
.faq-question{
  width:100%;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:20px 24px;
  text-align:left;
  transition:background .2s;
}
.faq-question:hover{background:#2a2a2a}
.faq-question h3{font-weight:600;font-size:15px;color:var(--white)}
.faq-icon{width:20px;height:20px;stroke:var(--red-light);fill:none;stroke-width:2;flex-shrink:0;transition:transform .25s var(--ease)}
.faq-item.open .faq-icon{transform:rotate(180deg)}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s var(--ease);
}
.faq-item.open .faq-answer{max-height:300px}
.faq-answer-inner{padding:16px 24px;background:#1e1e1e;border-top:1px solid var(--gray-700)}
.faq-answer-inner p{color:var(--gray-400);line-height:1.75;font-size:15px}

/* ── CONTACT ────────────────────────────────────────────── */
.contact-grid{display:grid;gap:48px;align-items:start}
@media(min-width:900px){.contact-grid{grid-template-columns:1fr 1fr}}
.contact-items{display:flex;flex-direction:column;gap:20px;margin-top:32px}
.contact-item{display:flex;align-items:flex-start;gap:16px}
.contact-item-icon{
  width:44px;height:44px;
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-sm);
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-sm);
  flex-shrink:0;
}
.contact-item-icon svg{width:20px;height:20px;stroke:var(--red-light);fill:none;stroke-width:2}
.contact-item-label{font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--gray-400);margin-bottom:2px}
.contact-item-val{font-weight:500;color:var(--dark);font-size:15px}
.contact-item-val a{transition:color .2s}
.contact-item-val a:hover{color:var(--red-light)}

/* Form */
.form-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  padding:40px;
}
.form-card h3{font-family:var(--font-head);font-size:26px;color:var(--dark);margin-bottom:28px}
.form-row{display:grid;gap:16px;margin-bottom:16px}
@media(min-width:480px){.form-row{grid-template-columns:1fr 1fr}}
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:16px}
.form-group label{font-size:13px;font-weight:600;color:var(--gray-600)}
.form-group input,.form-group select,.form-group textarea{
  width:100%;
  border:1px solid var(--gray-300);
  border-radius:var(--radius-sm);
  padding:11px 14px;
  font-size:14px;
  color:var(--dark);
  background:var(--white);
  transition:border-color .2s,box-shadow .2s;
  appearance:none;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{
  outline:none;
  border-color:var(--red-light);
  box-shadow:0 0 0 3px rgba(230,57,70,.12);
}
.form-group textarea{resize:none}
.btn-submit{
  width:100%;
  padding:14px;
  background:var(--red-light);
  color:var(--white);
  font-weight:700;
  font-size:15px;
  border-radius:var(--radius-sm);
  transition:background .2s,transform .15s;
}
.btn-submit:hover{background:var(--red);transform:scale(1.01)}
.form-success{display:none;text-align:center;padding:48px 0}
.form-success.visible{display:block}
.success-icon{
  width:64px;height:64px;
  background:var(--green-lt);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;
}
.success-icon svg{width:28px;height:28px;stroke:var(--green);fill:none;stroke-width:2.5}
.form-success h3{font-family:var(--font-head);font-size:24px;color:var(--dark);margin-bottom:8px}
.form-success p{color:var(--gray-500)}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer{
  background:var(--dark3);
  border-top:1px solid var(--gray-800);
  padding:48px 0 32px;
}
.footer-grid{display:grid;gap:40px;margin-bottom:40px}
@media(min-width:640px){.footer-grid{grid-template-columns:repeat(3,1fr)}}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.footer-brand-icon{
  width:30px;height:30px;
  background:var(--red-light);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.footer-brand-icon svg{width:15px;height:15px;stroke:#fff;fill:none;stroke-width:2}
.footer-brand-name{font-family:var(--font-display);font-size:18px;letter-spacing:.1em;color:var(--white)}
.footer-brand-name span{color:var(--red-light)}
.footer-col>p{font-size:13px;color:var(--gray-500);line-height:1.7}
.footer-col h4{font-size:13px;font-weight:600;color:var(--white);margin-bottom:12px}
.footer-col nav a,.footer-col address a,.footer-col address p{
  display:block;font-size:13px;color:var(--gray-500);margin-bottom:6px;transition:color .2s;
}
.footer-col nav a:hover,.footer-col address a:hover{color:var(--red-light)}
.footer-bottom{
  border-top:1px solid var(--gray-800);
  padding-top:24px;
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;
}
.footer-bottom p{font-size:12px;color:var(--gray-600)}
.footer-legal{display:flex;gap:20px}
.footer-legal a{font-size:12px;color:var(--gray-600);transition:color .2s}
.footer-legal a:hover{color:var(--gray-400)}

/* ── PRODUCT CARDS (Affiliate) ──────────────────────────── */
.product-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:box-shadow .3s var(--ease),border-color .3s var(--ease),transform .3s var(--ease);
  display:flex;
  flex-direction:column;
}
.product-card:hover{
  box-shadow:var(--shadow-lg);
  border-color:rgba(230,57,70,.25);
  transform:translateY(-4px);
}
.product-img-wrap{
  position:relative;
  overflow:hidden;
  aspect-ratio:1/1;
  background:var(--gray-100);
}
.product-img-wrap img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .5s var(--ease);
}
.product-card:hover .product-img-wrap img{transform:scale(1.06)}
.product-badge{
  position:absolute;
  top:12px;left:12px;
  font-size:10px;
  font-weight:700;
  padding:4px 12px;
  border-radius:999px;
  background:var(--mustard);
  color:var(--dark);
  z-index:2;
}
.product-body{padding:20px;display:flex;flex-direction:column;flex:1}
.product-body h3{font-family:var(--font-head);font-size:17px;margin-bottom:6px;line-height:1.3}
.product-body p{font-size:13px;color:var(--gray-500);line-height:1.6;margin-bottom:12px;flex:1}
.product-meta{
  display:flex;align-items:center;justify-content:space-between;gap:8px;
  margin-bottom:12px;
}
.product-rating{display:flex;align-items:center;gap:4px;font-size:13px;color:var(--gray-600)}
.product-rating .stars{color:var(--mustard)}
.product-price-row{
  display:flex;align-items:center;justify-content:space-between;gap:8px;
}
.product-price{font-family:var(--font-display);font-size:22px;color:var(--dark)}
.product-price-old{font-size:13px;color:var(--gray-400);text-decoration:line-through}
.product-cta{
  display:inline-flex;align-items:center;gap:6px;
  padding:10px 18px;
  background:var(--red-light);
  color:var(--white);
  font-size:13px;
  font-weight:600;
  border-radius:6px;
  transition:background .2s,transform .15s;
}
.product-cta:hover{background:var(--red);transform:scale(1.03)}
.product-cta svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2}
.product-disclaimer{
  font-size:11px;
  color:var(--gray-400);
  margin-top:8px;
  line-height:1.5;
}

/* ── RECIPE CARDS (Magazine) ────────────────────────────── */
.recipe-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:box-shadow .3s var(--ease),transform .3s var(--ease);
  display:flex;
  flex-direction:column;
}
.recipe-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.recipe-img-wrap{position:relative;overflow:hidden;aspect-ratio:16/10}
.recipe-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.recipe-card:hover .recipe-img-wrap img{transform:scale(1.05)}
.recipe-category{
  position:absolute;bottom:12px;left:12px;
  font-size:11px;font-weight:700;
  padding:5px 14px;border-radius:999px;
  background:var(--red-light);color:var(--white);
}
.recipe-body{padding:24px;flex:1;display:flex;flex-direction:column}
.recipe-body h3{font-family:var(--font-head);font-size:22px;margin-bottom:8px;line-height:1.3}
.recipe-body p{font-size:14px;color:var(--gray-500);line-height:1.7;margin-bottom:16px;flex:1}
.recipe-meta{display:flex;align-items:center;gap:16px;font-size:13px;color:var(--gray-400)}
.recipe-meta span{display:inline-flex;align-items:center;gap:5px}
.recipe-meta svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:2}

/* ── CATEGORY TILES ─────────────────────────────────────── */
.cat-tile{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:1/1;
  box-shadow:var(--shadow-md);
  transition:box-shadow .3s var(--ease),transform .3s var(--ease);
}
.cat-tile:hover{box-shadow:var(--shadow-xl);transform:translateY(-4px)}
.cat-tile img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.cat-tile:hover img{transform:scale(1.08)}
.cat-tile-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.8),rgba(0,0,0,.1) 60%);
  display:flex;align-items:flex-end;
  padding:24px;
}
.cat-tile-overlay h3{
  font-family:var(--font-display);
  font-size:28px;
  color:var(--white);
  letter-spacing:.04em;
  line-height:1;
}
.cat-tile-overlay p{font-size:13px;color:rgba(255,255,255,.8);margin-top:4px}

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar{
  display:grid;
  gap:24px;
  text-align:center;
}
@media(min-width:480px){.stats-bar{grid-template-columns:repeat(2,1fr)}}
@media(min-width:768px){.stats-bar{grid-template-columns:repeat(4,1fr)}}
.stat-item{padding:20px}
.stat-num{font-family:var(--font-display);font-size:48px;color:var(--red-light);line-height:1}
.stat-label{font-size:13px;color:var(--gray-500);margin-top:4px;letter-spacing:.04em}

/* ── NEWSLETTER ──────────────────────────────────────────── */
.newsletter-box{
  background:var(--dark);
  border-radius:var(--radius-lg);
  padding:48px;
  text-align:center;
}
.newsletter-box h2{
  font-family:var(--font-head);
  font-size:32px;
  color:var(--white);
  margin-bottom:12px;
}
.newsletter-box p{color:var(--gray-400);margin-bottom:28px}
.newsletter-form{display:flex;gap:12px;max-width:480px;margin:0 auto;flex-wrap:wrap}
.newsletter-form input{
  flex:1;min-width:200px;
  padding:12px 16px;
  border:1px solid var(--gray-700);
  border-radius:var(--radius-sm);
  background:var(--dark2);
  color:var(--white);
  font-size:14px;
}
.newsletter-form input:focus{outline:none;border-color:var(--red-light)}

/* ── IMPRESSUM / DATENSCHUTZ ─────────────────────────────── */
.legal-section{padding:calc(var(--header-h) + 48px) 0 64px}
.legal-section h1{
  font-family:var(--font-head);
  font-size:36px;
  margin-bottom:24px;
}
.legal-section h2{
  font-family:var(--font-head);
  font-size:22px;
  margin-top:32px;margin-bottom:12px;
}
.legal-section p,.legal-section li{color:var(--gray-600);line-height:1.8;margin-bottom:8px}
.legal-section ul{padding-left:20px;list-style:disc}
.legal-content{max-width:760px;margin:0 auto}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes slideUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@keyframes bounce{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)}}

.reveal{opacity:0;transform:translateY(30px);transition:opacity .6s var(--ease),transform .6s var(--ease)}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}

/* ── RECIPE PAGE ─────────────────────────────────────────── */
.recipe-hero{position:relative;padding:calc(var(--header-h) + 48px) 0 48px;overflow:hidden}
.recipe-hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.4}
.recipe-hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(13,13,13,.92),rgba(26,26,26,.75))}
.recipe-hero-content{position:relative;z-index:2;max-width:800px;margin:0 auto;text-align:center}
.recipe-hero h1{font-family:var(--font-display);font-size:clamp(36px,6vw,64px);color:var(--white);line-height:1;letter-spacing:.03em;margin-bottom:16px}
.recipe-hero .recipe-sub{color:#d1d5db;font-size:18px;line-height:1.7;max-width:600px;margin:0 auto}

/* Breadcrumb (recipe page) */
.recipe-breadcrumb{display:flex;flex-wrap:wrap;align-items:center;gap:6px;font-size:13px;color:var(--gray-400);margin-bottom:24px;justify-content:center}
.recipe-breadcrumb a{color:var(--gray-400);transition:color .2s}
.recipe-breadcrumb a:hover{color:var(--red-light)}
.recipe-breadcrumb .sep{color:var(--gray-600);margin:0 2px}
.recipe-breadcrumb [aria-current="page"]{color:var(--gray-500)}

/* Recipe meta bar */
.recipe-meta-bar{display:flex;flex-wrap:wrap;gap:24px;justify-content:center;margin-top:24px}
.recipe-meta-bar .meta-item{display:flex;align-items:center;gap:8px;color:#d1d5db;font-size:14px}
.recipe-meta-bar svg{width:18px;height:18px;stroke:var(--red-light);fill:none;stroke-width:2}

/* Quick answer box */
.quick-answer{
  background:var(--white);
  border:2px solid var(--red-light);
  border-radius:var(--radius-lg);
  padding:32px;
  margin:0 auto 40px;
  max-width:760px;
  box-shadow:var(--shadow-md);
}
.quick-answer-label{
  display:inline-block;
  font-family:var(--font-display);
  font-size:18px;
  letter-spacing:.08em;
  color:var(--red-light);
  margin-bottom:12px;
}
.quick-answer p{color:var(--gray-600);line-height:1.8;font-size:16px}

/* Author line */
.author-line{font-size:14px;color:var(--gray-500);margin-bottom:32px;text-align:center}
.author-line strong{color:var(--dark)}

/* TOC */
.recipe-toc{
  background:var(--cream);
  border:1px solid var(--gray-200);
  border-radius:var(--radius);
  padding:24px 28px;
  margin-bottom:48px;
  max-width:760px;
  margin-left:auto;margin-right:auto;
}
.recipe-toc h2{font-family:var(--font-head);font-size:18px;margin-bottom:12px;color:var(--dark)}
.recipe-toc ul{display:grid;gap:6px}
@media(min-width:480px){.recipe-toc ul{grid-template-columns:1fr 1fr}}
.recipe-toc a{font-size:14px;color:var(--gray-600);transition:color .2s;display:flex;align-items:center;gap:6px}
.recipe-toc a:hover{color:var(--red-light)}
.recipe-toc a::before{content:'→';color:var(--red-light);font-size:12px}

/* Recipe content */
.recipe-content{max-width:760px;margin:0 auto}
.recipe-content > h2{
  font-family:var(--font-head);
  font-size:28px;
  color:var(--dark);
  margin-top:48px;margin-bottom:16px;
  padding-bottom:8px;
  border-bottom:2px solid var(--red-light);
  display:inline-block;
}
.recipe-content > h3{font-family:var(--font-head);font-size:20px;color:var(--dark);margin-top:28px;margin-bottom:12px}
.recipe-content p{color:var(--gray-600);line-height:1.85;margin-bottom:16px;font-size:16px}
.recipe-content ul,.recipe-content ol{padding-left:20px;margin-bottom:16px}
.recipe-content li{color:var(--gray-600);line-height:1.85;margin-bottom:6px;font-size:16px}
.recipe-content ul{list-style:disc}
.recipe-content ol{list-style:decimal}
.recipe-content strong{color:var(--dark)}
.recipe-content em{color:var(--dark);font-style:italic}

/* Recipe card */
.recipe-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  overflow:hidden;
  margin-bottom:48px;
}
.recipe-card-header{padding:28px 32px;background:var(--cream);border-bottom:1px solid var(--gray-200)}
.recipe-card-header h2{font-family:var(--font-head);font-size:24px;color:var(--dark);margin-bottom:4px}
.recipe-card-header p{color:var(--gray-500);font-size:14px}
.recipe-card-grid{display:grid;gap:0}
@media(min-width:768px){.recipe-card-grid{grid-template-columns:1fr 1fr}}
.recipe-card-section{padding:28px 32px}
.recipe-card-section + .recipe-card-section{border-top:1px solid var(--gray-200)}
@media(min-width:768px){
  .recipe-card-section + .recipe-card-section{border-top:none;border-left:1px solid var(--gray-200)}
}
.recipe-card-section h3{font-family:var(--font-head);font-size:18px;color:var(--dark);margin-bottom:14px}
.recipe-card-meta{display:grid;gap:10px;margin-bottom:0}
.recipe-card-meta-item{display:flex;justify-content:space-between;align-items:center;font-size:14px;color:var(--gray-600);border-bottom:1px dashed var(--gray-200);padding-bottom:8px}
.recipe-card-meta-item:last-child{border-bottom:none}
.recipe-card-meta-item span:first-child{color:var(--gray-500)}
.recipe-card-meta-item span:last-child{font-weight:600;color:var(--dark)}
.ingredient-list{list-style:none!important;padding-left:0!important}
.ingredient-list li{padding:8px 0;border-bottom:1px dashed var(--gray-200);font-size:15px}
.ingredient-list li:last-child{border-bottom:none}
.equipment-list{list-style:none!important;padding-left:0!important}
.equipment-list li{padding:6px 0;font-size:15px;display:flex;align-items:center;gap:8px}
.equipment-list li::before{content:'✓';color:var(--green);font-weight:700;flex-shrink:0}

/* Step instructions */
.step-list{list-style:none!important;padding-left:0!important;counter-reset:step}
.step-list li{
  padding:16px 0 16px 48px;
  position:relative;
  border-bottom:1px solid var(--gray-200);
  font-size:15px;
  line-height:1.75;
  color:var(--gray-600);
  counter-increment:step;
}
.step-list li:last-child{border-bottom:none}
.step-list li::before{
  content:counter(step);
  position:absolute;
  left:0;top:16px;
  width:32px;height:32px;
  background:var(--red-light);
  color:var(--white);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:14px;
  font-family:var(--font-body);
}

/* Recipe notes */
.recipe-notes{
  background:var(--cream);
  border-left:4px solid var(--mustard);
  padding:20px 24px;
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  margin:24px 0;
}
.recipe-notes p{margin-bottom:8px;font-size:15px}
.recipe-notes p:last-child{margin-bottom:0}

/* Nutrition estimate */
.nutrition-grid{display:grid;gap:12px;margin-top:16px}
@media(min-width:480px){.nutrition-grid{grid-template-columns:repeat(3,1fr)}}
.nutrition-item{text-align:center;padding:14px;background:var(--cream);border-radius:var(--radius-sm)}
.nutrition-item strong{display:block;font-family:var(--font-display);font-size:22px;color:var(--dark)}
.nutrition-item span{font-size:12px;color:var(--gray-500)}
.nutrition-disclaimer{font-size:12px;color:var(--gray-400);margin-top:12px;font-style:italic}

/* Comparison table */
.compare-table{width:100%;border-collapse:collapse;margin:24px 0;font-size:14px}
.compare-table th,.compare-table td{padding:12px 16px;text-align:left;border-bottom:1px solid var(--gray-200)}
.compare-table th{background:var(--dark);color:var(--white);font-weight:600;font-size:13px}
.compare-table td{color:var(--gray-600)}
.compare-table tr:nth-child(even){background:var(--cream)}
.compare-table-wrap{overflow-x:auto;margin:24px 0}

/* Error list */
.error-list{display:grid;gap:16px;margin:24px 0}
.error-item{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius);
  padding:20px 24px;
  box-shadow:var(--shadow-sm);
}
.error-item h3{font-family:var(--font-head);font-size:17px;color:var(--red);margin-bottom:8px}
.error-item p{font-size:14px;line-height:1.7;margin-bottom:6px;color:var(--gray-600)}
.error-item .error-solution{color:var(--green);font-weight:600}

/* Variations */
.variation-grid{display:grid;gap:16px;margin:24px 0}
@media(min-width:640px){.variation-grid{grid-template-columns:1fr 1fr}}
.variation-card{
  background:var(--cream);
  border:1px solid var(--gray-200);
  border-radius:var(--radius);
  padding:20px 24px;
}
.variation-card h3{font-family:var(--font-head);font-size:17px;color:var(--dark);margin-bottom:6px}
.variation-card p{font-size:14px;color:var(--gray-500);line-height:1.65;margin:0}

/* Scaling table */
.scale-table{width:100%;border-collapse:collapse;margin:24px 0;font-size:14px}
.scale-table th,.scale-table td{padding:10px 14px;text-align:center;border:1px solid var(--gray-200)}
.scale-table th{background:var(--red-light);color:var(--white);font-weight:600;font-size:13px}
.scale-table td{color:var(--gray-600)}
.scale-table tr:nth-child(even){background:var(--cream)}

/* Image figure */
.recipe-figure{margin:32px 0;text-align:center}
.recipe-figure img{width:100%;border-radius:var(--radius-lg);box-shadow:var(--shadow-lg)}
.recipe-figcaption{font-size:13px;color:var(--gray-500);margin-top:8px;font-style:italic}

/* Video embed */
.recipe-video-wrap{position:relative;max-width:900px;margin:32px auto;padding-bottom:56.25%;height:0;overflow:hidden;border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);background:#000}
.recipe-video-wrap iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0}

/* CTA cards at end */
.cta-cards{display:grid;gap:20px;margin:40px 0}
@media(min-width:640px){.cta-cards{grid-template-columns:repeat(3,1fr)}}
.cta-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:28px 24px;
  text-align:center;
  box-shadow:var(--shadow-sm);
  transition:box-shadow .3s var(--ease),transform .3s var(--ease);
}
.cta-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.cta-card svg{width:32px;height:32px;stroke:var(--red-light);fill:none;stroke-width:2;margin:0 auto 12px}
.cta-card h3{font-family:var(--font-head);font-size:18px;color:var(--dark);margin-bottom:8px}
.cta-card p{font-size:14px;color:var(--gray-500);line-height:1.6;margin-bottom:16px}
.cta-card a{display:inline-flex;align-items:center;gap:6px;padding:10px 20px;background:var(--red-light);color:var(--white);font-size:13px;font-weight:600;border-radius:6px;transition:background .2s,transform .15s}
.cta-card a:hover{background:var(--red);transform:scale(1.03)}

/* Source reference */
.source-ref{font-size:13px;color:var(--gray-400);margin-top:8px;font-style:italic}
.source-ref a{color:var(--red-light);text-decoration:underline}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:1023px){
  .main-nav{display:none}
  .hamburger{display:flex}
}
@media(max-width:640px){
  .form-card{padding:28px 20px}
  .newsletter-box{padding:32px 20px}
  .feature-block{gap:32px}
  .section{padding:56px 0}
  .recipe-card-section{padding:20px}
  .quick-answer{padding:24px 20px}
  .recipe-toc{padding:20px}
}
