/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, tr, th, td, input, button, section, article, aside, nav, header, footer, main, figure, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #302216;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after { box-sizing: border-box; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }


/* BRAND COLORS */
:root {
  --color-primary: #4B3B2B;
  --color-secondary: #D6B77A;
  --color-accent: #ffffff;
  --color-vibrant-magenta: #EB287A;
  --color-vibrant-blue: #2C93E3;
  --color-vibrant-green: #35EB95;
  --color-vibrant-yellow: #FFE155;
  --color-energy-orange: #FF792A;
  --color-card-bg: #FEF7E9;
  --color-bg: #fffbed;
  --shadow-strong: 0 6px 32px 0 rgba(52,19,4,0.10);
  --shadow-light: 0 1px 4px 0 rgba(52,19,4,0.08);
  --radius-large: 2rem;
  --radius: 1.2rem;
}

::selection {
  background: var(--color-vibrant-magenta);
  color: #fff;
}


/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-vibrant-magenta);
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
}
strong { font-weight: 700; }
em, i { font-style: italic; }



/* LAYOUT CONTAINER CLASSES */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}


/* HEADER & MAIN NAVIGATION */
header {
  background: var(--color-bg);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
header img {
  height: 48px;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--color-primary);
  position: relative;
  transition: color 0.25s, background 0.16s, box-shadow 0.2s;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  background: var(--color-vibrant-yellow);
  color: #222;
  outline: none;
}
.main-nav .cta-btn {
  background: var(--color-vibrant-magenta);
  color: #fff;
  font-weight: bold;
  padding: 10px 22px;
  border: none;
  border-radius: 40px;
  box-shadow: var(--shadow-light);
  margin-left: 14px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: var(--color-energy-orange);
  color: #fff;
  box-shadow: 0 4px 24px rgba(235,40,122,0.18);
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--color-vibrant-magenta);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 130;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-vibrant-yellow);
  outline: none;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fffbed;
  z-index: 120;
  padding: 36px 24px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.85,0,0.15,1);
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  box-shadow: 0 0 200px 80px rgba(76,59,43,0.10);
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: var(--color-vibrant-magenta);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 140;
  transition: color .20s;
}
.mobile-menu-close:focus {
  outline: none;
  color: var(--color-energy-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 48px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.15rem;
  padding: 16px 5px;
  border-radius: 16px;
  transition: background 0.18s, color 0.2s;
}
.mobile-nav .cta-btn {
  background: var(--color-vibrant-magenta);
  color: #fff;
  font-size: 1.1rem;
  padding: 14px 24px;
  margin: 12px 0 0 0;
  border-radius: 32px;
  font-weight: 600;
  box-shadow: var(--shadow-light);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-vibrant-magenta);
}

/* Hide main navigation on mobile, show on desktop */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
}


/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  min-height: 360px;
  background: var(--color-card-bg);
  border-radius: var(--radius-large);
  margin-top: 32px;
  box-shadow: var(--shadow-strong);
}
.hero .container {
  padding: 0 20px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: var(--color-vibrant-magenta);
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.13rem;
  color: var(--color-primary);
  font-weight: 600;
}
.hero .cta-btn {
  margin-top: 16px;
}

/* CTA BUTTONS */
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-vibrant-blue);
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  margin-top: 8px;
  box-shadow: 0 2px 18px -3px rgba(44,147,227,0.09);
  cursor: pointer;
  transition: background .21s, box-shadow .21s, color .15s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-energy-orange);
  color: #fff;
  box-shadow: 0 6px 18px -4px rgba(255,121,42,0.16);
  outline: none;
}

/* FEATURES SECTION */
.features {
  background: var(--color-card-bg);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
}
.features h2 {
  color: var(--color-vibrant-blue);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 18px;
}
.feature-grid > div {
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 250px;
  background: #fff;
  padding: 32px 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform .20s, box-shadow .18s;
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 32px 0 rgba(76,59,43,0.16);
}

/* RECIPES PREVIEW / LISTS / CARDS */
.recipes-preview ul, .newsletter-signup ul, .faq ul, .about ul, .values ul, .callout ul, .contact-details ul {
  list-style: none;
  margin-bottom: 12px;
}
.recipes-preview ul li, .newsletter-signup ul li, .faq ul li, .about ul li, .values ul li, .callout ul li, .contact-details ul li {
  margin-bottom: 12px;
  padding-left: 0;
  font-size: 1rem;
}
.recipes-preview ul li {
  padding: 18px 20px;
  background: var(--color-vibrant-green);
  color: #1B2320;
  margin-bottom: 16px;
  border-radius: 1.2rem;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: var(--shadow-light);
}
.recipes-preview ul li h3 {
  margin-bottom: 6px;
  color: var(--color-primary);
}

/* CATEGORIES OVERVIEW */
.categories-overview {
  background: #fff6f6;
  border-radius: var(--radius-large);
}
.category-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 14px;
}
.category-tiles > div {
  flex: 1 1 220px;
  min-width: 170px;
  max-width: 280px;
  background: var(--color-vibrant-blue);
  color: #fff;
  padding: 34px 26px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .17s, transform .18s;
}
.category-tiles h3 {
  color: #fff;
}
.category-tiles p {
  color: #f2f2f2;
}
.category-tiles a {
  margin-top: auto;
  color: var(--color-vibrant-yellow);
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.10);
  transition: background 0.15s;
}
.category-tiles a:hover, .category-tiles a:focus {
  background: var(--color-energy-orange);
  color: #fff;
  outline: none;
}
.category-tiles > div:hover,
.category-tiles > div:focus-within {
  background: var(--color-vibrant-magenta);
  transform: translateY(-4px) scale(1.03);
}

/* NEWSLETTER SIGNUP */
.newsletter-signup {
  background: var(--color-vibrant-yellow);
  border-radius: var(--radius-large);
}
.newsletter-signup h2 {
  color: var(--color-energy-orange);
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #222;
  border-radius: 1.25rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow-strong);
  position: relative;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  color: var(--color-vibrant-magenta);
  margin: 0 0 2px 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
}
.testimonial-author img {
  width: 28px;
  height: 28px;
}

/* RESPONSIVE TESTIMONIALS: keep readable on all backgrounds */
@media (max-width: 900px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px;
  }
}


/* RECIPE CARDS LISTS */
.recipes-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.recipe-card {
  flex: 1 1 250px;
  min-width: 210px;
  max-width: 320px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 18px 0 rgba(235,40,122,0.08);
  margin-bottom: 20px;
  padding: 30px 24px 20px;
  position: relative;
  transition: box-shadow .20s, transform .19s;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.recipe-card:hover,
.recipe-card:focus-within {
  box-shadow: 0 12px 40px 0 rgba(44,147,227,0.18);
  transform: translateY(-5px) scale(1.015);
}
.recipe-card h3 {
  margin-bottom: 2px;
  color: var(--color-vibrant-magenta);
  font-size: 1.2rem;
}
.badge, .highlight, .prep-time-badge, .origin-badge, .special-tags {
  display: inline-block;
  font-size: 0.95rem;
  background: var(--color-vibrant-yellow);
  color: var(--color-primary);
  padding: 3px 13px;
  border-radius: 21px;
  font-weight: bold;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  margin-right: 6px;
  vertical-align: middle;
}
.badge.highlight {
  background: var(--color-energy-orange);
  color: #fff;
}
.prep-time-badge {
  background: var(--color-vibrant-green);
  color: #1B2320;
  font-weight: bold;
}
.origin-badge {
  background: var(--color-vibrant-magenta);
  color: #fff;
}
.special-tags {
  background: var(--color-vibrant-blue);
  color: #fff;
  font-weight: 600;
  margin: 0 0 8px 0;
}
.filter-tags {
  color: var(--color-primary);
  font-size: .94rem;
  margin-bottom: 6px;
}
.historic-note, .festive-highlights {
  color: var(--color-energy-orange);
  font-size: .99rem;
  font-weight: 500;
  background: #fff4ea;
  border-radius: 12px;
  padding: 4px 13px;
  margin-bottom: 8px;
}
.recipe-card p {
  color: var(--color-primary);
  font-size: 1rem;
}

/* SIDEBAR FILTERS (rezepte.html) */
.filters-sidebar {
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #f7f7fa;
  border-radius: 14px;
  box-shadow: var(--shadow-light);
  padding: 18px 14px;
  min-width: 168px;
  max-width: 210px;
  margin-bottom: 18px;
  margin-top: 24px;
}
.filters-sidebar strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 7px;
  color: var(--color-vibrant-magenta);
}
.filters-sidebar ul {
  list-style: none;
  margin: 0 0 0 5px;
  padding: 0;
}
.filters-sidebar li {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: .99rem;
}

/***********************************/
/* LEGAL, ABOUT, CONTACT, FAQ ETC. */
.legal, .about, .values, .faq, .form-section, .callout, .thankyou, .contact {
  background: var(--color-card-bg);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  margin-bottom: 48px;
  padding: 40px 24px 32px;
}
.privacy-note {
  display: flex;
  align-items: center;
  background: #fff4ea;
  border-radius: 14px;
  gap: 14px;
  padding: 10px 22px;
  font-size: .96rem;
}
.privacy-note img {
  width: 30px;
  height: 30px;
}

.contact-details ul, .map-embed {
  list-style: none;
  margin: 18px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
}
.contact-details img {
  width: 22px;
  height: 22px;
  margin-right: 7px;
}
.map-embed {
  font-size: 1rem;
  color: var(--color-primary);
  margin: 16px 0 0 0;
  padding: 10px 0;
}
.map-embed img {
  width: 24px;
  margin-right: 6px;
  vertical-align: middle;
}
.form-section ol {
  margin: 8px 0 18px 22px;
  color: var(--color-primary);
}

/* FAQ */
.faq ul {
  margin-top: 14px;
  list-style: none;
}
.faq li {
  padding: 14px 0;
  border-bottom: 1px solid #f0e4cf;
  font-size: 1rem;
}
.faq li:last-child {
  border-bottom: none;
}

/* THANK YOU & CALLOUT */
.thankyou, .callout {
  background: var(--color-vibrant-green);
  color: #1B2320;
}
.thankyou h1, .callout h2 {
  color: var(--color-vibrant-magenta);
  font-size: 2rem;
  margin-bottom: 16px;
}
.callout ul li {
  color: var(--color-primary);
  margin-bottom: 9px;
}
.callout .cta-btn {
  margin-top: 22px;
}


/* FOOTER */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 46px 0 20px 0;
  font-size: 0.99rem;
}
footer .container {
  flex-direction: column;
  gap: 22px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.93;
  font-size: 0.98rem;
  transition: color 0.17s, opacity 0.18s;
}
.footer-nav a:hover {
  color: var(--color-vibrant-yellow);
  opacity: 1;
}
.footer-contact {
  text-align: center;
  line-height: 1.65;
}
.footer-contact a {
  color: var(--color-vibrant-green);
  text-decoration: underline;
  transition: color .16s;
}
.footer-contact a:hover {
  color: var(--color-vibrant-yellow);
}


/* --- FLEXBOX CONTENT CARDS & LAYOUT --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  padding: 22px 18px;
  transition: transform .19s, box-shadow .18s;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px 0 rgba(76,59,43,0.16);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/************************/
/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2500;
  background: #fffbed;
  color: var(--color-primary);
  box-shadow: 0 -2px 28px 0 rgba(44,147,227,0.12);
  padding: 22px 30px 18px 20px;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto;
  animation: cookie-slide-in .7s cubic-bezier(.8,0,.15,1);
}

@keyframes cookie-slide-in {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-consent-banner p {
  flex: 2 1 350px;
  margin-right: 20px;
}
.cookie-btn {
  background: var(--color-vibrant-magenta);
  color: #fff;
  border: none;
  border-radius: 23px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  margin-right: 10px;
  cursor: pointer;
  transition: background .18s, box-shadow .18s;
  box-shadow: 0 2px 10px 0 rgba(235,40,122,0.08);
}
.cookie-btn.reject {
  background: #e2e3e5;
  color: #4B3B2B;
  font-weight: bold;
  margin-left: 0;
}
.cookie-btn.settings {
  background: var(--color-vibrant-yellow);
  color: var(--color-primary);
  margin-right: 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 4px 24px rgba(235,40,122,0.14);
  background: var(--color-energy-orange);
  color: #fff;
  outline: none;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #afb2b6;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-vibrant-green);
  color: #fff;
}


.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(44, 59, 96, 0.34);
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein .5s;
  transition: opacity 0.2s;
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fffbed;
  box-shadow: 0 8px 48px 0 rgba(44,147,227,0.25);
  border-radius: 16px;
  max-width: 420px;
  width: 95vw;
  padding: 38px 30px 32px 30px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookie-slide-modal .5s cubic-bezier(.7,0,.17,1);
}
@keyframes cookie-slide-modal {
  from { transform: translateY(-80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
  font-size: 1.24rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-vibrant-magenta);
}
.cookie-category {
  padding: 11px 0 3px 0;
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-switch {
  width: 42px;
  height: 24px;
  background: #e4e9e6;
  border-radius: 17px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(123,123,123,0.04);
  transition: background .16s;
}
.cookie-switch input[type="checkbox"] { display: none; }
.cookie-switch .slider {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left .18s, background .16s;
  box-shadow: 0 1px 4px 0 rgba(101,101,101,0.09);
}
.cookie-switch input[type="checkbox"]:checked + .slider {
  left: 22px;
  background: var(--color-vibrant-green);
}
.cookie-category.essential .cookie-switch {
  opacity: .6;
  pointer-events: none;
  background: #dbcebe;
}
.cookie-modal-content .cookie-btn {
  margin: 8px 0 0 0;
  width: 100%;
  font-size: 1.02rem;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 16px;
  font-size: 1.25rem;
  background: none;
  border: none;
  color: var(--color-vibrant-magenta);
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal-close:hover { color: var(--color-energy-orange); }


/* SPACING FOR GLOBAL FLEX/SECTION PATTERNS */
.section, .features, .categories-overview, .newsletter-signup, .about, .values, .faq, .form-section, .callout, .legal, .contact, .thankyou {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .category-tiles, .recipes-cards, .feature-grid, .content-grid {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.testimonial-card { gap: 20px; padding: 20px; }
.text-image-section { gap: 30px; }
.feature-item { gap: 15px; }


/***************************/
/* RESPONSIVE BREAKPOINTS  */
@media (max-width: 1150px) {
  .container { max-width: 1000px; }
  .feature-grid > div, .category-tiles > div, .recipe-card {
    min-width: 170px;
    max-width: 320px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
    padding: 0 7vw;
  }
  .hero {
    min-height: 220px;
    margin-top: 12px;
  }
  .main-nav, .footer-nav {
    gap: 13px;
  }
  .feature-grid, .category-tiles, .recipes-cards, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .filters-sidebar {
    max-width: 95vw;
    margin-bottom: 12px;
    margin-top: 13px;
  }
}
@media (max-width: 650px) {
  .container { padding: 0 2vw; }
  .section {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
  .hero {
    margin-top: 5px;
    border-radius: 1rem;
    min-height: 135px;
  }
  .features, .categories-overview, .newsletter-signup, .about, .values, .faq, .form-section, .callout, .legal, .contact, .thankyou {
    padding: 24px 7px;
    border-radius: .8rem;
  }
}
@media (max-width: 480px) {
  h1, .h1 { font-size: 1.44rem; }
  h2, .h2 { font-size: 1.11rem; }
  .footer-contact { font-size: .97rem; }
  .cookie-consent-banner {
    max-width: 99vw;
    padding: 10px 5vw 10px 4vw;
    font-size: .95rem;
    flex-direction: column;
    align-items: flex-start;
  }
}


/* --- Utility Classes --- */
.hidden { display: none !important; }
.mt-4 { margin-top: 4px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }

/***********************************/
/* VIBRANT ANIMATIONS, BOLD FOCUS */
.cta-btn, .cookie-btn, .main-nav a, .mobile-nav a, .category-tiles a {
  transition: background 0.18s, color 0.19s, box-shadow 0.17s, transform 0.17s;
}
.cta-btn:active,
.cookie-btn:active,
.main-nav a:active,
.mobile-nav a:active,
.category-tiles a:active {
  transform: scale(0.97);
}
:focus-visible {
  outline: 2.5px solid var(--color-vibrant-magenta);
  outline-offset: 2px;
}

/*************************************/
/* END CSS */
