/* =============================================================
   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, b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F2E6D0;
  color: #2C2C1E;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style-position: inside;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
}

/* =============================================================
   BRAND VARIABLES
   ============================================================= */
:root {
  --brand-primary: #214832;
  --brand-secondary: #C96F37;
  --brand-accent: #F2E6D0;
  --text-main: #2C2C1E;
  --background-main: #F2E6D0;
  --background-footer: #2C2C1E;
  --background-light: #FFFFFF;
  --border-radius: 12px;
  --shadow: 0 2px 16px 0 rgba(33, 72, 50, 0.12);
  --shadow-hover: 0 4px 24px 0 rgba(33, 72, 50, 0.18);
  --focus-outline: 2px solid #C96F37;
  --font-display: 'Lora', 'Times New Roman', Times, serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* =============================================================
   TYPOGRAPHY & HEADINGS
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 600;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.25;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  line-height: 1.3;
  color: var(--brand-secondary);
}
h4, h5, h6 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
p, li, address {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
}
.subtitle {
  color: var(--brand-secondary);
  font-size: 1.125rem;
  font-family: var(--font-body);
  margin-bottom: 20px;
  font-style: italic;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

/* =============================================================
   LAYOUT CONTAINERS
   ============================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--background-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}
.section:last-child {
  margin-bottom: 0;
}

/* Responsive adjustment for sections */
@media (max-width: 900px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 36px;
  }
}

/* =============================================================
   NAVIGATION / HEADER
   ============================================================= */
header {
  background: var(--background-light);
  border-bottom: 1px solid #E0D6C5;
  padding: 0;
  box-shadow: 0 2px 10px 0 rgba(33, 72, 50, 0.04);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 0;
  padding-bottom: 0;
  gap: 24px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  position: relative;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 500;
  padding: 4px 0;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--brand-secondary);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: scaleX(0.7);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-secondary);
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.cta-primary {
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--border-radius);
  padding: 10px 32px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: var(--shadow);
  border: 1px solid var(--brand-primary);
  cursor: pointer;
  margin-left: 18px;
  display: inline-block;
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--brand-secondary);
  color: #fff;
  border-color: var(--brand-secondary);
  box-shadow: var(--shadow-hover);
}

/* =============================================================
   MOBILE BURGER MENU
   ============================================================= */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  line-height: 1;
  background: var(--brand-secondary);
  color: #fff;
  border-radius: 8px;
  padding: 6px 18px 8px 14px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 105;
  box-shadow: var(--shadow);
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.mobile-menu-toggle:focus {
  outline: var(--focus-outline);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  max-width: 95vw;
  background: var(--brand-primary);
  color: #fff;
  z-index: 200;
  box-shadow: 0 4px 32px 0 rgba(33,72,50,0.30);
  transform: translateX(105%);
  transition: transform 0.36s cubic-bezier(.6, -.28, .74, .05), visibility 0.22s;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  padding: 38px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  border: none;
  padding: 8px;
  transition: background 0.2s;
}
.mobile-menu-close:focus {
  outline: var(--focus-outline);
  background: rgba(33,72,50,0.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.2rem;
  padding: 8px 0 8px 0;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--brand-secondary);
  color: #fff;
}

@media (max-width: 1024px) {
  .main-nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* Overlay when mobile menu open (optional effect) */
body.mobile-menu-open::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33, 72, 50, 0.28);
  z-index: 199;
  pointer-events: auto;
  transition: opacity 0.35s;
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: var(--background-footer);
  color: #fff;
  padding: 0 0 12px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 20px 20px 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.83;
  transition: color 0.2s, opacity 0.2s;
  font-size: 1rem;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--brand-secondary);
  opacity: 1;
}
.footer-contact {
  font-family: var(--font-body);
  font-size: 0.99rem;
 background-color: #fff;
  opacity: 0.95;
}
.footer-copy {
  margin-top: 22px;
  color: #fff;
  font-size: 0.90rem;
  opacity: 0.6;
  width: 100%;
  line-height: 1.3;
  text-align: center;
}
footer img {
  max-height: 42px;
  margin-bottom: 16px;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 24px 10px 14px 10px;
  }
  .footer-copy {
    text-align: left;
    margin-top: 10px;
  }
}

/* =============================================================
   FLEXBOX GRID & LAYOUTS
   ============================================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--background-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 22px 20px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 370px;
  transition: box-shadow 0.2s;
}
.card:hover,
.card:focus-within {
  box-shadow: var(--shadow-hover);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 300px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.feature-grid > div:hover {
  box-shadow: var(--shadow-hover);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

/* For grids in rezepte, schnelle-rezepte, blog */
.category-list, .recipe-teasers-grid, .classic-recipes, .blog-teasers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: row;
  margin-top: 8px;
  margin-bottom: 0;
}
.category-list li, .recipe-teasers-grid li, .classic-recipes li, .blog-teasers-list li {
  flex: 1 1 210px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 20px 16px;
  min-width: 185px;
  max-width: 300px;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.category-list li img, .blog-teasers-list li img {
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
}
.category-list li:hover, .recipe-teasers-grid li:hover, .classic-recipes li:hover, .blog-teasers-list li:hover {
  box-shadow: var(--shadow-hover);
}
@media (max-width: 900px) {
  .category-list, .recipe-teasers-grid, .classic-recipes, .blog-teasers-list {
    flex-direction: column;
    gap: 16px;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* Testimonial List and Cards */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: var(--text-main);
  font-family: var(--font-body);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 20px;
  min-width: 254px;
  max-width: 420px;
  flex: 1 1 320px;
  margin-bottom: 0;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.2s;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brand-primary);
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--brand-secondary);
  font-family: var(--font-display);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
}

/* =============================================================
   FILTER BAR
   ============================================================= */
.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 10px 14px 10px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 6px;
}
.filter-bar label {
  font-weight: bold;
  font-family: var(--font-body);
  color: var(--brand-primary);
}
.filter-bar input[type='text'] {
  margin-top: 10px;
  min-width: 180px;
  max-width: 420px;
  padding: 10px 16px;
  border: 1px solid #bca777;
  border-radius: 8px;
  box-shadow: none;
  font-size: 1rem;
  font-family: var(--font-body);
  background: #faf8f2;
}
.filter-bar input[type='text']:focus {
  outline: var(--focus-outline);
  border-color: var(--brand-secondary);
}

/* =============================================================
   NEWSLETTER FORM (BLOG)
   ============================================================= */
.newsletter-form {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: flex-end;
  background: #fff;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-top: 12px;
}
.newsletter-form label {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--brand-primary);
  margin-bottom: 4px;
}
.newsletter-form input[type='email'] {
  padding: 10px 16px;
  border: 1px solid #bca777;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: #faf8f2;
  margin-right: 8px;
}
.newsletter-form input[type='email']:focus {
  outline: var(--focus-outline);
  border-color: var(--brand-secondary);
}
.newsletter-form button {
  background: var(--brand-secondary);
  color: #fff;
  padding: 10px 26px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.newsletter-form button:hover {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: var(--shadow-hover);
}
@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
}

/* =============================================================
   ADDRESS STYLING
   ============================================================= */
address {
  font-style: normal;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}

/* =============================================================
   LINKS & BUTTONS (Global)
   ============================================================= */
a {
  transition: color 0.2s, opacity 0.2s;
}
a:focus {
  outline: var(--focus-outline);
}
button:focus {
  outline: var(--focus-outline);
}

/* =============================================================
   RESPONSIVE DESIGN
   ============================================================= */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid, .category-list, .card-container, .testimonial-list, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.15rem;
  }
  .feature-grid > div, .card, .category-list li, .recipe-teasers-grid li, .blog-teasers-list li, .classic-recipes li, .testimonial-card {
    min-width: 90vw;
    max-width: 100vw;
    padding: 16px 8px;
  }
  .container, .content-wrapper, .section {
    padding-left: 4px;
    padding-right: 4px;
  }
  .section {
    padding: 22px 0px;
  }
  .testimonial-list, .category-list, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  header .container {
    gap: 8px;
    padding: 0 6px;
  }
  footer .container {
    padding: 16px 4px 8px 4px;
  }
}

/* =============================================================
   COOKIE CONSENT BANNER
   ============================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: var(--text-main);
  box-shadow: 0 -2px 24px 0 rgba(33,72,50,0.16);
  z-index: 4000;
  padding: 20px 28px 18px 28px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  border-radius: 20px 20px 0 0;
  transition: transform 0.35s, opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(105%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__message {
  font-size: 1rem;
  flex: 1;
  margin-right: 16px;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
}
.cookie-banner button {
  padding: 10px 20px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cookie-banner .cookie-accept {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-banner .cookie-accept:hover { background: var(--brand-secondary); }
.cookie-banner .cookie-reject {
  background: #eee8db;
  color: var(--brand-primary);
}
.cookie-banner .cookie-reject:hover {
  background: #dbd5c8;
}
.cookie-banner .cookie-settings {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-banner .cookie-settings:hover {
  background: var(--brand-primary);
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 8px 12px 8px;
    font-size: 0.95rem;
  }
  .cookie-banner__actions {
    flex-direction: row;
    gap: 8px;
    width: 100%;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,72,50,0.24);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__content {
  background: #fff;
  color: var(--text-main);
  padding: 32px 24px 20px 24px;
  border-radius: 18px;
  box-shadow: 0 8px 40px 0 rgba(33,72,50,0.22);
  min-width: 340px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px; top: 12px;
  background: none;
  color: var(--brand-primary);
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: background 0.2s;
}
.cookie-modal-close:focus {
  outline: var(--focus-outline);
  background: #e9ddd2;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #efe6dd;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
}
.cookie-category small {
  color: #8E846F;
  font-size: 0.92rem;
}
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #ded5c7;
  border-radius: 13px;
  transition: background 0.2s;
}
.switch input:checked + .slider {
  background: var(--brand-secondary);
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.switch input:checked + .slider:before {
  transform: translateX(20px);
}

.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal__actions button {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--brand-primary);
  color: #fff;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal__actions .cookie-cancel {
  background: #eee8db;
  color: var(--brand-primary);
}
.cookie-modal__actions .cookie-cancel:hover {
  background: #dbd5c8;
  color: var(--brand-primary);
}

/* =============================================================
   UTILITIES
   ============================================================= */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

/* Misc. spacing helpers */
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }

/* =============================================================
   FOCUS & INTERACTIONS
   ============================================================= */
:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 3px;
}

/* Transitions for hover/micro-interactions */
.card, .feature-grid > div, .category-list li, .recipe-teasers-grid li, .classic-recipes li, .blog-teasers-list li, .testimonial-card {
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .feature-grid > div:hover, .category-list li:hover, .recipe-teasers-grid li:hover, .classic-recipes li:hover, .blog-teasers-list li:hover, .testimonial-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.cta-primary, .newsletter-form button, .cookie-banner button, .cookie-modal__actions button {
  transition: background 0.2s, color 0.2s;
}

/* Loader (optional, if needed) */
.loader {
  border: 3px solid #ccc;
  border-top: 3px solid var(--brand-primary);
  border-radius: 50%;
  width: 32px; height: 32px;
  animation: spin 0.8s linear infinite;
  margin: auto;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* =============================================================
   PRINT OPTIMIZATION (optional)
   ============================================================= */
@media print {
  header, footer, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  .section, .container, .content-wrapper {
    box-shadow: none !important;
    background: #fff !important;
    color: #000 !important;
  }
}

/* =============================================================
   END OF CSS
   ============================================================= */
