/*
Theme Name: Stop Forking Around
Theme URI: https://stopforkingaround.com
Author: Zohlandt ICT
Author URI: https://zohlandt-ict.nl
Description: Custom recipe theme with daily fresh recipes, cuisine archives and multilingual support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: sfa
*/

/* ============================================================
   DESIGN SYSTEM
   Aesthetic: Editorial food magazine — fresh, organic, confident
   Fonts: Playfair Display (headings) + DM Sans (body)
   Colors: Forest green dominant, cream background, warm accents
   ============================================================ */

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

:root {
  --green-deep:    #1a3a2a;
  --green-mid:     #2d6a4f;
  --green-fresh:   #52b788;
  --green-light:   #b7e4c7;
  --green-pale:    #d8f3dc;
  --cream:         #faf7f2;
  --cream-dark:    #f0ebe0;
  --warm-white:    #ffffff;
  --text-dark:     #1a1a18;
  --text-mid:      #3d3d38;
  --text-light:    #7a7a72;
  --accent-warm:   #e07a3a;
  --accent-gold:   #c9a84c;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 8px rgba(26,58,42,0.08);
  --shadow-md:  0 8px 32px rgba(26,58,42,0.12);
  --shadow-lg:  0 20px 60px rgba(26,58,42,0.18);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--green-deep);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-mid); }

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

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

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  background: var(--green-deep);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 70px;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo__icon {
  width: 38px;
  height: 38px;
  background: var(--green-fresh);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.site-logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: -0.02em;
}

.site-logo__text span {
  color: var(--green-fresh);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.site-nav a:hover,
.site-nav a.current {
  color: var(--warm-white);
  background: rgba(255,255,255,0.1);
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.lang-switcher a {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: var(--transition);
}

.lang-switcher a:hover,
.lang-switcher a.current-lang {
  color: var(--green-fresh);
  background: rgba(82,183,136,0.15);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ============================================================
   HERO STRIP (homepage)
   ============================================================ */
.hero-strip {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 60px 24px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-strip__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82,183,136,0.2);
  border: 1px solid rgba(82,183,136,0.4);
  color: var(--green-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-strip__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--warm-white);
  margin-bottom: 16px;
  position: relative;
}

.hero-strip__title em {
  color: var(--green-fresh);
  font-style: italic;
}

.hero-strip__subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

/* ============================================================
   TODAY'S DATE BADGE
   ============================================================ */
.date-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0 0;
}

.date-badge__line {
  flex: 1;
  height: 1px;
  background: var(--green-pale);
}

.date-badge__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  white-space: nowrap;
}

/* ============================================================
   TODAY'S RECIPES SECTION
   ============================================================ */
.today-section {
  padding: 48px 0 64px;
}

.today-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}

.today-section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green-deep);
}

.today-section__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.today-section__link:hover { color: var(--green-fresh); gap: 10px; }

/* ── Recipe Grid (3 columns) ─────────────────────────────── */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Recipe Card ─────────────────────────────────────────── */
.recipe-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.recipe-card__image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--green-pale);
}

.recipe-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-card__image-wrap img {
  transform: scale(1.05);
}

.recipe-card__cuisine-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-deep);
  color: var(--warm-white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.recipe-card__difficulty {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--text-mid);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.recipe-card__body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.recipe-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
  line-height: 1.3;
}

.recipe-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recipe-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}

.recipe-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.recipe-card__meta-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.recipe-card__cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-mid);
  transition: var(--transition);
}

.recipe-card:hover .recipe-card__cta {
  color: var(--green-fresh);
  gap: 10px;
}

/* ============================================================
   ARCHIVE SECTION
   ============================================================ */
.archive-header {
  background: var(--green-deep);
  padding: 48px 24px;
}

.archive-header__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.archive-header__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 8px;
}

.archive-header__title {
  color: var(--warm-white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 24px;
}

/* ── Filter Bar ──────────────────────────────────────────── */
.filter-bar {
  background: var(--warm-white);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 70px;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}

.filter-bar__inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar__inner::-webkit-scrollbar { display: none; }

.filter-bar__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  margin-right: 16px;
  padding: 16px 0;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  margin: 8px 3px;
}

.filter-pill:hover {
  background: var(--green-pale);
  color: var(--green-deep);
}

.filter-pill.active {
  background: var(--green-deep);
  color: var(--warm-white);
}

.filter-pill__flag { font-size: 1rem; }

.filter-divider {
  width: 1px;
  height: 28px;
  background: var(--cream-dark);
  margin: 0 12px;
  flex-shrink: 0;
}

/* ── Archive Grid ────────────────────────────────────────── */
.archive-section {
  padding: 48px 0 80px;
}

.archive-day-group {
  margin-bottom: 56px;
}

.archive-day-group__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.archive-day-group__date {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  white-space: nowrap;
}

.archive-day-group__line {
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}

.archive-day-group__count {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
}

/* ── Archive Card (compact) ──────────────────────────────── */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.archive-card {
  display: flex;
  gap: 14px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding: 14px;
  align-items: center;
}

.archive-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.archive-card__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--green-pale);
}

.archive-card__body { flex: 1; min-width: 0; }

.archive-card__cuisine {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 4px;
}

.archive-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.archive-card__time {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============================================================
   SINGLE RECIPE PAGE
   ============================================================ */
.single-recipe {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.single-recipe__hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
  margin-bottom: 40px;
  position: relative;
}

.single-recipe__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-recipe__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,42,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.single-recipe__category {
  display: inline-block;
  background: var(--green-fresh);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.single-recipe__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--warm-white);
  font-weight: 900;
  line-height: 1.15;
}

.recipe-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 40px;
}

.recipe-stat {
  background: var(--warm-white);
  padding: 20px;
  text-align: center;
}

.recipe-stat__value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
  display: block;
}

.recipe-stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}

.recipe-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.recipe-ingredients-box {
  background: var(--green-pale);
  border-radius: var(--radius-md);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.recipe-ingredients-box h2 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--green-deep);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-light);
}

.recipe-ingredients-box li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(45,106,79,0.1);
  list-style: none;
  line-height: 1.5;
}

.recipe-ingredients-box li::before {
  display: none;
}

.recipe-instructions h2 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--green-deep);
}

.recipe-instructions li {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.recipe-instructions__step-num {
  width: 36px;
  height: 36px;
  background: var(--green-deep);
  color: var(--warm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.recipe-instructions__step-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
  padding-top: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.6);
  padding: 48px 24px 32px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-brand__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.footer-brand__tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  max-width: 260px;
  line-height: 1.5;
}

.footer-nav h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }

.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-nav a:hover { color: var(--green-fresh); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--green-fresh);
  color: var(--green-deep);
}

.btn--primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--green-fresh);
  color: var(--green-fresh);
}

.btn--outline:hover {
  background: var(--green-fresh);
  color: var(--green-deep);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .recipe-stats { grid-template-columns: repeat(2, 1fr); }
  .recipe-body { grid-template-columns: 1fr; }
  .recipe-ingredients-box { position: static; }
}

@media (max-width: 768px) {
  .recipe-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .site-nav.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--green-deep); padding: 16px 24px; gap: 4px; }
  .menu-toggle { display: block; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .today-section { padding: 32px 0 48px; }
  .recipe-body { gap: 24px; }
}

.pll_widget_languages,
.pll_widget_languages li,
.lang-item {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.recipe-languages {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(45,106,79,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.recipe-languages ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.recipe-languages li,
.recipe-languages ul li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: none !important;
  padding: 0 !important;
}
.recipe-languages li a,
.recipe-languages ul li a {
  display: inline-block !important;
  padding: 3px 10px !important;
  border-radius: 20px !important;
  background: var(--green-pale) !important;
  color: var(--green-deep) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: background 0.2s;
  border: 1px solid rgba(45,106,79,0.25) !important;
  font-family: var(--font-body) !important;
  letter-spacing: 0.01em !important;
}
.recipe-languages li a:hover,
.recipe-languages ul li a:hover {
  background: var(--green-light);
}
.recipe-languages ul li img {
  display: none;
}

.today-cuisine-label {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-left: 8px;
  font-style: italic;
}

/* ── 404 page ─────────────────────────────────────────────── */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.not-found__inner {
  max-width: 480px;
}
.not-found__emoji {
  font-size: 4rem;
  margin-bottom: 16px;
}
.not-found__title {
  font-size: 6rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 16px;
}
.not-found__subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.not-found__text {
  color: var(--text-mid);
  margin-bottom: 32px;
}

/* ── Print stylesheet ─────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .recipe-languages,
  .btn, nav, .lang-switcher { display: none !important; }
  .single-recipe__hero { max-height: 200px; overflow: hidden; }
  .single-recipe__hero-overlay { position: relative; background: none; }
  .single-recipe__title { color: #000; font-size: 24pt; }
  .single-recipe__category { color: #000; }
  .recipe-body { display: block; }
  .recipe-ingredients-box { position: static; box-shadow: none; border: 1px solid #ccc; margin-bottom: 24px; break-inside: avoid; }
  .recipe-instructions li { break-inside: avoid; }
  .recipe-instructions__step-num { background: #000 !important; color: #fff !important; }
  body { font-size: 11pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: none; }
  .recipe-stats { border: 1px solid #ccc; padding: 8px; margin-bottom: 16px; }
  .recipe-stat__value, .recipe-stat__label { color: #000; }
}

/* ── Countdown Timer ── */
.hero-strip__countdown {
  text-align: center;
  padding: 10px 0 16px;
  background: var(--green-dark);
}
.hero-strip__countdown span {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: .95rem;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: .02em;
}
.hero-strip__countdown strong {
  color: #a8d5a2;
}
