/* ===========================================================
   CSS RESET & ROOT VARIABLES
   =========================================================== */
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, 
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, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F7F5EE;
  color: #25323B;
  font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dotted #e87060;
  outline-offset: 3px;
}
ul, ol {
  padding-left: 18px;
  margin-bottom: 18px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}

:root {
  --primary: #25323B;
  --secondary: #E87060;
  --accent: #F7F5EE;
  --text: #25323B;
  --text-light: #ffffff;
  --muted: #857f75;
  --surface: #fff;
  --shadow: 0 2px 10px 0 rgba(37,50,59,0.08);
  --radius: 12px;
  --radius-small: 7px;
  --transition: all 0.21s cubic-bezier(.47,1.64,.41,.8);
  --ff-display: 'Montserrat', Georgia, serif;
  --ff-body: 'Roboto', Georgia, 'Times New Roman', serif;
}

/* ===========================================================
   TYPOGRAPHY - Elegant Classic
   =========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  line-height: 1.14;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.11rem;
  font-weight: 600;
  margin-bottom: 9px;
}
p, ul, ol {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 13px;
}
p:last-child, ul:last-child, ol:last-child {
  margin-bottom: 0;
}
strong, b {
  font-weight: bold;
}
.tagline {
  font-family: var(--ff-body);
  font-style: italic;
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 22px;
}

/* Typography responsiveness */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.15rem;
  }
}

/* ===========================================================
   GLOBAL CONTAINERS & LAYOUTS (FLEXBOX ONLY)
   =========================================================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section {
  background: none;
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section {
    padding: 27px 6px;
  }
}

/* ===========================================================
   HEADER
   =========================================================== */
header {
  background: var(--accent);
  border-bottom: 2.5px solid #eddfcd;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  padding: 16px 20px;
}
header img {
  height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 520px) {
  header img {
    height: 38px;
  }
}
.nav-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.nav-main a {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--radius-small);
  transition: background var(--transition);
}
.nav-main a:hover,
.nav-main a:focus {
  background: #ede7de;
  color: var(--secondary);
}
.btn-primary {
  background: var(--secondary);
  color: var(--text-light);
  font-family: var(--ff-display);
  font-weight: 500;
  padding: 9px 28px;
  border-radius: var(--radius);
  font-size: 1.16rem;
  letter-spacing: .05em;
  box-shadow: 0 2px 12px 0 rgba(242,150,137,0.06);
  border: none;
  transition: background var(--transition), transform var(--transition);
  outline: none;
  display: inline-block;
  margin-left: 15px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #c55d48;
  transform: translateY(-2px) scale(1.03);
}

button.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1000px) {
  .nav-main, .btn-primary {
    display: none;
  }
  button.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    font-size: 2.15rem;
    color: var(--primary);
    background: none;
    border-radius: var(--radius);
    border: none;
    transition: background var(--transition);
    z-index: 55;
  }
  button.mobile-menu-toggle:active,
  button.mobile-menu-toggle:hover {
    background: #ede7de;
    color: var(--secondary);
  }
}

/* ===========================================================
   MOBILE MENU
   =========================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(37,50,59,0.92);
  transform: translateX(-105%);
  transition: transform 0.4s cubic-bezier(.66,-0.15,.44,1.21);
  z-index: 99;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--accent);
  background: transparent;
  padding: 20px 18px 0 0;
  margin-left: auto;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  z-index: 99;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 40px 34px 34px 34px;
  gap: 18px;
  margin-top: 10vh;
}
.mobile-nav a {
  color: var(--accent);
  background: transparent;
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-family: var(--ff-body);
  font-weight: 500;
  border-radius: var(--radius-small);
  padding: 10px 6px 10px 16px;
  transition: background var(--transition), color var(--transition);
  outline: none;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--secondary);
  color: var(--text-light);
}
@media (min-width: 1001px) {
  .mobile-menu { display: none !important; }
  button.mobile-menu-toggle { display: none !important; }
}

/* =====================================================================
   HERO SECTIONS
   ===================================================================== */
.hero {
  background: linear-gradient(110deg, #f7f5ee 90%, #ede7de 100%);
  padding-top: 48px;
  padding-bottom: 48px;
  margin-bottom: 60px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 4vw;
}
.hero h1 {
  color: var(--primary);
  margin-bottom: 10px;
}
.hero p {
  color: var(--muted);
}
.hero .btn-primary {
  margin: 0 auto;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 25px;
    padding-bottom: 32px;
    margin-bottom: 34px;
  }
}

/* =====================================================================
   FEATURE GRID & RECIPE CARDS (Flex only)
   ===================================================================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 16px;
}
.feature {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  min-width: 210px;
  max-width: 285px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature:hover {
  box-shadow: 0 6px 24px 0 rgba(37,50,59,0.13);
  transform: translateY(-5px) scale(1.025);
}
.feature img {
  height: 40px;
  margin-bottom: 9px;
}

/* Recipe Preview Cards Grid (homepage & recettes) */
.recipe-preview-cards, .recipe-cards, .seasonal-recipe-cards, .tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.recipe-card, .tip-card, .seasonal-recipe-cards > div {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
  margin-bottom: 20px;
  position: relative;
}
.recipe-card:hover, .tip-card:hover, .seasonal-recipe-cards > div:hover {
  box-shadow: 0 11px 26px 0 rgba(37,50,59,0.14);
  transform: translateY(-6px) scale(1.027);
}
.recipe-card a {
  margin-top: 7px;
  color: var(--secondary);
  font-weight: 500;
  text-decoration: underline;
  font-size: 1rem;
  transition: color var(--transition);
}
.recipe-card a:hover {
  color: #97341e;
}

/* Category grid */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.category-grid > div {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 19px 18px;
  min-width: 180px;
  flex: 1 1 220px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

/* Seasonal calendar grid */
.seasonal-calendar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  margin-top: 7px;
}
.seasonal-calendar-grid > div {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 16px;
  min-width: 160px;
  flex: 1 1 170px;
}

/* Highlighted ingredients callout */
.highlighted-ingredients {
  background: #ede7de;
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 1rem;
  color: var(--primary);
  margin: 16px 0 0 0;
}

/* Tip list */
.tip-list {
  margin-bottom: 20px;
}
.tip-list li {
  margin-bottom: 9px;
  list-style-type: disc;
  margin-left: 22px;
}

/* Callout box for tips */
.callout-boxes > div, .featured-tip {
  background: #ede7de;
  color: var(--primary);
  padding: 15px 19px;
  border-radius: var(--radius-small);
  margin-bottom: 0;
  font-style: italic;
  border-left: 4px solid var(--secondary);
}
.featured-tip strong {
  color: var(--secondary);
  font-style: normal;
}

/* Commitments (a-propos) */
.commitments {
  margin-top: 19px;
}
.commitments h3 {
  margin-bottom: 7px;
}
.commitments ul {
  margin-left: 20px;
}
.commitments li {
  margin-bottom: 6px;
}

.value-statements {
  margin-left: 20px;
  margin-bottom: 16px;
}
.value-statements li {
  margin-bottom: 6px;
  list-style-type: disc;
}

/* FAQ list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-list > div {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 19px 19px;
  box-shadow: var(--shadow);
}

/* Popular categories, filters, tip-categories */
.popular-categories, .filters, .tip-categories {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 7px;
}
.popular-categories h4, .tip-categories h4 {
  margin-right: 10px;
  font-size: 1rem;
  font-weight: 600;
}
.filters button, .popular-categories button, .tip-categories button, .seasonal-filters button {
  background: #ede7de;
  color: var(--primary);
  border: none;
  border-radius: var(--radius-small);
  padding: 7px 18px;
  font-size: 1rem;
  font-family: var(--ff-body);
  font-weight: 500;
  margin-bottom: 2px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.filters button:hover, .popular-categories button:hover, .tip-categories button:hover, .seasonal-filters button:hover {
  background: var(--secondary);
  color: var(--surface);
  transform: translateY(-2px) scale(1.05);
}

/* Highlighted quick links */
.quick-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 6px;
}
.quick-links a {
  background: var(--surface);
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
  border-radius: var(--radius-small);
  padding: 6px 17px;
  font-size: 1rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  margin-bottom: 4px;
}
.quick-links a:hover {
  background: var(--secondary);
  color: var(--surface);
}

/* Next steps (merci/thank-you */
.next-steps {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

/* Newsletter */
.newsletter {
  background: #ede7de;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 rgba(37,50,59,0.05);
}
.newsletter-benefits {
  margin-bottom: 16px;
}
.newsletter-benefits ul {
  margin-bottom: 0;
  margin-left: 20px;
}
.newsletter-benefits li {
  margin-bottom: 8px;
}

/* Calendar filter */
.seasonal-filters {
  margin-top: 10px;
}

/* ===========================================================================
   TESTIMONIALS (a-propos.html)
   =========================================================================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  background: #ede7de;
  color: var(--primary);
  border-radius: var(--radius);
  padding: 20px 22px;
  min-width: 220px;
  max-width: 320px;
  font-style: italic;
  box-shadow: 0 2px 18px 0 rgba(37,50,59,0.06);
  margin-bottom: 20px;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.06rem;
  margin-bottom: 5px;
}
.testimonial-card span {
  color: var(--muted);
  font-style: normal;
  font-size: 0.98rem;
  font-weight: 500;
}

/* Adequate contrast for readability in testimonials */
.testimonial-card,
.testimonial-card * {
    color: #25323B;
    background: none;
}

/* ===========================================================================
   CONTACT & FOOTER
   =========================================================================== */
footer {
  background: #ede7de;
  color: var(--primary);
  padding-top: 38px;
  padding-bottom: 24px;
  font-size: 1rem;
  margin-top: 60px;
  border-top: 2.5px solid #eddfcd;
}
footer .container {
  gap: 26px;
}
.footer-top {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 1.5px solid #dbd2bc;
  padding-bottom: 17px;
}
.footer-top img {
  height: 39px;
}
.footer-menu {
  display: flex;
  gap: 23px;
  flex-direction: row;
  align-items: center;
}
.footer-menu a {
  color: var(--muted);
  font-family: var(--ff-body);
  padding: 2px 4px;
  transition: color 0.18s;
  font-size: 1rem;
}
.footer-menu a:hover {
  color: var(--secondary);
}
.footer-contact {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact p, .footer-contact a {
  color: var(--primary);
  font-size: 1rem;
  font-family: var(--ff-body);
}
.footer-contact img {
  margin-right: 7px;
  vertical-align: baseline;
  height: 1.1em;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 8px;
}
.footer-social a img {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(37,50,59,0.04);
  background: #fff;
  transition: box-shadow .18s, background .18s;
  border: 1.5px solid #FFF3;
}
.footer-social a:hover img {
  box-shadow: 0 2px 10px 0 rgba(232,112,96,0.14);
  background: #E87060;
}

/* =====================================================================
   RESPONSIVE: FLEX LAYOUTS ONLY (NO GRID OR COLUMNS)
   ===================================================================== */
@media (max-width: 900px) {
  .feature-grid, .category-grid, .seasonal-calendar-grid, .recipe-preview-cards, .recipe-cards, .tips-grid, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .footer-top { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-menu { flex-wrap: wrap; gap: 11px; }
}
@media (max-width: 700px) {
  .footer-top { flex-direction: column; gap: 10px; }
  .footer-social { gap:8px; }
}
@media (max-width: 768px) {
  .seasonal-recipe-cards, .category-grid, .recipe-cards, .recipe-preview-cards, .tips-grid, .feature-grid, .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .quick-links, .next-steps {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}

/* Responsive alignment for .text-image-section & content-grid */
.text-image-section, .content-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =====================================================================
   FORMS & INPUTS
   ===================================================================== */
input[type="search"],
input[type="text"],
input[type="email"] {
  border: 1.5px solid #dbd2bc;
  border-radius: var(--radius-small);
  padding: 11px 15px;
  font-size: 1rem;
  font-family: var(--ff-body);
  margin-bottom: 13px;
  transition: border-color var(--transition);
  background: var(--surface);
}
input[type="search"]:focus,
input[type="text"]:focus,
input[type="email"]:focus {
  border-color: var(--secondary);
  outline: none;
}

/* =====================================================================
   COOKIE CONSENT BANNER & MODAL
   ===================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #eee1d0;
  color: var(--primary);
  border-top: 2.5px solid #e7c9b2;
  box-shadow: 0 -4px 24px 0 rgba(37,50,59,0.06);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  z-index: 150;
  gap: 19px;
  opacity: 1;
  visibility: visible;
  transition: opacity .23s, bottom .21s;
}
.cookie-banner.hide {
  opacity: 0;
  bottom: -110px;
  visibility: hidden;
  pointer-events: none;
}
.cookie-banner .cookie-message {
  font-size: 1rem;
  flex: 1 1 auto;
  margin-right: 10px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  background: var(--surface);
  color: var(--primary);
  border-radius: var(--radius-small);
  border: none;
  padding: 8px 18px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
  box-shadow: 0 1px 6px 0 rgba(232,112,96,.09);
  transition: background var(--transition), color var(--transition);
}
.cookie-banner button.cookie-accept {
  background: var(--secondary);
  color: var(--text-light);
}
.cookie-banner button.cookie-accept:hover {
  background: #c55d48;
}
.cookie-banner button.cookie-reject {
  background: #e4e3e1;
  color: var(--secondary);
  border: 1.5px solid #e870609f;
}
.cookie-banner button.cookie-reject:hover {
  background: #ead1c6;
  color: #97341e;
}
.cookie-banner button.cookie-settings {
  background: transparent;
  color: var(--primary);
  text-decoration: underline;
  border: none;
}
.cookie-banner button.cookie-settings:hover {
  color: var(--secondary);
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 151;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(37,50,59,0.4);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--surface);
  color: var(--primary);
  border-radius: var(--radius);
  padding: 32px 34px 26px 34px;
  min-width: 290px;
  max-width: 95vw;
  box-shadow: 0 2px 32px 0 rgba(37,50,59,0.17);
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: fadeInModal 0.27s cubic-bezier(.47,1.64,.41,.8);
}
@keyframes fadeInModal {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--secondary);
  width: 20px; height: 20px;
}
.cookie-modal .cookie-category.essential label {
  color: #857f75;
}
.cookie-modal .actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .actions button {
  padding: 8px 18px;
  border-radius: var(--radius-small);
  font-size: 1rem;
  font-weight: 500;
  background: var(--secondary);
  color: var(--surface);
  border: none;
  box-shadow: 0 1px 5px rgba(232,112,96,.07);
  transition: background var(--transition), color var(--transition);
}
.cookie-modal .actions button.cancel {
  background: #ede7de;
  color: var(--primary);
  border: 1.5px solid #e870609c;
}
.cookie-modal .actions button.cancel:hover {
  background: #ead1c6;
  color: #97341e;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 13px;
  right: 17px;
  font-size: 2rem;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: color var(--transition);
}
.cookie-modal .close-btn:hover {
  color: var(--secondary);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 5vw 18px 5vw;
    gap: 10px;
  }
  .cookie-banner .cookie-actions {
    flex-wrap: wrap;
    gap:9px;
  }
  .cookie-modal {
    padding: 18px 5vw 18px 5vw;
    min-width: 0;
  }
}

/* =====================================================================
   ALIGNMENT & SPACING PATTERNS (MANDATORY CLASS NAMES)
   ===================================================================== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* =====================================================================
   GENERAL SPACING/WHITE SPACE
   ===================================================================== */
.card, .feature, .recipe-card, .tip-card, .category-grid > div, .seasonal-calendar-grid > div, .faq-list > div, .testimonial-card {
  margin-bottom: 20px;
}
.section:last-child, section:last-child {
  margin-bottom: 0;
}

/* =====================================================================
   UTILITY/MISC CLASSES
   ===================================================================== */
.d-none { display: none !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-muted { color: var(--muted) !important; }
.mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }

/* =====================================================================
   ANIMATIONS, EFFECTS
   ===================================================================== */
.card, .feature, .recipe-card, .tip-card, .category-grid > div, .seasonal-calendar-grid > div, .faq-list > div, .testimonial-card, .newsletter, section {
  transition: box-shadow var(--transition), transform var(--transition);
}
a, .btn-primary, button, .quick-links a, .filters button, .popular-categories button, .tip-categories button {
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

/* =====================================================================
   PRINT (Remove unwanted)
   ===================================================================== */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer { display: none !important; }
  section, .section, .container { background: none !important; box-shadow: none !important; }
}
