:root {
  --kz-ink: #17201a;
  --kz-muted: #5d675f;
  --kz-green: #2f7d46;
  --kz-green-dark: #215c34;
  --kz-tomato: #bf4538;
  --kz-cream: #fff8ec;
  --kz-sage: #eef5ea;
  --kz-line: #dfe8dc;
  --kz-gold: #f3b647;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--kz-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background: #fffdf8;
}

body::selection {
  color: #fff;
  background: var(--kz-green);
}

a {
  color: var(--kz-green-dark);
}

.navbar {
  min-height: 72px;
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--kz-ink);
  text-decoration: none;
}

.brand-mark {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex: 0 0 36px;
  object-fit: contain;
}

.nav-link {
  color: var(--kz-ink);
  font-weight: 600;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--kz-green);
}

.btn {
  border-radius: 8px;
  font-weight: 700;
}

.btn-success {
  --bs-btn-bg: var(--kz-green);
  --bs-btn-border-color: var(--kz-green);
  --bs-btn-hover-bg: var(--kz-green-dark);
  --bs-btn-hover-border-color: var(--kz-green-dark);
}

.home-hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  color: #fff;
  background: var(--kz-ink);
}

.home-hero-image,
.home-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-image {
  object-fit: cover;
  object-position: center;
}

.home-hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 22, 16, .9) 0%, rgba(13, 22, 16, .62) 48%, rgba(13, 22, 16, .28) 100%),
    linear-gradient(0deg, rgba(13, 22, 16, .58) 0%, rgba(13, 22, 16, 0) 60%);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 132px;
  padding-bottom: 76px;
}

.home-hero h1 {
  max-width: 720px;
}

.home-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
  max-width: 680px;
  padding: .55rem;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 8px;
}

.home-search i {
  padding-left: .65rem;
  color: var(--kz-muted);
  font-size: 1.15rem;
}

.home-search .form-control {
  min-height: 44px;
  border: 0;
  box-shadow: none;
}

.featured-recipe-card {
  display: block;
  position: relative;
  min-height: 480px;
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .24);
}

.featured-recipe-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(13, 22, 16, .86) 0%, rgba(13, 22, 16, .08) 60%);
}

.featured-recipe-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .25s ease;
}

.featured-recipe-card:hover img {
  transform: scale(1.04);
}

.featured-recipe-card span,
.featured-recipe-card h2,
.featured-recipe-card p {
  position: absolute;
  z-index: 1;
  left: 1.4rem;
  right: 1.4rem;
}

.featured-recipe-card span {
  top: 1.3rem;
  width: max-content;
  padding: .35rem .6rem;
  color: var(--kz-ink);
  background: #ffe3a7;
  border-radius: 8px;
  font-weight: 850;
}

.featured-recipe-card h2 {
  bottom: 4.8rem;
  margin-bottom: 0;
  font-size: 1.75rem;
}

.featured-recipe-card p {
  bottom: 1.35rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
}

.hero-section {
  position: relative;
  min-height: 70svh;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 22, 16, .86) 0%, rgba(13, 22, 16, .58) 42%, rgba(13, 22, 16, .18) 100%),
    linear-gradient(0deg, rgba(13, 22, 16, .55) 0%, rgba(13, 22, 16, 0) 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 36px;
}

.min-vh-75 {
  min-height: 48svh;
}

.breadcrumb-wrap {
  margin-bottom: 1.25rem;
}

.breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, .62);
  --bs-breadcrumb-item-active-color: #fff;
  margin-bottom: 0;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: .7rem;
  color: var(--kz-tomato);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-section .eyebrow {
  color: #ffe3a7;
}

h1,
h2,
h3,
h4 {
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
}

.lead {
  max-width: 720px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, .88);
  font-size: 1.22rem;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.rating-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: .75rem;
  padding: .9rem 1rem;
  color: #fff;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.stars {
  color: var(--kz-gold);
  white-space: nowrap;
}

.quick-facts {
  background: #fff;
  border-bottom: 1px solid var(--kz-line);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .1rem .75rem;
  padding: 1.4rem 1.2rem;
  border-right: 1px solid var(--kz-line);
}

.fact-item:first-child {
  border-left: 1px solid var(--kz-line);
}

.fact-item i {
  grid-row: span 2;
  color: var(--kz-tomato);
  font-size: 1.55rem;
}

.fact-item span {
  color: var(--kz-muted);
  font-size: .92rem;
}

.fact-item strong {
  font-size: 1.05rem;
}

.section-block {
  padding: 88px 0;
}

.category-overview {
  background: #fff;
}

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

.category-tile {
  display: grid;
  gap: .8rem;
  min-height: 230px;
  padding: 1.25rem;
  color: var(--kz-ink);
  background: #fff;
  border: 1px solid var(--kz-line);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(33, 92, 52, .07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.category-tile:hover {
  color: var(--kz-ink);
  border-color: rgba(47, 125, 70, .4);
  box-shadow: 0 20px 46px rgba(33, 92, 52, .12);
  transform: translateY(-3px);
}

.category-tile i {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--kz-green);
  background: var(--kz-sage);
  border-radius: 8px;
  font-size: 1.35rem;
}

.category-tile span {
  font-size: 1.18rem;
  font-weight: 850;
}

.category-tile p {
  margin-bottom: 0;
  color: var(--kz-muted);
}

.recipe-feature {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid #f0e3cb;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(33, 92, 52, .08);
}

.recipe-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.recipe-feature p {
  color: var(--kz-muted);
}

.recipe-feature .btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.featured-recipe-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.featured-recipe-card--category {
  min-height: 310px;
  box-shadow: 0 16px 36px rgba(33, 92, 52, .12);
}

.featured-recipe-card--category span,
.featured-recipe-card--category h2,
.featured-recipe-card--category p {
  left: 1rem;
  right: 1rem;
}

.featured-recipe-card--category span {
  top: 1rem;
  max-width: calc(100% - 2rem);
  overflow: hidden;
  font-size: .82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.featured-recipe-card--category h2 {
  bottom: 3.45rem;
  display: -webkit-box;
  overflow: hidden;
  font-size: 1.08rem;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-recipe-card--category p {
  bottom: 1rem;
  overflow: hidden;
  font-size: .9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-pill {
  display: inline-flex;
  margin: 0 .35rem .8rem 0;
  padding: .38rem .65rem;
  color: var(--kz-green-dark);
  background: var(--kz-sage);
  border: 1px solid var(--kz-line);
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 800;
}

.editorial-card,
.collection-card,
.recipe-list-card {
  height: 100%;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--kz-line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(33, 92, 52, .07);
}

.collection-card {
  display: block;
  color: var(--kz-ink);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.collection-card:hover {
  color: var(--kz-ink);
  border-color: rgba(47, 125, 70, .4);
  box-shadow: 0 20px 46px rgba(33, 92, 52, .12);
  transform: translateY(-3px);
}

.editorial-card h2,
.collection-card h3 {
  font-size: 1.25rem;
}

.editorial-card p,
.collection-card p,
.recipe-list-card p {
  margin-bottom: 0;
  color: var(--kz-muted);
}

.category-hero {
  --kz-hero-start: #17201a;
  --kz-hero-end: #31563b;
  padding: 132px 0 70px;
  color: #fff;
  background-color: var(--kz-hero-start);
  background-image:
    linear-gradient(120deg, rgba(10, 16, 13, .84) 0%, rgba(10, 16, 13, .58) 48%, rgba(10, 16, 13, .24) 100%),
    var(--kz-hero-image, linear-gradient(120deg, var(--kz-hero-start), var(--kz-hero-end))),
    linear-gradient(120deg, var(--kz-hero-start), var(--kz-hero-end));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.category-hero--abendessen { --kz-hero-start: #19251f; --kz-hero-end: #5d2f37; }
.category-hero--mahlzeiten { --kz-hero-start: #153338; --kz-hero-end: #526c39; }
.category-hero--zutaten { --kz-hero-start: #26351f; --kz-hero-end: #8a6b2f; }
.category-hero--anlaesse { --kz-hero-start: #2c1d2e; --kz-hero-end: #8d4a3e; }
.category-hero--kuechen { --kz-hero-start: #17201a; --kz-hero-end: #6f3c2c; }
.category-hero--mediterrane-kueche { --kz-hero-start: #23472e; --kz-hero-end: #b06035; }
.category-hero--chinesisch { --kz-hero-start: #331515; --kz-hero-end: #9c3328; }
.category-hero--franzoesisch { --kz-hero-start: #1f2f4d; --kz-hero-end: #7d4b57; }
.category-hero--deutsch { --kz-hero-start: #253025; --kz-hero-end: #6e5434; }
.category-hero--griechisch { --kz-hero-start: #17415a; --kz-hero-end: #2f7d77; }
.category-hero--indisch { --kz-hero-start: #4b1f24; --kz-hero-end: #b16328; }
.category-hero--indonesisch { --kz-hero-start: #25351f; --kz-hero-end: #8b3d2f; }
.category-hero--italienisch { --kz-hero-start: #1f4b34; --kz-hero-end: #a44236; }
.category-hero--japanisch { --kz-hero-start: #253044; --kz-hero-end: #8f6267; }
.category-hero--koreanisch { --kz-hero-start: #2f233e; --kz-hero-end: #a64035; }
.category-hero--russisch { --kz-hero-start: #26304d; --kz-hero-end: #6c2f38; }
.category-hero--thai { --kz-hero-start: #193d3b; --kz-hero-end: #7e5a23; }
.category-hero--tuerkisch { --kz-hero-start: #213727; --kz-hero-end: #9b3b32; }
.category-hero--rechtliches { --kz-hero-start: #233341; --kz-hero-end: #576a57; }
.category-hero--suche { --kz-hero-start: #1e2931; --kz-hero-end: #48605a; }

.category-hero h1 {
  max-width: 780px;
}

.category-hero .lead {
  color: rgba(255, 255, 255, .82);
}

.category-crumbs {
  margin-bottom: 1.4rem;
}

.category-crumbs a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
}

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

.collection-card i {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: .85rem;
  color: var(--kz-tomato);
  background: #fff1df;
  border-radius: 8px;
  font-size: 1.2rem;
}

.recipe-list-card {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 1.25rem;
  align-items: center;
}

.recipe-results {
  display: grid;
  gap: 1rem;
}

.legal-stack {
  display: grid;
  gap: 1rem;
}

.legal-card h2 {
  margin-bottom: .9rem;
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--kz-muted);
}

.legal-note {
  margin-top: 1rem;
  padding: .85rem 1rem;
  color: var(--kz-green-dark);
  background: var(--kz-sage);
  border: 1px solid var(--kz-line);
  border-radius: 8px;
  font-weight: 600;
}

.recipe-list-card .recipe-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.recipe-list-card a {
  color: var(--kz-ink);
  text-decoration: none;
}

.recipe-list-card a:hover {
  color: var(--kz-green-dark);
}

.intro-block {
  background:
    linear-gradient(180deg, #fffdf8 0%, #fff 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-heading p:last-child,
.intro-block p,
.nutrition-panel p,
.newsletter-inner p,
.site-footer p {
  color: var(--kz-muted);
}

.seo-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.4rem;
}

.seo-highlights span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .8rem;
  color: var(--kz-green-dark);
  background: var(--kz-sage);
  border: 1px solid var(--kz-line);
  border-radius: 8px;
  font-weight: 700;
}

.summary-panel,
.recipe-card,
.method-panel,
.tip-card,
.nutrition-panel {
  background: #fff;
  border: 1px solid var(--kz-line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(33, 92, 52, .08);
}

.summary-panel {
  padding: 1.5rem;
}

.recipe-summary {
  display: grid;
  gap: .85rem;
  margin: 1rem 0 0;
}

.recipe-summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--kz-line);
}

.recipe-summary div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.recipe-summary dt {
  color: var(--kz-muted);
  font-weight: 650;
}

.recipe-summary dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.recipe-band {
  background: var(--kz-cream);
  border-top: 1px solid #f0e3cb;
  border-bottom: 1px solid #f0e3cb;
}

.sticky-lg-top {
  top: 96px;
}

.recipe-card,
.method-panel {
  padding: 1.5rem;
}

.card-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.serving-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: .45rem;
  color: var(--kz-muted);
  font-size: .94rem;
}

.serving-control .btn {
  width: 34px;
  height: 34px;
  padding: 0;
}

.ingredient-list {
  display: grid;
  gap: .72rem;
  margin: 0;
}

.ingredient-list label {
  display: flex;
  align-items: center;
  gap: .7rem;
  cursor: pointer;
}

.ingredient-list input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--kz-green);
}

.ingredient-list input:checked + span,
.ingredient-list label:has(input:checked) {
  color: var(--kz-muted);
  text-decoration: line-through;
}

.steps-list {
  display: grid;
  gap: 1.2rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
}

.step-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--kz-tomato);
  border-radius: 8px;
  font-weight: 850;
}

.steps-list h4 {
  margin-bottom: .35rem;
  font-size: 1.12rem;
}

.steps-list p {
  margin-bottom: .65rem;
  color: var(--kz-muted);
}

.timer-button {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.timer-status {
  min-height: 30px;
  margin-top: 1rem;
  color: var(--kz-green-dark);
  font-weight: 800;
}

.tip-card {
  height: 100%;
  padding: 1.35rem;
}

.tip-card i {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--kz-green);
  background: var(--kz-sage);
  border-radius: 8px;
  font-size: 1.35rem;
}

.tip-card h3 {
  font-size: 1.15rem;
}

.tip-card p {
  margin-bottom: 0;
  color: var(--kz-muted);
}

.variants-block {
  background: #f7fbf4;
}

.accordion {
  --bs-accordion-border-radius: 8px;
  --bs-accordion-inner-border-radius: 8px;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(47, 125, 70, .2);
  --bs-accordion-active-bg: #eef5ea;
  --bs-accordion-active-color: var(--kz-green-dark);
}

.accordion-item {
  border-color: var(--kz-line);
}

.accordion-button {
  font-weight: 800;
}

.nutrition-panel {
  padding: 1.5rem;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin: 1.2rem 0;
}

.nutrition-grid div {
  padding: 1rem .7rem;
  background: #fff8ec;
  border: 1px solid #f0e3cb;
  border-radius: 8px;
  text-align: center;
}

.nutrition-grid strong {
  display: block;
  font-size: 1.35rem;
}

.nutrition-grid span {
  display: block;
  color: var(--kz-muted);
  font-size: .85rem;
}

.faq-block {
  background: #fff;
}

.faq-accordion {
  max-width: 900px;
}

.newsletter-band {
  padding: 64px 0;
  background: var(--kz-ink);
  color: #fff;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 2rem;
  align-items: center;
}

.newsletter-inner .section-kicker {
  color: #ffe3a7;
}

.newsletter-inner p {
  color: rgba(255, 255, 255, .72);
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  gap: .75rem;
}

.newsletter-form .form-control {
  min-height: 48px;
  border-radius: 8px;
}

.site-footer {
  padding: 42px 0;
  background: #fff;
  border-top: 1px solid var(--kz-line);
}

.footer-brand {
  margin-bottom: .75rem;
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-md-end;
  gap: .9rem 1.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  color: var(--kz-muted);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:focus,
.footer-links a:hover {
  color: var(--kz-green);
}

@media (max-width: 991.98px) {
  .facts-grid,
  .nutrition-grid,
  .newsletter-inner {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .newsletter-inner {
    grid-template-columns: 1fr;
  }

  .fact-item:nth-child(odd) {
    border-left: 1px solid var(--kz-line);
  }

  .hero-section {
    min-height: 72svh;
  }

  .featured-recipe-card {
    min-height: 360px;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    min-height: 64px;
  }

  .hero-content {
    padding-top: 82px;
    padding-bottom: 30px;
  }

  .home-hero-content,
  .category-hero {
    padding-top: 96px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .facts-grid,
  .nutrition-grid,
  .category-grid,
  .topic-grid,
  .featured-recipe-grid,
  .recipe-feature,
  .recipe-list-card {
    grid-template-columns: 1fr;
  }

  .recipe-list-card .recipe-thumb {
    width: min(180px, 100%);
  }

  .home-search {
    grid-template-columns: 1fr;
  }

  .home-search i {
    display: none;
  }

  .featured-recipe-card {
    min-height: 320px;
  }

  .fact-item,
  .fact-item:first-child,
  .fact-item:nth-child(odd) {
    border-right: 1px solid var(--kz-line);
    border-left: 1px solid var(--kz-line);
  }

  .section-block {
    padding: 62px 0;
  }

  .card-header-row,
  .newsletter-form {
    flex-direction: column;
  }

  .serving-control {
    justify-content: flex-start;
  }

  .newsletter-form .btn {
    min-height: 48px;
  }
}

@media print {
  .navbar,
  .hero-section,
  .quick-facts,
  .intro-block,
  .tip-card,
  .variants-block,
  .faq-block,
  .newsletter-band,
  .site-footer,
  .timer-button {
    display: none !important;
  }

  .section-block,
  .recipe-band {
    padding: 0;
    background: #fff;
  }

  .recipe-card,
  .method-panel {
    box-shadow: none;
    border: 0;
  }
}
