/* ============================================================
   FIXLINE® Kitchen — Master Stylesheet
   fixline-kitchen.de
   ============================================================ */

:root {
  --bg:           #080f08;
  --bg-card:      #111b11;
  --bg-alt:       #0d160d;
  --green:        #2a5a27;
  --green-light:  #3a7a35;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --text:         #ede8e0;
  --text-muted:   #8a8078;
  --border:       #1c2e1c;
  --radius:       8px;
  --max-w:        1200px;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif:   Georgia, 'Palatino Linotype', serif;
  --ease:         0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.75; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--gold-light); }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,15,8,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 70px;
}
.nav-logo {
  font-family: var(--font-serif); font-size: 1.45rem;
  color: var(--text); letter-spacing: 2px; font-weight: 700;
  line-height: 1;
}
.nav-logo span { color: var(--gold); font-size: 0.75em; vertical-align: super; }
.nav-logo small {
  display: block; font-size: 0.42em; color: var(--text-muted);
  letter-spacing: 3px; font-family: var(--font-body);
  font-weight: 400; text-transform: uppercase; margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  color: var(--text-muted); font-size: 0.88rem;
  letter-spacing: 0.5px; font-weight: 500;
  transition: color var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-shop {
  background: var(--gold) !important; color: var(--bg) !important;
  padding: 0.5rem 1.2rem; border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-shop:hover { background: var(--gold-light) !important; }
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--text); font-size: 1.8rem; cursor: pointer; padding: 0;
  width: 44px; height: 44px; flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 820px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem 1.25rem; gap: 0; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    min-height: 44px; display: flex; align-items: center;
    font-size: 0.97rem; width: 100%; padding: 0 0.5rem;
    border-radius: 6px;
  }
  .nav-links a:hover { background: rgba(255,255,255,0.04); color: var(--text); }
  .nav-links .nav-shop {
    margin-top: 0.5rem; padding: 0.7rem 1.2rem !important;
    justify-content: center; width: 100%;
    background: var(--gold) !important; color: var(--bg) !important;
  }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { padding: 1rem 0; font-size: 0.82rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.5; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 6rem 0 5rem; text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(42,90,39,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold); font-size: 0.75rem;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 0.4rem 1.2rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero h1 { max-width: 820px; margin: 0 auto 1.5rem; }
.hero-desc {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 580px; margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 2rem; justify-content: center;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.hero-meta-item { text-align: center; }
.hero-meta-item strong { display: block; font-size: 1.8rem; color: var(--gold); font-family: var(--font-serif); }
.hero-meta-item span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Blog-Übersicht Hero */
.hero-blog-index { padding: 4rem 0 3rem; }

/* Article hero (left-aligned) */
.hero-article { padding: 3.5rem 0 2.5rem; }
.hero-article h1 { text-align: left; max-width: 100%; font-size: clamp(1.7rem, 3.5vw, 2.7rem); }
.hero-article .hero-meta {
  justify-content: flex-start; margin-top: 1.25rem;
  font-size: 0.85rem; color: var(--text-muted);
}
.hero-article .hero-meta-item { text-align: left; }
.hero-article .hero-meta-item strong { font-size: 1rem; color: var(--text-muted); font-family: var(--font-body); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all var(--ease);
  border: 2px solid transparent; text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--bg); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 1.1rem 2.75rem; font-size: 1.05rem; }

/* ============================================================
   CARDS & GRIDS
   ============================================================ */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color var(--ease), transform var(--ease);
}
.card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-2px); }
.card-icon { display:flex; justify-content:center; align-items:center; margin-bottom: 1rem; line-height:0; }
.card h3 { color: var(--text); margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .label {
  display: inline-block; color: var(--gold);
  font-size: 0.75rem; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); max-width: 580px; margin: 0 auto; }

/* ============================================================
   ARTICLE LAYOUT
   ============================================================ */
.article-layout { display: grid; grid-template-columns: 1fr 290px; gap: 3rem; align-items: start; }

.article-body h2 {
  border-left: 3px solid var(--gold);
  padding-left: 1rem; margin-top: 3rem; margin-bottom: 1.25rem;
}
.article-body h3 { color: var(--gold-light); margin-top: 2rem; margin-bottom: 0.9rem; }
.article-body ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1.25rem; }
.article-body ol { padding-left: 1.5rem; list-style: decimal; margin-bottom: 1.25rem; }
.article-body li { margin-bottom: 0.5rem; color: var(--text); }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; overflow-x: auto; display: block; }
.article-body th { background: var(--bg-card); color: var(--gold); padding: 0.75rem 1rem; text-align: left; border-bottom: 2px solid var(--gold); white-space: nowrap; }
.article-body td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
.article-body tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.article-body blockquote {
  border-left: 3px solid var(--gold); padding: 1rem 1.5rem;
  background: var(--bg-card); margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--text-muted);
}
.article-body .highlight-box {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius); padding: 1.5rem; margin: 2rem 0;
}
.article-body .highlight-box h4 { color: var(--gold); margin-bottom: 0.75rem; }

@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } }

/* ── Table of Contents ── */
.toc {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  position: sticky; top: 90px;
}
.toc h4 {
  color: var(--gold); font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 1rem; border-bottom: 1px solid var(--border); padding-bottom: 0.75rem;
}
.toc ol { padding-left: 1.2rem; list-style: decimal; }
.toc li { margin-bottom: 0.5rem; }
.toc a { color: var(--text-muted); font-size: 0.88rem; }
.toc a:hover { color: var(--gold); }

/* ── Sidebar widgets ── */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.sidebar-widget h4 {
  color: var(--gold); font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 1rem; border-bottom: 1px solid var(--border); padding-bottom: 0.75rem;
}
.sidebar-widget ul { display: flex; flex-direction: column; gap: 0.6rem; }
.sidebar-widget ul li a { color: var(--text-muted); font-size: 0.9rem; }
.sidebar-widget ul li a:hover { color: var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none;
  color: var(--text); text-align: left;
  padding: 1.2rem 0; font-size: 1rem; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; font-family: var(--font-body);
}
.faq-question::after {
  content: '+'; color: var(--gold); font-size: 1.4rem;
  line-height: 1; flex-shrink: 0;
  transition: transform var(--ease);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer p { padding-bottom: 1.2rem; color: var(--text-muted); font-size: 0.95rem; }

/* ============================================================
   PRODUCT BOX
   ============================================================ */
.product-box {
  background: linear-gradient(135deg, rgba(42,90,39,0.18), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius); padding: 2.5rem;
  text-align: center; margin: 2.5rem 0;
}
.product-badge {
  display: inline-block; background: var(--gold); color: var(--bg);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 0.3rem 0.9rem;
  border-radius: 50px; margin-bottom: 1rem;
}
.product-box h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.product-price {
  font-size: 2rem; color: var(--gold); font-weight: 700;
  margin: 0.75rem 0; font-family: var(--font-serif);
}
.product-price del { font-size: 1.1rem; color: var(--text-muted); font-weight: 400; margin-right: 0.5rem; }
.product-box > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.product-features {
  text-align: left; display: inline-block;
  margin: 0 auto 1.75rem; min-width: 200px;
}
.product-features li { padding: 0.25rem 0; color: var(--text); font-size: 0.9rem; }
.product-features li::before { content: '✓  '; color: var(--gold); font-weight: 700; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-2px); }
.blog-card-img {
  height: 180px; display: flex; align-items: center;
  justify-content: center; line-height: 0;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: 0.72rem; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.5rem;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { color: var(--text-muted); font-size: 0.88rem; flex: 1; }
.blog-card-meta {
  display: flex; gap: 1rem; margin-top: 1rem;
  font-size: 0.78rem; color: var(--text-muted);
  padding-top: 1rem; border-top: 1px solid var(--border);
}

/* ============================================================
   FEATURE / STEP LISTS
   ============================================================ */
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.feature-text h4 { font-size: 0.97rem; margin-bottom: 0.2rem; }
.feature-text p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.step-list { counter-reset: steps; display: flex; flex-direction: column; gap: 1.5rem; }
.step-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  width: 38px; height: 38px; background: var(--gold); color: var(--bg);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0; font-family: var(--font-serif);
}
.step-content h4 { margin-bottom: 0.35rem; }
.step-content p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--bg-card), rgba(42,90,39,0.25));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius); padding: 4rem 2rem; text-align: center;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--text-muted); max-width: 520px; margin: 0 auto 2rem; }

/* ============================================================
   HOME HERO
   ============================================================ */
.home-hero {
  min-height: 88vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.home-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(42,90,39,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 45%);
}
.home-hero-content { position: relative; max-width: 700px; }
.home-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.15; margin-bottom: 1.5rem; }
.home-hero h1 em { font-style: normal; color: var(--gold); }
.home-hero > .container > div > p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 520px; }
.home-trust { display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.88rem; }
.trust-item strong { color: var(--text); }

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  background: var(--bg-card); color: var(--gold);
  padding: 0.9rem 1rem; text-align: center;
  border-bottom: 2px solid var(--gold);
}
.compare-table th:first-child { text-align: left; }
.compare-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); text-align: center; }
.compare-table td:first-child { text-align: left; color: var(--text); font-weight: 600; }
.compare-table .hl { background: rgba(201,168,76,0.06); }
.yes { color: #5cb85c; font-weight: 700; }
.no  { color: #d9534f; }
.mid { color: var(--gold); }

/* ============================================================
   NOTICE / WARNING
   ============================================================ */
.notice {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  font-size: 0.9rem; color: var(--text); margin: 1.5rem 0;
}
.notice strong { color: var(--gold); }
.notice-warn { background: rgba(220,100,30,0.09); border-color: rgba(220,100,30,0.28); }
.notice-warn strong { color: #e07840; }

/* ============================================================
   DECORATIVE
   ============================================================ */
.gold-line { display: block; width: 55px; height: 2px; background: var(--gold); margin: 0 auto 2rem; }
.gold-line-left { display: block; width: 55px; height: 2px; background: var(--gold); margin: 0 0 1.5rem; }
.divider { height: 1px; background: var(--border); margin: 3rem 0; }
.stars { color: var(--gold); letter-spacing: 2px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo-text { font-family: var(--font-serif); font-size: 1.35rem; color: var(--text); }
.footer-logo-text span { color: var(--gold); }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 0.75rem; line-height: 1.7; }
.footer h4 {
  color: var(--text); font-size: 0.78rem;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem;
}
.footer ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer ul li a { color: var(--text-muted); font-size: 0.88rem; }
.footer ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: var(--text-muted); font-size: 0.82rem; }
.footer-legal a:hover { color: var(--gold); }

@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================================
   COOKIE BANNER – Vollbild-Modal (DSGVO)
   ============================================================ */
#cookie-banner {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: none; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.cookie-box {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 16px;
  padding: 2.75rem 2.25rem 2.25rem;
  max-width: 480px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7);
  animation: cookieIn 0.28s ease;
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(-16px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.cookie-logo {
  display: block; font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 700;
  color: var(--text); letter-spacing: 2px; margin-bottom: 1.5rem;
}
.cookie-logo span { color: var(--gold); }
.cookie-box h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.cookie-box > p {
  color: var(--text-muted); font-size: 0.87rem;
  line-height: 1.65; margin-bottom: 1.75rem;
}
.cookie-box > p a { color: var(--gold); text-decoration: underline; }
.cookie-actions {
  display: flex; gap: 0.75rem;
  justify-content: center; flex-wrap: wrap;
}
.cookie-actions .btn { min-width: 160px; justify-content: center; }
@media (max-width: 460px) {
  .cookie-box { padding: 2rem 1.5rem; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 2rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--gold); color: var(--bg);
  border: none; border-radius: 50%;
  font-size: 1.1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.25s, background 0.2s;
  z-index: 998; box-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); background: var(--gold-light); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, #0b1a0b, #172e17);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}
.newsletter-box { max-width: 580px; margin: 0 auto; text-align: center; }
.newsletter-icon { display:flex; justify-content:center; margin-bottom: 1rem; line-height:0; }
.newsletter-box h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin-bottom: 0.75rem; }
.newsletter-box > p { color: var(--text-muted); margin-bottom: 1.75rem; }
.newsletter-form {
  display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center;
}
.newsletter-form input[type=email] {
  flex: 1; min-width: 220px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text); padding: 0.85rem 1.25rem;
  border-radius: var(--radius); font-size: 0.95rem;
  outline: none; transition: border-color var(--ease);
}
.newsletter-form input[type=email]:focus { border-color: var(--gold); }
.newsletter-form input[type=email]::placeholder { color: var(--text-muted); }
.newsletter-success {
  color: var(--gold); font-weight: 600;
  padding: 1rem 1.25rem; margin-top: 1rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  background: rgba(201,168,76,0.07);
  display: none;
}
.newsletter-fine {
  margin-top: 1rem; font-size: 0.78rem; color: var(--text-muted);
}
.newsletter-fine a { color: var(--text-muted); text-decoration: underline; }
.newsletter-error {
  display: none; color: #e53e3e; font-size: 0.88rem; margin-top: 0.5rem;
}

/* ============================================================
   BEWERTUNGEN (REVIEWS)
   ============================================================ */
.reviews-section { background: var(--bg-alt); }
.stars-large {
  font-size: 1.4rem; color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem;
  justify-content: center; margin-top: 0.6rem;
}
.stars-large span { font-size: 0.88rem; color: var(--text-muted); font-family: var(--font-body); }
.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.review-card .stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.review-card p { color: var(--text-muted); font-size: 0.92rem; font-style: italic; flex: 1; margin: 0; }
.review-author { font-size: 0.8rem; color: var(--text-muted); }
.review-author strong { color: var(--text); }

/* ============================================================
   KONTAKTFORMULAR
   ============================================================ */
.contact-form { max-width: 720px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; margin-bottom: 0.45rem;
  font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--bg-card);
  border: 1px solid var(--border); color: var(--text);
  padding: 0.85rem 1.25rem; border-radius: var(--radius);
  font-size: 0.95rem; font-family: var(--font-body);
  outline: none; transition: border-color var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.form-group input[type=checkbox] {
  width: auto; accent-color: var(--gold); cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   MOBILE FIRST — Responsive Improvements
   ============================================================ */

/* Kein horizontales Scrollen auf keinem Gerät */
html, body { overflow-x: hidden; }

/* Touch-Highlight deaktivieren für alle interaktiven Elemente */
a, button, .btn, .faq-question, .nav-toggle { -webkit-tap-highlight-color: transparent; }

/* Feature-Grid: 2-spaltig Desktop → 1-spaltig Handy */
.grid-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Tablet (769px–1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 3.5rem; }
  .home-hero { min-height: 70vh; padding: 2.5rem 0 3.5rem; }
  .grid-feature { gap: 2.5rem; }
  .article-layout { grid-template-columns: 1fr 260px; gap: 2rem; }
}

/* ── Mobile allgemein (≤768px) ── */
@media (max-width: 768px) {
  /* Abstände reduzieren */
  .section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 1.75rem; }
  .divider { margin: 1.5rem 0; }
  .container { padding: 0 1rem; }

  /* Hero */
  .hero { padding: 2.5rem 0 2rem; }
  .hero-badge { font-size: 0.7rem; letter-spacing: 2px; padding: 0.35rem 1rem; }
  .hero-desc { font-size: 0.97rem; margin-bottom: 1.75rem; }
  .hero-meta { gap: 1rem; margin-top: 1.25rem; }

  /* Home-Hero kompakter */
  .home-hero { min-height: auto; padding: 2.5rem 0 3rem; }
  .home-trust { gap: 0.6rem 1.25rem; }

  /* Feature-Grid → einspaltig */
  .grid-feature { grid-template-columns: 1fr; gap: 2rem; }

  /* Karten */
  .card { padding: 1.5rem; }
  .card:hover { transform: none; }

  /* Blog-Karten */
  .blog-card:hover { transform: none; }
  .blog-card-img { height: 150px; }

  /* Artikel */
  .article-body h2 { margin-top: 2rem; }
  .article-body table { font-size: 0.82rem; -webkit-overflow-scrolling: touch; }
  .article-body th { white-space: normal; min-width: 70px; }

  /* Blog-Index Hero */
  .hero-blog-index { padding: 2rem 0 1.5rem; }

  /* Hero-Artikel */
  .hero-article { padding: 1.75rem 0 1.5rem; }
  .hero-article h1 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); line-height: 1.25; }
  .hero-article > .container > p { font-size: 0.95rem; }

  /* Produktbox */
  .product-box { padding: 1.75rem 1.25rem; }
  .product-features { display: block; width: 100%; min-width: 0; }

  /* CTA */
  .cta-section { padding: 2rem 1.25rem; }

  /* Schritt-Liste */
  .step-num { width: 34px; height: 34px; font-size: 0.85rem; }

  /* Bewertungen */
  .review-card { padding: 1.25rem; }

  /* Vergleichstabelle scrollbar */
  .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* TOC im Sidebar auf Mobile ausblenden (erscheint unter dem Artikel = nutzlos) */
  .sidebar .toc { display: none; }
  .toc { position: static; top: auto; }

  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
  .footer-grid { gap: 2rem; }
}

/* ============================================================
   DEDIZIERTE PRODUKTSEITEN
   ============================================================ */

/* Produkt-Hero: Vollbreites Bild */
.product-hero { position: relative; overflow: hidden; }
.product-hero-img {
  width: 100%; height: 55vh; min-height: 320px; max-height: 560px;
  object-fit: cover; display: block;
}
.product-hero-placeholder {
  width: 100%; height: 55vh; min-height: 320px; max-height: 560px;
  background: linear-gradient(135deg, var(--bg-card), rgba(42,90,39,0.35));
  display: flex; align-items: center; justify-content: center;
}
.product-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,15,8,0.9) 0%, rgba(8,15,8,0.25) 55%, transparent 100%);
}
.product-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 0 2rem;
}
.product-hero-content .hero-badge { margin-bottom: 0.75rem; }
.product-hero-content h1 { max-width: 720px; margin-bottom: 0.75rem; }
.product-hero-content .product-price-hero {
  font-size: 2rem; color: var(--gold); font-weight: 700;
  font-family: var(--font-serif); margin-bottom: 1.25rem;
}
.product-hero-content .product-price-hero del {
  font-size: 1.1rem; color: var(--text-muted); font-weight: 400; margin-right: 0.5rem;
}

/* Produkt-Details Layout */
.product-detail-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start;
}
@media (max-width: 900px) { .product-detail-layout { grid-template-columns: 1fr; } }

/* Produkt-Kaufbox */
.product-buy-box {
  background: var(--bg-card); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px; padding: 2rem; position: sticky; top: 90px;
}
.product-buy-box h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.product-buy-box .product-price { font-size: 2rem; margin: 0.5rem 0 1.25rem; }
.product-buy-box .btn-buy {
  display: flex; width: 100%; justify-content: center;
  font-size: 1.05rem; padding: 1rem; min-height: 52px;
  margin-bottom: 1rem; border-radius: var(--radius);
}
.product-buy-meta {
  display: flex; flex-direction: column; gap: 0.45rem;
  font-size: 0.83rem; color: var(--text-muted); margin-top: 1rem;
  padding-top: 1rem; border-top: 1px solid var(--border);
}
.product-buy-meta span::before { content: '✓  '; color: var(--gold); font-weight: 700; }

/* Technische Details */
.tech-table { width: 100%; border-collapse: collapse; }
.tech-table td { padding: 0.65rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.tech-table td:first-child { color: var(--text-muted); width: 45%; padding-right: 1rem; }
.tech-table tr:last-child td { border-bottom: none; }

/* Trust Badges */
.trust-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }
.trust-badge {
  display: flex; align-items: flex-start; gap: 0.6rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.65rem 1rem; font-size: 0.82rem; color: var(--text-muted);
  flex: 1; min-width: 140px;
}
.trust-badge strong { display: block; color: var(--text); font-size: 0.85rem; margin-bottom: 0.1rem; }
.trust-badge-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }

/* Verwandte Produkte */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; gap: 1rem; } }
@media (min-width: 601px) and (max-width: 900px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }

.related-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
  text-decoration: none; display: block;
}
.related-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-2px); color: var(--text); }
.related-card-img {
  height: 150px; overflow: hidden;
  background: linear-gradient(135deg, #111b11, rgba(42,90,39,0.25));
  display: flex; align-items: center; justify-content: center;
}
.related-card-img img { width: 100%; height: 100%; object-fit: cover; }
.related-card-body { padding: 1.1rem; }
.related-card-body h4 { font-size: 0.93rem; color: var(--text); margin-bottom: 0.3rem; }
.related-card-body .rel-price { color: var(--gold); font-weight: 700; font-size: 1rem; }

/* Sticky Kaufen Button (nur Mobile/Tablet) */
.sticky-buy {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(17,27,17,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  z-index: 500; box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  transform: translateY(100%); transition: transform 0.3s ease;
}
.sticky-buy.visible { display: flex; transform: translateY(0); }
.sticky-buy-info small { display: block; font-size: 0.78rem; color: var(--text-muted); }
.sticky-buy-info strong { font-size: 1.05rem; color: var(--text); }
.sticky-buy-price { color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.sticky-buy .btn { white-space: nowrap; flex-shrink: 0; min-height: 44px; }

@media (min-width: 901px) { .sticky-buy { display: none !important; } }

/* ── Mobile: Produktseiten ── */
@media (max-width: 768px) {
  .product-buy-box { position: static; top: auto; }
  .trust-badge { min-width: calc(50% - 0.4rem); flex: 1 1 calc(50% - 0.4rem); }
  .trust-badges { gap: 0.5rem; }
  .tech-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 480px) {
  .product-hero-img, .product-hero-placeholder { height: 42vh; min-height: 240px; max-height: 380px; }
  .product-hero-content { padding: 1.25rem 0 1rem; }
  .product-hero-content h1 { font-size: clamp(1.3rem, 6vw, 1.8rem); margin-bottom: 0.4rem; }
  .product-hero-content .product-price-hero { font-size: 1.3rem; margin-bottom: 0.75rem; }
  .product-hero-content .btn { padding: 0.75rem 1.5rem; font-size: 0.92rem; }
  .sticky-buy { padding: 0.55rem 0.9rem; }
  .sticky-buy-info small { font-size: 0.7rem; }
  .sticky-buy-info strong { font-size: 0.9rem; }
  .sticky-buy-price { font-size: 0.95rem; }
  .sticky-buy .btn { padding: 0.65rem 1rem; font-size: 0.85rem; }
  .trust-badge { min-width: calc(50% - 0.3rem); padding: 0.5rem 0.7rem; font-size: 0.78rem; }
  .trust-badge-icon { font-size: 1.1rem; }
}

/* iOS: Auto-Zoom auf Inputs verhindern */
@media (max-width: 768px) {
  input[type="email"], input[type="text"], input[type="tel"],
  input[type="search"], textarea, select { font-size: 16px !important; }
}

/* Sticky-Buy bei gleichzeitig sichtbarem Back-to-Top */
.sticky-buy.visible ~ #back-to-top,
body:has(.sticky-buy.visible) #back-to-top { bottom: 5rem; }

/* ============================================================
   REZEPTE SECTION
   ============================================================ */

.recipe-hero {
  padding: 4rem 0 3rem;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.recipe-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.recipe-emoji-hero {
  font-size: 6rem;
  line-height: 1;
  display: block;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
  text-align: center;
}

.recipe-meta-bar {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin: 2rem 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.recipe-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  flex: 1;
  min-width: 140px;
  border-right: 1px solid var(--border);
}
.recipe-meta-item:last-child { border-right: none; }
.recipe-meta-icon { font-size: 1.5rem; line-height: 1; }
.recipe-meta-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.recipe-meta-value { font-size: 0.95rem; color: var(--text); font-weight: 600; }
.difficulty-easy { color: #5cb85c; }
.difficulty-medium { color: var(--gold); }
.difficulty-hard { color: #e07840; }

.recipe-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.recipe-category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color var(--ease), transform var(--ease);
}
.recipe-category-card:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-4px); }
.recipe-category-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5rem;
  position: relative;
}
.recipe-category-body { padding: 1.5rem; }
.recipe-category-body h3 { color: var(--text); margin-bottom: 0.4rem; font-size: 1.2rem; }
.recipe-category-body p { color: var(--text-muted); font-size: 0.88rem; margin: 0 0 0.75rem; }
.recipe-count {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}

.recipe-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color var(--ease), transform var(--ease);
}
.recipe-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-2px); color: var(--text); }
.recipe-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}
.recipe-card-body { padding: 1.25rem; }
.recipe-card-body h3 { font-size: 1rem; color: var(--text); margin-bottom: 0.4rem; }
.recipe-card-body p { color: var(--text-muted); font-size: 0.84rem; margin-bottom: 0.75rem; }
.recipe-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.76rem;
  color: var(--text-muted);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.ingredients-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 2rem 0;
}
.ingredients-box h3 {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.ingredients-list { list-style: none; padding: 0; margin: 0; }
.ingredients-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.92rem;
  color: var(--text);
  gap: 1rem;
}
.ingredients-list li:last-child { border-bottom: none; }
.ingredient-amount { color: var(--gold-light); font-weight: 600; white-space: nowrap; flex-shrink: 0; }

.recipe-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.recipe-step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-serif);
  box-shadow: 0 2px 12px rgba(201,168,76,0.25);
}
.recipe-step-content h4 { color: var(--text); margin-bottom: 0.4rem; font-size: 1rem; }
.recipe-step-content p { color: var(--text-muted); font-size: 0.92rem; margin: 0; line-height: 1.65; }

.recipe-product-box {
  background: linear-gradient(135deg, rgba(42,90,39,0.22), rgba(201,168,76,0.07));
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.recipe-product-emoji { font-size: 3.5rem; line-height: 1; flex-shrink: 0; }
.recipe-product-info { flex: 1; }
.recipe-product-label {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
}
.recipe-product-info h4 { margin-bottom: 0.25rem; font-size: 1.1rem; }
.recipe-product-info p { color: var(--text-muted); font-size: 0.87rem; margin-bottom: 0.9rem; }

.recipe-search-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.recipe-search-wrap input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.9rem 1.25rem 0.9rem 3rem;
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.recipe-search-wrap input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.recipe-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.tag-list { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease);
}
.tag:hover { background: rgba(201,168,76,0.22); border-color: rgba(201,168,76,0.4); color: var(--gold); }

.recipe-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .recipe-layout { grid-template-columns: 1fr; } }

.recipe-sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.recipe-sidebar-widget h4 {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.similar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.category-hero { padding: 3.5rem 0 2.5rem; background: var(--bg-alt); }

@media (max-width: 960px) { .recipe-category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .similar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) {
  .recipe-category-grid { grid-template-columns: 1fr; }
  .recipe-category-img { height: 160px; font-size: 4.5rem; }
  .recipe-product-box { flex-direction: column; text-align: center; }
  .similar-grid { grid-template-columns: 1fr; }
  .recipe-meta-bar { flex-direction: column; }
  .recipe-meta-item { border-right: none; border-bottom: 1px solid var(--border); }
  .recipe-meta-item:last-child { border-bottom: none; }
}

/* ── Kleines Handy (≤480px) ── */
@media (max-width: 480px) {
  .section { padding: 2rem 0; }
  .section-header { margin-bottom: 1.5rem; }

  /* Hero-Buttons: volle Breite gestapelt */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }

  /* Newsletter: gestapelt */
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type=email] { min-width: 100%; }
  .newsletter-form .btn { width: 100%; justify-content: center; }

  /* Trust-Items: 2-spaltig */
  .home-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }

  /* Blog-Karten-Bild kleiner */
  .blog-card-img { height: 130px; }

  /* Back-to-Top */
  .back-to-top { bottom: 1rem; right: 0.75rem; }

  /* Schritt-Liste */
  .step-list { gap: 1.25rem; }
  .step-item { gap: 0.9rem; }

  /* Feature-Items */
  .feature-item { gap: 0.75rem; }

  /* Buttons: Mindesthöhe 44px sicherstellen */
  .btn { min-height: 44px; padding: 0.75rem 1.5rem; }
  .btn-lg { min-height: 50px; padding: 0.9rem 2rem; }

  /* FAQ-Fragen: Touch-freundlich */
  .faq-question { padding: 1rem 0; min-height: 44px; }

  /* Blog-Index Hero */
  .hero-blog-index { padding: 1.5rem 0 1.25rem; }

  /* Hero-Artikel: weitere Reduktion für kleine iPhones */
  .hero-article { padding: 1.25rem 0 1rem; }
  .hero-article h1 { font-size: clamp(1.3rem, 6.5vw, 1.6rem); }

  /* Produktbox: kompakter */
  .product-box { padding: 1.25rem 1rem; }
  .product-box h3 { font-size: 1.2rem; }
  .product-price { font-size: 1.6rem; }
  .product-features li { font-size: 0.85rem; }

  /* Highlight-Box */
  .article-body .highlight-box { padding: 1rem; }

  /* Abstand nach unten vergrößern */
  .mb-4 { margin-bottom: 1.5rem; }
  .mt-4 { margin-top: 1.5rem; }
}

/* ============================================================
   SITE-HEADER (Rezept-Seiten) – responsive Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,15,8,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.logo span { color: var(--gold); font-size: 0.75em; vertical-align: super; }
.site-header nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header nav a {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--ease);
  white-space: nowrap;
}
.site-header nav a:hover,
.site-header nav a.active { color: var(--text); }

.site-header-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 38px;
  height: 38px;
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: border-color var(--ease);
}
.site-header-toggle:hover { border-color: var(--gold); }

@media (max-width: 820px) {
  .site-header-toggle { display: flex; }
  .site-header nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(12,20,12,0.98);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
    z-index: 999;
  }
  .site-header nav.open { display: block; }
  .site-header nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1rem;
    align-items: stretch;
  }
  .site-header nav a {
    display: block;
    padding: 0.75rem 0.75rem;
    border-radius: 6px;
    font-size: 0.88rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .site-header nav a:hover { background: rgba(255,255,255,0.04); }
  .site-header { position: relative; }
}

/* ============================================================
   PROFESSIONELLE REZEPT-SUCHE
   ============================================================ */

/* Suchbereich Hero */
.recipe-search-hero {
  background: var(--bg-alt);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.recipe-search-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(201,168,76,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.recipe-search-input-wrap {
  position: relative;
  max-width: 620px;
  margin: 1.5rem auto 0;
}
.recipe-search-input-wrap input[type=search] {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 1rem 3.5rem 1rem 3.2rem;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
}
.recipe-search-input-wrap input[type=search]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
}
.search-input-icon {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: color var(--ease);
}
.recipe-search-input-wrap input:focus + .search-input-icon,
.recipe-search-input-wrap:focus-within .search-input-icon { color: var(--gold); }
.search-clear-btn {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--text-muted);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), color var(--ease);
}
.search-clear-btn:hover { background: rgba(255,255,255,0.15); color: var(--text); }
.search-clear-btn.visible { display: flex; }

/* Kategorie-Tabs */
.recipe-filter-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 1rem 0.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
  flex-wrap: wrap;
}
.recipe-filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.filter-tab:hover { border-color: rgba(201,168,76,0.4); color: var(--text); }
.filter-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  font-weight: 700;
}
.filter-tab-count {
  background: rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.05rem 0.45rem;
  font-size: 0.72rem;
  line-height: 1.4;
}
.filter-tab.active .filter-tab-count { background: rgba(8,15,8,0.2); }

/* Quick-Filter Chips */
.recipe-filter-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 1rem;
  margin-top: 0.75rem;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.9rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.77rem;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.filter-chip:hover { border-color: rgba(201,168,76,0.35); color: var(--text); }
.filter-chip.active {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.5);
  color: var(--gold);
}

/* Ergebnis-Leiste */
.recipe-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.recipe-results-count {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.recipe-results-count strong { color: var(--text); }
.recipe-sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  outline: none;
  transition: border-color var(--ease);
}
.recipe-sort-select:focus { border-color: var(--gold); }

/* Alle-Rezepte Raster */
.recipe-all-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.recipe-card-wrap {
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.recipe-card-wrap.hidden {
  display: none;
}

/* Leerer Zustand */
.recipe-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  display: none;
}
.recipe-empty-state.visible { display: block; }
.recipe-empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.recipe-empty-state h3 { color: var(--text); margin-bottom: 0.5rem; }
.recipe-empty-state p { color: var(--text-muted); font-size: 0.9rem; }
.recipe-empty-state button {
  margin-top: 1.25rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--ease);
}
.recipe-empty-state button:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   REZEPTKARTE – verbessert
   ============================================================ */
.recipe-card-img {
  position: relative;
  overflow: hidden;
}
.recipe-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.recipe-card-cat-badge {
  position: absolute;
  bottom: 0.6rem;
  left: 0.7rem;
  background: rgba(8,15,8,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  z-index: 1;
}
.recipe-food-emoji {
  font-size: 4.5rem;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6));
  transition: transform 0.3s ease;
  line-height: 1;
  display: block;
}
.recipe-card:hover .recipe-food-emoji { transform: scale(1.08); }
.recipe-card-body p {
  color: var(--text-muted);
  font-size: 0.83rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recipe-diff-badge {
  display: inline-block;
  font-size: 0.72rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}
.recipe-diff-badge.easy  { background: rgba(92,184,92,0.12); color: #5cb85c; }
.recipe-diff-badge.medium { background: rgba(201,168,76,0.12); color: var(--gold); }
.recipe-diff-badge.hard  { background: rgba(224,120,64,0.12); color: #e07840; }
.recipe-time-badge {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ============================================================
   PRODUKT-BOX MIT BILD
   ============================================================ */
.product-box-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 16px rgba(201,168,76,0.2));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.recipe-product-box:hover .product-box-img {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 24px rgba(201,168,76,0.35));
}
.product-box-content h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 0.4rem;
}
.product-box-content p {
  color: var(--text-muted);
  font-size: 0.87rem;
  margin-bottom: 0.9rem;
  line-height: 1.55;
}

/* ============================================================
   REZEPT-HERO – verbessert
   ============================================================ */
.recipe-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}
.recipe-hero .container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: center;
}
.recipe-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.recipe-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.recipe-hero-visual .recipe-emoji-hero {
  margin: 0;
  font-size: 7rem;
  position: relative;
  z-index: 1;
}
.recipe-hero-content { flex: 1; }
.recipe-hero-content h1 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin: 0.75rem 0 0.6rem;
  line-height: 1.2;
}
.recipe-hero-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   SIDEBAR-WIDGET – verbessert
   ============================================================ */
.recipe-sidebar-widget h3 {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}
.nutrition-facts { font-size: 0.88rem; }
.nutrition-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
}
.nutrition-row:last-child { border-bottom: none; }
.nutrition-row span:last-child { color: var(--text); font-weight: 600; }
.shopping-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
}
.shopping-list li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: color var(--ease);
  user-select: none;
}
.shopping-list li:last-child { border-bottom: none; }
.shopping-list li:hover { color: var(--text); }
.shopping-list li.checked {
  text-decoration: line-through;
  opacity: 0.5;
}

/* ============================================================
   RESPONSIVE – Rezept-All-Grid
   ============================================================ */
@media (max-width: 480px) {
  .recipe-all-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .recipe-card-img { height: 180px; }
  .recipe-food-emoji { font-size: 3.5rem; }
  .recipe-search-hero { padding: 2.5rem 0 2rem; }
  .recipe-filter-tabs { gap: 0.4rem; }
  .filter-tab { padding: 0.45rem 0.9rem; font-size: 0.78rem; }
  .recipe-results-bar { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   RESPONSIVE – Rezept-Detailseite
   ============================================================ */
@media (max-width: 900px) {
  .recipe-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .recipe-hero-visual { margin: 0 auto; width: 100%; max-width: 320px; }
  .recipe-hero .breadcrumb { justify-content: center; }
  .recipe-hero .tag-list { justify-content: center; }
}
@media (max-width: 600px) {
  .recipe-hero { padding: 2rem 0; min-height: auto; }
  .recipe-hero-visual { height: 170px; }
  .recipe-hero-visual .recipe-emoji-hero { font-size: 5.5rem; }
  .recipe-meta-bar { flex-direction: row; flex-wrap: wrap; }
  .recipe-meta-item { min-width: calc(50% - 1px); flex: none; padding: 0.85rem 1rem; }
  .recipe-meta-item:nth-child(2n) { border-right: none; }
  .recipe-meta-item:nth-last-child(-n+1):nth-child(odd) { min-width: 100%; border-right: none; }
  .recipe-layout { gap: 2rem; }
  .recipe-step { gap: 1rem; }
  .recipe-product-box { flex-direction: column; align-items: center; text-align: center; }
  .product-box-img { width: 80px; height: 80px; }
}
@media (max-width: 440px) {
  .recipe-meta-item { min-width: 100%; border-right: none; }
  .similar-grid { grid-template-columns: 1fr; }
  .ingredients-box { padding: 1.25rem; }
  .recipe-step { flex-direction: column; }
  .step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 0.9rem;
  }
}

/* ================================================================
   RECIPE SYSTEM v2 — Professional Redesign
   ================================================================ */

/* ── Overview Hero enhanced ── */
.recipe-search-hero { min-height: 440px; padding: 6rem 0 4rem; }
.rh-deco {
  position: absolute; pointer-events: none; user-select: none;
  font-size: 8rem; opacity: 0.055; line-height: 1;
  animation: rhd 7s ease-in-out infinite;
}
.rh-deco:nth-child(2) { animation-delay: -2.5s; animation-duration: 8.5s; }
.rh-deco:nth-child(3) { animation-delay: -5s;   animation-duration: 6.5s; }
.rh-deco:nth-child(4) { animation-delay: -1.5s; animation-duration: 9s;   }
@keyframes rhd { 0%,100%{transform:translateY(0) rotate(var(--r,0deg))} 50%{transform:translateY(-18px) rotate(var(--r,0deg))} }

.recipe-stats-row { display:flex; justify-content:center; gap:3rem; margin-top:2.75rem; flex-wrap:wrap; }
.recipe-stat { text-align:center; }
.recipe-stat-num { display:block; font-size:2.4rem; font-weight:700; font-family:var(--font-serif); color:var(--gold); line-height:1; }
.recipe-stat-label { display:block; font-size:0.68rem; color:var(--text-muted); letter-spacing:2px; text-transform:uppercase; margin-top:0.35rem; }

/* ── Cards improved ── */
.recipe-all-grid { grid-template-columns:repeat(2,1fr); }
.recipe-card-img { height:240px; }
.recipe-card:hover { transform:translateY(-5px); box-shadow:0 16px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,.18); }
.recipe-card-img .r-glow {
  position:absolute; border-radius:50%; filter:blur(55px); opacity:0.38;
  width:130px; height:130px; top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none;
}
.recipe-food-emoji { font-size:5.5rem; position:relative; z-index:1; transition:transform .4s; }
.recipe-card:hover .recipe-food-emoji { transform:scale(1.12) translateY(-6px); }
.recipe-category-img { height:250px; }
.recipe-category-img span { display:block; transition:transform .4s, filter .4s; }
.recipe-category-card:hover { transform:translateY(-7px); box-shadow:0 18px 55px rgba(0,0,0,.45); }
.recipe-category-card:hover .recipe-category-img span { transform:scale(1.18); filter:drop-shadow(0 8px 28px rgba(255,255,255,.15)); }

/* ── Split Hero (individual pages) ── */
.recipe-hero-v2 {
  display:grid; grid-template-columns:54% 46%; min-height:580px; overflow:hidden;
}
.rhv2-visual {
  position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.rhv2-visual::after {
  content:''; position:absolute; right:0; top:0; bottom:0; width:100px;
  background:linear-gradient(to right,transparent,var(--bg-alt)); z-index:1;
}
.rhv2-emoji {
  font-size:12rem; line-height:1; position:relative; z-index:0;
  filter:drop-shadow(0 12px 70px rgba(0,0,0,.85));
  animation:floatFood 5s ease-in-out infinite;
}
@keyframes floatFood {
  0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-16px) scale(1.03)}
}
.rhv2-content {
  background:var(--bg-alt); padding:4.5rem 3.5rem 4.5rem 4.5rem;
  display:flex; flex-direction:column; justify-content:center; position:relative;
}
.rhv2-content::before {
  content:''; position:absolute; left:0; top:12%; height:76%; width:2px;
  background:linear-gradient(to bottom, transparent, var(--gold), transparent); opacity:0.35;
}
.rhv2-content h1 { font-size:clamp(1.9rem,2.8vw,3.1rem); line-height:1.1; margin:.6rem 0 .85rem; }
.rhv2-desc { color:var(--text-muted); font-size:1rem; line-height:1.72; margin:0 0 1.75rem; max-width:450px; }
.rhv2-actions { display:flex; align-items:center; gap:.75rem; flex-wrap:wrap; }

/* Rating */
.recipe-rating { display:flex; align-items:center; gap:.45rem; margin-bottom:.7rem; }
.recipe-stars { color:#f5a623; font-size:1rem; letter-spacing:.5px; }
.recipe-rating-num { font-weight:700; font-size:.88rem; }
.recipe-rating-count { font-size:.78rem; color:var(--text-muted); }

/* Print btn */
.recipe-print-btn {
  display:inline-flex; align-items:center; gap:.4rem; background:none;
  border:1px solid var(--border); color:var(--text-muted); padding:.5rem 1rem;
  border-radius:8px; font-size:.8rem; cursor:pointer; transition:all var(--ease); font-family:inherit;
}
.recipe-print-btn:hover { border-color:var(--gold); color:var(--gold); }

/* Meta bar override */
.recipe-meta-bar { border-radius:0; overflow-x:auto; scrollbar-width:none; }
.recipe-meta-bar::-webkit-scrollbar { display:none; }
.recipe-meta-item { flex-direction:column; align-items:center; text-align:center; padding:1.2rem .75rem; gap:.3rem; min-width:115px; }

/* Nutrition */
.recipe-nutrition {
  display:grid; grid-template-columns:repeat(4,1fr);
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:10px; overflow:hidden; margin:1.75rem 0 2.5rem;
}
.n-cell { padding:1rem; text-align:center; border-right:1px solid var(--border); }
.n-cell:last-child { border-right:none; }
.n-val { display:block; font-size:1.4rem; font-weight:700; font-family:var(--font-serif); color:var(--text); line-height:1; }
.n-lbl { display:block; font-size:.67rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; margin-top:.25rem; }

/* Interactive ingredients */
.ingredients-box { position:relative; }
.ingredients-box::before {
  content:''; position:absolute; left:0; top:0; bottom:0; width:3px;
  background:linear-gradient(to bottom, var(--gold), rgba(201,168,76,.12)); border-radius:3px 0 0 3px;
}
.ing-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.25rem; flex-wrap:wrap; gap:.75rem; }
.ing-header h3 { margin:0; }
.ing-portions { display:flex; align-items:center; gap:.6rem; font-size:.82rem; color:var(--text-muted); }
.portions-btn {
  width:28px; height:28px; background:var(--bg-alt); border:1px solid var(--border);
  border-radius:50%; color:var(--text-muted); cursor:pointer; font-family:inherit;
  display:flex; align-items:center; justify-content:center; font-size:1rem; line-height:1;
  transition:all var(--ease);
}
.portions-btn:hover { border-color:var(--gold); color:var(--gold); }
#portions-num,.portions-num { font-weight:600; color:var(--text); min-width:1.5rem; text-align:center; }
.ing-list { list-style:none; padding:0; margin:0; }
.ing-item {
  display:flex; align-items:center; gap:.9rem;
  padding:.65rem 0; border-bottom:1px solid rgba(255,255,255,.055);
  cursor:pointer; user-select:none; transition:opacity .2s;
}
.ing-item:last-child { border-bottom:none; }
.ing-item input[type=checkbox] { width:17px; height:17px; min-width:17px; accent-color:var(--gold); cursor:pointer; }
.ing-name { flex:1; font-size:.91rem; color:var(--text); transition:opacity .2s, color .2s; }
.ing-amt { font-size:.86rem; color:var(--gold); font-weight:600; white-space:nowrap; flex-shrink:0; }
.ing-item.done .ing-name { text-decoration:line-through; opacity:.45; color:var(--text-muted); }

/* Timeline steps */
.steps-list { list-style:none; padding:0; margin:0; position:relative; }
.steps-list::before {
  content:''; position:absolute; left:21px; top:22px; bottom:22px; width:2px;
  background:linear-gradient(to bottom, rgba(201,168,76,.9), rgba(201,168,76,.04)); z-index:0;
}
.step-item { display:flex; gap:1.5rem; margin-bottom:2rem; position:relative; align-items:flex-start; }
.step-item:last-child { margin-bottom:0; }
.step-circle {
  width:44px; height:44px; min-width:44px;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:var(--bg); border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:1rem; font-family:var(--font-serif);
  box-shadow:0 0 0 4px var(--bg),0 0 0 6px rgba(201,168,76,.25);
  position:relative; z-index:1; flex-shrink:0;
}
.step-box {
  background:var(--bg-card); border:1px solid var(--border); border-radius:12px;
  padding:1.25rem 1.5rem; flex:1; transition:border-color .25s,box-shadow .25s;
}
.step-box:hover { border-color:rgba(201,168,76,.3); box-shadow:0 6px 24px rgba(0,0,0,.22); }
.step-tlabel { display:block; font-size:.7rem; color:var(--gold); letter-spacing:1.5px; text-transform:uppercase; margin-bottom:.3rem; }
.step-box h4 { color:var(--text); margin:0 0 .5rem; font-size:1rem; }
.step-box p { color:var(--text-muted); font-size:.9rem; margin:0; line-height:1.72; }

/* Sidebar sticky */
.recipe-layout { grid-template-columns:1fr 305px; }
.recipe-layout aside { position:sticky; top:5.5rem; }
.recipe-sidebar-widget { background:var(--bg-card); border:1px solid var(--border); border-radius:12px; padding:1.5rem; margin-bottom:1.25rem; }
.recipe-sidebar-widget:last-child { margin-bottom:0; }
.sidebar-gold { background:linear-gradient(135deg,rgba(42,90,39,.2),rgba(201,168,76,.07)); border-color:rgba(201,168,76,.3)!important; }

/* Similar recipes */
.similar-grid { grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.similar-card {
  display:block; background:var(--bg-card); border:1px solid var(--border);
  border-radius:12px; overflow:hidden; text-decoration:none;
  transition:transform .25s,border-color .25s,box-shadow .25s;
}
.similar-card:hover { transform:translateY(-5px); border-color:rgba(201,168,76,.35); box-shadow:0 10px 35px rgba(0,0,0,.3); }
.similar-card-img {
  height:165px; display:flex; align-items:center; justify-content:center;
  font-size:4.5rem; filter:drop-shadow(0 4px 14px rgba(0,0,0,.65));
}
.similar-card-body { padding:1rem 1.1rem 1.25rem; }
.similar-card-body h4 { color:var(--text); font-size:.93rem; margin:0 0 .4rem; }

/* Product CTA v2 */
.recipe-product-box {
  display:grid; grid-template-columns:80px 1fr; gap:1.75rem; align-items:center;
  background:linear-gradient(135deg,rgba(42,90,39,.18),rgba(201,168,76,.06));
  border:1px solid rgba(201,168,76,.35); border-radius:14px; padding:2rem 2.25rem; margin:3rem 0;
  position:relative; overflow:hidden;
}
.recipe-product-box::after {
  content:''; position:absolute; top:-60px; right:-60px; width:220px; height:220px;
  background:radial-gradient(circle,rgba(201,168,76,.08) 0%,transparent 70%); pointer-events:none;
}
.rpb-emoji { font-size:4rem; text-align:center; filter:drop-shadow(0 4px 18px rgba(0,0,0,.55)); line-height:1; }
.rpb-info h4 { font-size:1.1rem; margin:0 0 .35rem; }
.rpb-info p { color:var(--text-muted); font-size:.87rem; margin-bottom:1rem; line-height:1.6; }
.rpb-btns { display:flex; gap:.75rem; flex-wrap:wrap; }

/* ── Responsive ── */

/* Desktop: ≥1200px – mehr Platz, größerer Teller */
@media(min-width:1200px){
  .recipe-hero-v2{min-height:640px;grid-template-columns:56% 44%;}
  .rhv2-content{padding:5rem 4rem 5rem 5rem;}
  .recipe-layout{grid-template-columns:1fr 340px;gap:4rem;}
  .rcp-plate-lg .rcp-plate-inner{width:275px;height:275px;}
  .rcp-plate-lg .rcp-plate-emoji{font-size:9.5rem;}
  .rcp-plate-lg .rcp-plate-shadow{width:215px;height:30px;}
}
/* Foto im Hero: Teller ausblenden, Essensfoto vollflächig zeigen */
.rhv2-visual.rci-photo .rcp-plate { display:none !important; }
.rhv2-visual.rci-photo { background-position:center 30% !important; }

/* Tablet Landscape: 901–1199px */
@media(max-width:1199px){
  .recipe-hero-v2{grid-template-columns:42% 58%;min-height:530px;}
  .rhv2-emoji{font-size:9rem;}
  .rhv2-content{padding:3.5rem 2.5rem 3.5rem 3rem;}
  .recipe-layout{grid-template-columns:1fr 290px;gap:2.5rem;}
}

/* Tablet Portrait: ≤900px – Hero stapeln, Sidebar nebeneinander */
@media(max-width:900px){
  .recipe-hero-v2{grid-template-columns:1fr;min-height:auto;}
  .rhv2-visual{min-height:380px;max-height:480px;}
  .rhv2-visual::after{display:none;}
  .rhv2-emoji{font-size:7.5rem;}
  .rhv2-content{padding:2.75rem 1.75rem;}
  .rhv2-content::before{display:none;}
  .rhv2-content h1{font-size:1.9rem;}
  .recipe-layout{grid-template-columns:1fr;}
  .recipe-layout aside{position:static;display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
  .recipe-sidebar-widget{margin-bottom:0!important;}
  .steps-list::before{display:none;}
  .recipe-nutrition{grid-template-columns:repeat(2,1fr);}
  .n-cell:nth-child(2n){border-right:none;}
  .similar-grid{grid-template-columns:repeat(2,1fr);}
  .recipe-product-box{grid-template-columns:1fr;text-align:center;}
  .rpb-btns{justify-content:center;}
  .recipe-stats-row{gap:1.75rem;}
  .recipe-search-hero{min-height:360px;padding:4.5rem 0 3rem;}
}

/* Handy: ≤768px – Anpassungen für kleine Geräte */
@media(max-width:768px){
  .rhv2-visual{min-height:340px;max-height:none;}
  .rhv2-content{padding:2.5rem 1.5rem;}
  .rhv2-content h1{font-size:1.85rem;}
  .recipe-all-grid{grid-template-columns:repeat(2,1fr);}
  .recipe-layout aside{grid-template-columns:1fr;}
}

/* Kleines Handy: ≤480px */
@media(max-width:480px){
  .recipe-hero-v2{min-height:auto;}
  .rhv2-visual{min-height:230px;}
  .rhv2-emoji{font-size:5.5rem;}
  .rhv2-content{padding:2rem 1.25rem;}
  .rhv2-content h1{font-size:1.65rem;}
  .recipe-all-grid{grid-template-columns:1fr;}
  .similar-grid{grid-template-columns:1fr;}
  .recipe-search-hero{min-height:auto;padding:3.5rem 0 2.5rem;}
  .recipe-stats-row{gap:1.25rem;}
  .recipe-stat-num{font-size:1.9rem;}
  .step-item{flex-direction:column; gap:.75rem;}
  .step-circle{align-self:flex-start;}
}
@media print{
  nav.nav,footer.footer,.cookie-banner,.back-to-top,.recipe-print-btn,.section-alt:last-of-type,
  .similar-grid,.rhv2-actions .btn-primary,#back-to-top{display:none!important;}
  .rhv2-visual{display:none;}
  .recipe-hero-v2{display:block;}
  .rhv2-content{padding:.5rem 0;}
  .recipe-layout{display:block;}
  .recipe-layout aside{display:none;}
  body{background:#fff;color:#000;}
  .step-box,.ing-item{border-color:#ddd!important;}
  .ingredients-box{border-color:#ddd!important;}
}

/* ══════════════════════════════════════════════════════════════
   PLATE VISUAL – overhead dish presentation for cards & hero
   ══════════════════════════════════════════════════════════════ */
.rcp-plate {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .35s var(--ease);
}
.rcp-plate-inner {
  width: 148px; height: 148px; border-radius: 50%;
  background: radial-gradient(ellipse at 38% 30%, #f6f1e5, #cec4ae);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow:
    0 0 0 5px rgba(0,0,0,.22),
    0 0 0 6px rgba(255,255,255,.06),
    0 28px 70px rgba(0,0,0,.7),
    inset 0 4px 12px rgba(255,255,255,.5),
    inset 0 -4px 12px rgba(0,0,0,.12);
  transition: box-shadow .35s;
}
.rcp-plate-inner::before {
  content: ''; position: absolute; inset: 13px; border-radius: 50%;
  border: 1px solid rgba(175,160,130,.32); pointer-events: none;
}
.rcp-plate-emoji {
  font-size: 4rem; line-height: 1; position: relative; z-index: 1;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
  transition: transform .35s var(--ease);
}
.rcp-plate-shadow {
  width: 112px; height: 16px;
  background: rgba(0,0,0,.4); border-radius: 50%;
  filter: blur(10px); margin-top: -6px; flex-shrink: 0;
  transition: opacity .35s;
}

/* Hover animation for cards */
.recipe-card:hover .rcp-plate { transform: translateY(-6px); }
.recipe-card:hover .rcp-plate-inner {
  box-shadow:
    0 0 0 5px rgba(0,0,0,.22),
    0 0 0 6px rgba(255,255,255,.08),
    0 40px 90px rgba(0,0,0,.8),
    inset 0 4px 12px rgba(255,255,255,.55),
    inset 0 -4px 12px rgba(0,0,0,.12);
}
.recipe-card:hover .rcp-plate-emoji { transform: scale(1.08); }
.recipe-card:hover .rcp-plate-shadow { opacity: .6; }

/* Large plate for individual recipe heroes */
.rcp-plate-lg .rcp-plate-inner { width: 240px; height: 240px; }
.rcp-plate-lg .rcp-plate-emoji { font-size: 8.5rem; }
.rcp-plate-lg .rcp-plate-shadow {
  width: 195px; height: 28px; filter: blur(18px); margin-top: -10px;
}
.rcp-plate-lg { animation: floatFood 5.5s ease-in-out infinite; }

/* ══════════════════════════════════════════════════════════════
   FILTER SECTION – "Was möchten Sie kochen?"
   ══════════════════════════════════════════════════════════════ */
.recipe-filter-section { padding: 2.75rem 0 0 !important; }
.rfs-header { text-align: center; margin-bottom: 1.75rem; }
.rfs-header .label { font-size: .68rem; }
.rfs-header h2 { font-size: 1.7rem; margin: .4rem 0 0; color: var(--text); }

.rfs-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.4rem 0 .9rem; padding: 0 1rem;
  color: var(--text-muted); font-size: .7rem;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.rfs-divider::before,.rfs-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.filter-tab-count {
  background: rgba(201,168,76,.16) !important; color: var(--gold) !important;
  border-radius: 100px; padding: .1rem .45rem;
  font-size: .7rem; font-weight: 700; line-height: 1.4;
}
.filter-tab.active .filter-tab-count {
  background: rgba(0,0,0,.18) !important; color: var(--bg) !important;
}

/* ══════════════════════════════════════════════════════════════
   INGREDIENT BOX – card style with header band
   ══════════════════════════════════════════════════════════════ */
.ingredients-box {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: 16px !important;
  padding: 0 !important;
  margin: 2rem 0 2.5rem !important;
  overflow: hidden;
}
.ingredients-box::before { display: none !important; }
.ing-header {
  padding: 1.15rem 1.65rem !important;
  border-bottom: 1px solid var(--border) !important;
  background: linear-gradient(135deg, rgba(201,168,76,.07) 0%, transparent 60%) !important;
  margin-bottom: 0 !important;
}
.ing-header h3 { margin: 0 !important; }
.ing-list { padding: 0 1.65rem !important; margin: 0 !important; }
.ing-item {
  padding: .78rem 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.042) !important;
  gap: 1rem !important;
}
.ing-item:last-child { border-bottom: none !important; }
.ing-amt {
  background: rgba(201,168,76,.1) !important;
  border: 1px solid rgba(201,168,76,.22) !important;
  border-radius: 6px !important; padding: .18rem .6rem !important;
  font-size: .82rem !important;
}

/* ══════════════════════════════════════════════════════════════
   STEPS SECTION HEADER
   ══════════════════════════════════════════════════════════════ */
.recipe-steps-label {
  display: flex; align-items: center; gap: 1rem;
  margin: 2.5rem 0 1.75rem;
}
.recipe-steps-label h2 { margin: 0; font-size: 1.35rem; }
.recipe-steps-label::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,.35), transparent);
}

/* ══════════════════════════════════════════════════════════════
   SIDEBAR – shopping list redesign
   ══════════════════════════════════════════════════════════════ */
.sidebar-shoplist {
  list-style: none !important;
  padding: 0 !important; margin: 0 !important;
  display: flex !important; flex-direction: column !important;
  gap: 0 !important;
}
.sidebar-shoplist li {
  display: flex !important; align-items: center !important;
  gap: .65rem !important; font-size: .87rem !important;
  color: var(--text-muted) !important;
  padding: .45rem 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.042) !important;
}
.sidebar-shoplist li:last-child { border-bottom: none !important; }
.sidebar-shoplist li::before {
  content: ''; display: block !important;
  width: 6px; height: 6px; min-width: 6px;
  background: var(--gold); border-radius: 50%;
  opacity: .7; flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   SIMILAR RECIPE CARDS – plate visual
   ══════════════════════════════════════════════════════════════ */
.similar-card:hover .rcp-plate { transform: translateY(-5px); }
.similar-card-img.has-plate { background: var(--bg-alt) !important; }
.similar-card-img .rcp-plate-inner { width: 95px; height: 95px; }
.similar-card-img .rcp-plate-emoji { font-size: 2.6rem; }
.similar-card-img .rcp-plate-shadow { width: 75px; height: 10px; filter: blur(7px); }

/* Print additions */
@media print {
  .rcp-plate-shadow { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   FEATURED RECIPE CARD
   ══════════════════════════════════════════════════════════════ */
.rfe-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 1.75rem; flex-wrap: wrap; gap: 1rem;
}
.rfe-header h2 { margin: 0; }
.btn-sm { padding: .4rem 1rem !important; font-size: .8rem !important; }

.featured-card {
  display: grid; grid-template-columns: 1fr;
  min-height: auto; border-radius: 20px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  text-decoration: none; color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative;
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 90px rgba(0,0,0,.5);
  border-color: rgba(201,168,76,.3);
}
.featured-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden; min-height: 380px;
}
.featured-visual::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-card)); z-index: 3; pointer-events: none;
}
.featured-garnish { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.featured-garnish span {
  position: absolute; font-size: 2rem; opacity: .6;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.6));
  animation: rhd 7s ease-in-out infinite;
}
.featured-content {
  padding: 2.25rem 2.5rem; display: flex; flex-direction: column;
  justify-content: center; background: var(--bg-card); position: relative; z-index: 1;
}
.featured-tags { display: flex; align-items: center; gap: .65rem; margin-bottom: .7rem; flex-wrap: wrap; }
.featured-badge-pill {
  background: linear-gradient(135deg,rgba(201,168,76,.22),rgba(201,168,76,.1));
  border: 1px solid rgba(201,168,76,.45); color: var(--gold);
  padding: .25rem .85rem; border-radius: 100px; font-size: .72rem; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
}
.featured-cat { color: var(--text-muted); font-size: .78rem; letter-spacing: .8px; text-transform: uppercase; }
.featured-title {
  font-size: clamp(1.65rem, 2.4vw, 2.5rem); line-height: 1.1;
  margin: .55rem 0 .85rem; font-family: var(--font-serif); font-weight: 700; color: var(--text);
}
.featured-title small {
  display: block; font-size: .5em; color: var(--text-muted);
  font-weight: 400; margin-top: .25rem; letter-spacing: .5px;
}
.featured-desc { color: var(--text-muted); font-size: .95rem; line-height: 1.72; margin-bottom: 1.75rem; max-width: 420px; }
.featured-meta-row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.85rem; }
.featured-meta-item { display: flex; align-items: center; gap: .4rem; font-size: .84rem; color: var(--text-muted); }
.fmi-icon { font-size: .95rem; }

/* XL plate for featured */
.rcp-plate-xl .rcp-plate-inner { width: 290px; height: 290px; }
.rcp-plate-xl .rcp-plate-emoji { font-size: 10rem; }
.rcp-plate-xl .rcp-plate-shadow { width: 238px; height: 35px; filter: blur(22px); }
.rcp-plate-xl { animation: floatFood 6s ease-in-out infinite; }

/* ══════════════════════════════════════════════════════════════
   RECIPE CARD – star ratings + bookmark
   ══════════════════════════════════════════════════════════════ */
.recipe-card-rating {
  display: flex; align-items: center; gap: .35rem; margin-bottom: .45rem;
}
.recipe-card-stars { color: #f5a623; font-size: .8rem; letter-spacing: .4px; }
.recipe-card-rating-val { font-weight: 700; font-size: .78rem; color: var(--text); }
.recipe-card-rating-ct { font-size: .72rem; color: var(--text-muted); }

.recipe-bookmark {
  position: absolute; top: .65rem; right: .65rem; z-index: 3;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.75);
  font-size: 1rem; cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: all .2s; line-height: 1; font-family: inherit;
}
.recipe-bookmark:hover { background: rgba(201,168,76,.25); border-color: rgba(201,168,76,.5); color: var(--gold); }
.recipe-bookmark.saved { background: rgba(201,168,76,.2); border-color: var(--gold); color: var(--gold); }

.recipe-portions-badge { color: var(--text-muted); font-size: .78rem; }

/* Improve card body spacing */
.recipe-card-body { padding: 1.25rem 1.4rem 1.4rem; }
.recipe-card-body h3 { font-size: 1rem; margin: 0 0 .4rem; line-height: 1.25; }
.recipe-card-body > p { font-size: .83rem; color: var(--text-muted); margin-bottom: .75rem; line-height: 1.5; }

/* Card image height */
.recipe-all-grid .recipe-card-img { height: 240px !important; }

/* ── PHOTO RECIPE CARDS ── */
.rci-photo {
  background-size: cover !important;
  background-position: center !important;
  display: block !important;
}
.rci-photo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.52) 100%);
  z-index: 1;
}
.rci-photo .recipe-card-cat-badge { z-index: 3; position: relative; }
.rci-photo .recipe-bookmark { z-index: 4; }

/* Photo featured visual */
.featured-visual.rci-photo::before { display: none; }
.featured-visual.rci-photo::after {
  background: linear-gradient(to bottom, transparent 40%, var(--bg-card) 100%);
}

/* ══════════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ══════════════════════════════════════════════════════════════ */
.recipe-newsletter-section {
  background: linear-gradient(135deg, var(--bg-alt) 0%, rgba(42,90,39,.09) 50%, rgba(201,168,76,.05) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 5.5rem 0; position: relative; overflow: hidden;
}
.recipe-newsletter-section::before {
  content: '📬'; position: absolute; right: -1rem; top: -1rem;
  font-size: 18rem; opacity: .022; line-height: 1; pointer-events: none; user-select: none;
}
.newsletter-inner { text-align: center; max-width: 580px; margin: 0 auto; position: relative; }
.newsletter-icon { font-size: 3rem; display: block; margin-bottom: 1rem; line-height: 1; }
.newsletter-inner .label { display: block; margin-bottom: .5rem; }
.newsletter-inner h2 { font-size: clamp(1.5rem,3vw,2.1rem); margin: .3rem 0 .7rem; }
.newsletter-inner > p { color: var(--text-muted); font-size: .97rem; line-height: 1.7; }
.newsletter-form { margin-top: 2rem; }
.newsletter-input-wrap {
  display: flex; gap: .65rem; max-width: 470px; margin: 0 auto;
}
.newsletter-input-wrap input[type=email] {
  flex: 1; padding: .78rem 1.1rem;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 10px; color: var(--text); font-size: .9rem;
  font-family: inherit; transition: border-color .2s; outline: none;
}
.newsletter-input-wrap input[type=email]:focus { border-color: var(--gold); }
.newsletter-trust {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1rem; font-size: .74rem; color: var(--text-muted);
}
.newsletter-success {
  display: flex; flex-direction: column; align-items: center; gap: .5rem; padding: 1rem 0;
}
.ns-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--bg); font-weight: 700;
}
.newsletter-success h3 { margin: .5rem 0 .25rem; }
.newsletter-success p { color: var(--text-muted); font-size: .9rem; }

/* ── JUMP & SHARE BUTTONS ── */
.btn-jump {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .85rem; padding: .55rem 1rem;
}
.recipe-share-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem 1rem; border-radius: 10px; font-size: .82rem;
  background: #e60023; color: #fff; text-decoration: none;
  font-weight: 600; transition: opacity .2s; white-space: nowrap;
}
.recipe-share-btn:hover { opacity: .85; }

/* ── LAZY BG ── */
.lazy-bg { background-image: none !important; }

/* ── PRINT ── */
@media print {
  .nav, .footer, #cookie-banner, #back-to-top,
  .recipe-product-box, .section-alt, .rhv2-actions,
  .recipe-print-btn, .recipe-share-btn, .btn-jump,
  .recipe-sidebar-widget.sidebar-gold, .breadcrumb { display: none !important; }
  body { background: #fff !important; color: #111 !important; }
  .rhv2-visual { display: none !important; }
  .recipe-hero-v2 { display: block !important; }
  .rhv2-content { padding: 1rem 0 !important; }
  .recipe-layout { display: block !important; }
  aside { display: none !important; }
  .recipe-meta-bar { border: 1px solid #ccc; border-radius: 8px; }
  .ingredients-box, .steps-list { page-break-inside: avoid; }
  .step-item { page-break-inside: avoid; }
  a[href]::after { content: none !important; }
}

/* Responsive additions */
@media(max-width:900px) {
  .featured-visual { min-height: 280px; }
  .featured-content { padding: 2rem 1.75rem; }
  .rcp-plate-xl .rcp-plate-inner { width: 190px; height: 190px; }
  .rcp-plate-xl .rcp-plate-emoji { font-size: 6.5rem; }
  .rcp-plate-xl .rcp-plate-shadow { width: 155px; height: 24px; }
}
@media(max-width:600px) {
  .newsletter-input-wrap { flex-direction: column; }
  .newsletter-input-wrap .btn { width: 100%; justify-content: center; }
  .newsletter-trust { gap: .75rem; }
  .featured-meta-row { gap: 1rem; }
  .rfe-header { flex-direction: column; align-items: flex-start; }
  .rcp-plate-xl .rcp-plate-inner { width: 150px; height: 150px; }
  .rcp-plate-xl .rcp-plate-emoji { font-size: 5rem; }
}
@media(max-width:480px) {
  .featured-visual { min-height: 220px; }
  .recipe-all-grid .recipe-card-img { height: 180px !important; }
}

/* Hide decorative emojis everywhere */
.rh-deco { display: none !important; }
.featured-garnish { display: none !important; }
.rcp-plate { display: none !important; }

/* Featured card: side-by-side on desktop */
@media(min-width:901px) {
  .featured-card {
    grid-template-columns: 44% 56%;
  }
  .featured-visual {
    min-height: 440px;
  }
  .featured-visual::after {
    left: auto; right: 0; top: 0; bottom: 0;
    width: 100px; height: auto;
    background: linear-gradient(to right, transparent, var(--bg-card));
  }
  .featured-visual.rci-photo::after {
    left: auto; right: 0; top: 0; bottom: 0;
    width: 140px; height: auto;
    background: linear-gradient(to right, transparent 10%, var(--bg-card) 100%);
  }
  .featured-content {
    padding: 3rem 2.75rem 3rem 2.5rem;
  }
}
