/* =======================================================
   CSS RESET & NORMALIZATION (Mobile first)
======================================================= */
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;
}
html {
  scroll-behavior: smooth;
  background-color: #F9FAFB;
}
body {
  min-height: 100vh;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #264653;
  background-color: #fdf6f0;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #264653;
  font-weight: 600;
  letter-spacing: 0.01em;
}
a {
  color: #457B9D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, .main-nav a:focus, .footer-menu a:focus {
  color: #E76F51;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
}

/* ===========================================
   COLORS: SOFT PASTEL PALETTE
=========================================== */
:root {
  --brand-primary: #264653;
  --brand-secondary: #E9C46A;
  --brand-accent: #F4F4F4;
  --brand-accent-b: #FAF3DD;
  --pastel-peach: #FFE9E1;
  --pastel-blue: #A4DDED;
  --pastel-lilac: #E2DDFD;
  --pastel-mint: #C7F2E6;
  --pastel-yellow: #FFF4BA;
  --pastel-pink: #FFE3F0;
  --brand-dark: #264653;
  --brand-bg: #fdf6f0;
  --surface: #fff;
  --shadow-lg: 0 6px 32px 0 rgba(68, 88, 144, 0.12);
  --shadow-sm: 0 2px 6px 0 rgba(38, 70, 83, 0.06);
  --text-main: #264653;
  --text-light: #56737D;
  --cta-gradient-from: #E9C46A;
  --cta-gradient-to: #A4DDED;
}

/* ===========================================
   CONTAINER, SPACING, and SECTION RULES
=========================================== */
.container {
  width: 100%;
  max-width: 1170px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.section,
.hero,
.features,
.highlights,
.list,
.cta,
.testimonials,
.contact,
.about,
.legal,
.thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-bg);
  border-radius: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ===========================================
   HEADER & NAVIGATION
=========================================== */
header {
  width: 100%;
  background: linear-gradient(90deg, #E2DDFD 0%, #C7F2E6 100%);
  padding: 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  max-width: 1170px;
  margin: 0 auto;
}
.header-inner img {
  height: 44px;
  width: auto;
  margin-right: 12px;
  border-radius: 7px;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.main-nav a {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #264653;
  background: transparent;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  background: #FFE3F0;
  color: #2A4553;
}

.cta-button {
  display: inline-block;
  padding: 10px 28px;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(90deg, #E9C46A 0%, #A4DDED 100%);
  border: none;
  border-radius: 30px;
  color: #264653;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: background 0.23s, box-shadow 0.22s, color 0.18s, transform 0.15s;
  margin-left: 8px;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #C7F2E6 0%, #E9C46A 100%);
  color: #264653;
  box-shadow: 0 4px 18px 0 rgba(38, 70, 83, 0.11);
  transform: translateY(-1.5px) scale(1.06);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
  }
  .header-inner {
    padding: 12px 10px;
  }
}

/* ===============================
   MOBILE NAVIGATION (BURGER MENU)
=============================== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 2rem;
  color: #264653;
  padding: 8px 10px;
  border-radius: 7px;
  cursor: pointer;
  z-index: 2010;
  box-shadow: none;
  transition: background 0.16s;
  margin-left: 6px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #A4DDED;
  color: #254359;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 330px;
  height: 100vh;
  background: linear-gradient(180deg,#FFE9E1 0%, #E2DDFD 100%);
  box-shadow: -2px 0 20px 0 rgba(38,70,83,0.15);
  transform: translateX(110%);
  transition: transform 0.34s cubic-bezier(.51,.01,.37,.99);
  z-index: 3003;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 13px 0 0;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #264653;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E9C46A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 28px 28px 32px;
}
.mobile-nav a {
  color: #264653;
  font-size: 19px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 4px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
}
.mobile-nav a:hover {
  background: #FFF4BA;
  color: #254359;
}
@media (min-width: 961px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}
@media (max-width: 960px) {
  .main-nav, .cta-button { display: none !important; }
  .header-inner { justify-content: flex-start; }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  background: linear-gradient(90deg, #FFE9E1 10%, #E2DDFD 63%, #C7F2E6 100%);
  min-height: 270px;
  margin-bottom: 60px;
  padding: 56px 20px 44px 20px;
  display: flex;
  align-items: center;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}
.hero .container { align-items: center; }
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  max-width: 700px;
}
.hero h1 {
  font-size: 2.2rem;
  color: #264653;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px #c7f2e680;
}
.hero p {
  font-size: 1.18rem;
  color: #56737D;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  margin-bottom: 18px;
}
@media (max-width: 700px) {
  .hero {
    padding: 34px 7px 32px 7px;
    min-height: 180px;
  }
  .hero h1 { font-size: 1.5rem; }
}

/* ========================================
   FEATURES SECTION & FLEX LAYOUTS
======================================== */
.features {
  background: #FAF3DD;
  border-radius: 24px;
}
.feature-grid,
.quick-recipe-grid,
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.feature-item,
.quick-recipe-item,
.category-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 26px 18px 22px 18px;
  background: #FFF4BA;
  border-radius: 18px;
  box-shadow: 0 2px 8px #e9c46a1e;
  min-width: 190px;
  flex: 1 1 218px;
  margin-bottom: 20px;
  transition: background 0.19s, box-shadow 0.19s;
}
.feature-item img,
.quick-recipe-item img,
.category-item img {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  margin-bottom: 3px;
}
.feature-item:hover,
.quick-recipe-item:hover,
.category-item:hover {
  background: #E2DDFD;
  box-shadow: 0 4px 24px #26465328;
}
.feature-item h3, .quick-recipe-item h3, .category-item h3 {
  margin-bottom: 6px;
  font-size: 1.21rem;
}
@media (max-width: 900px) {
  .feature-grid, .quick-recipe-grid, .category-grid {
    gap: 12px;
  }
  .feature-item, .quick-recipe-item, .category-item {
    min-width: 130px;
    flex: 1 0 160px;
    padding: 13px 9px 13px 11px;
  }
}
@media (max-width: 600px) {
  .feature-grid, .quick-recipe-grid, .category-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-item, .quick-recipe-item, .category-item {
    width: 100%;
    padding: 13px 11px 13px 12px;
    min-width: 0;
    flex-basis: auto;
  }
}

/* =========================================
   CARDS, PREVIEWS, AND FLEX GRIDS
========================================= */
.recipe-preview-grid,
.recipe-listing,
.article-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.recipe-card,
.article-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-radius: 17px;
  box-shadow: var(--shadow-sm);
  padding: 26px 20px 20px 20px;
  margin-bottom: 20px;
  gap: 11px;
  min-width: 230px;
  flex: 1 1 260px;
  transition: box-shadow 0.19s, background 0.16s;
}
.recipe-card h3, .article-preview h3 {
  font-size: 1.16rem;
  color: #264653;
  margin-bottom: 6px;
}
.recipe-card a, .article-preview a {
  color: #457B9D;
  font-size: 15px;
  font-weight: 500;
  margin-top: 3px;
  transition: color 0.18s;
}
.recipe-card a:hover, .article-preview a:hover {
  color: #E76F51;
  text-decoration: underline;
}
.recipe-card:hover, .article-preview:hover {
  box-shadow: 0 4px 18px #8fdde847;
  background: #E2DDFD;
}
@media (max-width: 900px) {
  .recipe-preview-grid, .recipe-listing, .article-preview-grid {
    gap: 14px;
  }
  .recipe-card, .article-preview {
    min-width: 135px;
    flex-basis: 0;
    padding: 15px 10px 12px 10px;
  }
}
@media (max-width: 600px) {
  .recipe-preview-grid, .recipe-listing, .article-preview-grid {
    flex-direction: column;
  }
  .recipe-card, .article-preview {
    width: 100%;
    min-width: 0;
    flex-basis: auto;
    border-radius: 13px;
  }
}

/* Badge, Tag, Filter, Pagination */
.badge, .tag, .filter {
  display: inline-block;
  font-size: 14px;
  background: #FFE3F0;
  color: #264653;
  padding: 5px 14px;
  border-radius: 15px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-weight: 500;
  transition: background 0.15s, color 0.13s;
}
.badge:hover, .tag:hover, .filter:hover {
  background: #E9C46A;
  color: #254359;
}
.pagination {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 20px 0 0 0;
  font-size: 15px;
  color: #264653;
}
.pagination span {
  padding: 4px 11px;
  border-radius: 7px;
  background: #E2DDFD;
  transition: background 0.15s;
}
.pagination span:hover {
  background: #C7F2E6;
}

.sorting-tools {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
  font-size: 15px;
}
.sorting-tools select {
  background: #E2DDFD;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  padding: 6px 10px;
  color: #264653;
  margin-left: 10px;
}

.quick-filter-buttons {
  display: flex;
  gap: 15px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.quick-filter-buttons a {
  background: #C7F2E6;
  color: #264653;
  border-radius: 16px;
  padding: 9px 22px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.16s, color 0.16s;
}
.quick-filter-buttons a:hover {
  background: #E9C46A;
  color: #264653;
}

/* ================================
   TESTIMONIALS
================================= */
.testimonials {
  background: #E2DDFD;
  border-radius: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  padding: 20px;
  max-width: 420px;
  color: #264653;
}
.testimonial-card .testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: #335;
  margin-bottom: 6px;
}
.testimonial-card .testimonial-user {
  font-size: 0.99rem;
  font-weight: 600;
  color: #264653;
}
.testimonial-card .testimonial-stars {
  color: #E9C46A;
  letter-spacing: 2px;
  font-size: 1.29rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.testimonial-card:not(:last-child) {
  margin-bottom: 22px;
}

/* Ensure high contrast for testimonial text */
.testimonial-card,
.testimonial-card > * {
  background: #fff;
  color: #264653;
}

@media (min-width: 700px) {
  .testimonials .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .testimonial-card {
    max-width: 100%;
    padding: 14px;
    border-radius: 12px;
  }
}

/* ================================
   CTA & CALL-TO-ACTION BANNERS
================================ */
.cta {
  background: linear-gradient(90deg, #FFE9E1 0%, #C7F2E6 100%);
  border-radius: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta .cta-button {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  min-width: 220px;
}
.cta h2 {
  margin-bottom: 12px;
}
.cta p {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #56737D;
}

/* ================================
   ABOUT / CONTACT / LEGAL SECTIONS
================================ */
.text-section {
  margin-bottom: 18px;
  font-size: 1.08rem;
  color: #264653;
}
.contact-info, .address-block, .phone-email-list, .opening-hours {
  margin-top: 9px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1rem;
  color: #264653;
}
.contact-info img,
.footer-contact img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
}
.contact-map {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 17px;
}
.opening-hours {
  font-size: 1rem;
  color: #56737D;
}
@media (max-width: 700px) {
  .contact-map {
    flex-direction: column;
    gap: 7px;
  }
}

.text-section ul, .about ul, .culture-notes ul, .tip-list {
  margin: 12px 0 14px 18px;
  padding-left: 16px;
  color: #264653;
}
.text-section li, .about li, .culture-notes li, .tip-list li {
  margin-bottom: 9px;
  font-size: 1rem;
}
.address-block strong, .phone-email-list strong, .opening-hours strong {
  font-weight: 600;
  color: #264653;
}


/* =====================================
   LISTS / ARTICLE PREVIEWS / FAQ
===================================== */
.article-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 19px;
}
.article-preview {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2.5px 9.5px #26465313;
  padding: 20px 16px 16px 16px;
  margin-bottom: 12px;
  flex: 1 1 260px;
}

.faq-accordion {
  background: #E2DDFD;
  border-radius: 12px;
  padding: 17px 20px;
  margin-top: 19px;
  font-size: 1rem;
  color: #264653;
  box-shadow: 0 2px 5px #e2ddfd31;
}
.faq-accordion h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 700;
}
.submit-tip-button {
  margin-top: 21px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* ===============================
   MISC: Badge Lists & Tag Clouds
=============================== */
.difficulty-badges, .tag-cloud, .filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 19px;
}
.tag-cloud {
  margin-top: 13px;
}

/* ===============================
   FOOTER
=============================== */
footer {
  margin-top: 70px;
  background: linear-gradient(90deg, #E2DDFD 0%, #C7F2E6 100%);
  box-shadow: var(--shadow-sm);
  padding: 48px 0 17px 0;
  width: 100%;
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 22px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 15.5px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  min-width: 170px;
}
.footer-menu a {
  color: #264653;
  padding: 3px 0;
  border-radius: 4px;
  transition: background 0.13s;
}
.footer-menu a:hover {
  background: #E9C46A;
  color: #264653;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7.5px;
  font-size: 15.5px;
  min-width: 210px;
  color: #264653;
}
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}
.footer-newsletter h3 {
  font-size: 1.17rem;
  font-family: 'Playfair Display', serif;
}
.footer-newsletter p {
  color: #264653;
  font-size: 15px;
  margin-bottom: 6px;
}
.footer-newsletter .cta-button {
  min-width: 150px;
  font-size: 1.01rem;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    padding: 0 7px;
  }
}

/* ===============================
   TYPOGRAPHY SCALE & COLORS
=============================== */
h1 { font-size: 2.35rem; margin-bottom: 14px; }
h2 { font-size: 1.52rem; margin-bottom: 8px; }
h3 { font-size: 1.13rem; margin-bottom: 5px; }
h4, h5, h6 { font-size: 1rem; }
@media (max-width: 700px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.14rem; }
}

/* ===============================
   FORM ELEMENTS / SEARCH BAR
=============================== */
.search-bar {
  margin: 18px 0 2px 0;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 8px 14px;
}
.search-bar input[type="search"] {
  border: none;
  background: transparent;
  outline: none;
  font-size: 1.1rem;
  width: 100%;
  color: #264653;
  padding: 10px 5px;
}
.search-bar input[type="search"]::placeholder {
  color: #a4dded;
}

/* ==================================
   RESPONSIVE FLEX ALIGNMENTS & GAPS
================================== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .recipe-preview-grid,
  .recipe-listing,
  .article-preview-grid,
  .feature-grid,
  .quick-recipe-grid,
  .category-grid {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 20px !important;
  }
}

/* ====================
   COOKIES BANNER & MODAL
==================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 4000;
  background: linear-gradient(90deg,#E2DDFD 0%, #FFF4BA 85%);
  color: #264653;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 9px;
  box-shadow: 0 -7px 25px #e2ddfd71;
  font-size: 1rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  transition: transform 0.32s cubic-bezier(.51,.01,.37,.99);
  transform: translateY(110%);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.cookie-banner.active {
  transform: translateY(0%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  margin-left: 19px;
  align-items: center;
}
.cookie-banner button {
  border: none;
  font-size: 16px;
  border-radius: 16px;
  padding: 7px 19px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 2px 10px #e2ddfd28;
  transition: background 0.17s, color 0.17s, box-shadow 0.15s;
  margin-right: 0.5em;
}
.cookie-accept {
  background: #E9C46A;
  color: #264653;
}
.cookie-accept:hover {
  background: #C7F2E6;
}
.cookie-reject {
  background: #E2DDFD;
  color: #264653;
}
.cookie-reject:hover {
  background: #FFE3F0;
}
.cookie-settings {
  background: #fff;
  color: #264653;
  border: 1.5px solid #E9C46A;
}
.cookie-settings:hover {
  background: #FFF4BA;
}

.cookie-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,70,83,0.14);
  z-index: 4100;
  display: none;
}
.cookie-modal-backdrop.active {
  display: block;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 48vh;
  transform: translate(-50%,-50%) scale(0.98);
  min-width: 340px; max-width: 98vw;
  background: #fff;
  border-radius: 16px;
  z-index: 4200;
  box-shadow: 0 7px 32px #26465326;
  padding: 32px 23px 23px 23px;
  font-size: 1.01rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  display: none;
  flex-direction: column;
  gap: 19px;
  transition: transform 0.21s cubic-bezier(.48,.03,.37,.99);
}
.cookie-modal.active {
  display: flex;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.17rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 10px 0;
}
.cookie-modal .cookie-category label {
  font-size: 1.0rem;
  color: #264653;
  font-weight: 500;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}
.cookie-modal .toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E2DDFD;
  border-radius: 24px;
  transition: background-color 0.18s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  background: #E9C46A;
}
.cookie-modal .toggle-slider:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s;
  box-shadow: 0 1px 4px #26465315;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider:before {
  left: 28px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 13px;
}
.cookie-modal .cookie-modal-actions button {
  font-size: 16px;
  padding: 7px 22px;
  border-radius: 14px;
}
.cookie-modal .cookie-accept { background: #E9C46A; }
.cookie-modal .cookie-reject { background: #E2DDFD; }

/* ================================
   ANIMATIONS / MICRO-INTERACTIONS
=============================== */
.cta-button, .main-nav a, .quick-filter-buttons a, .badge, .tag, .feature-item, .category-item, .recipe-card, .testimonial-card, .footer-menu a, .pagination span, .filter, .cookie-banner button {
  transition: all 0.18s cubic-bezier(.4,0,.28,1);
}
section, .section, .feature-grid > *, .testimonial-card, .cookie-banner, .cta, .article-preview {
  transition: box-shadow 0.22s, background 0.18s;
}

/* ================================
   UTILITIES & HELPERS
================================ */
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.flex {
  display: flex !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}
.align-center {
  align-items: center !important;
}
.justify-center {
  justify-content: center !important;
}
.gap-20 {
  gap: 20px !important;
}

/* ================================
   PRINT OPTIMIZATION (optional)
=============================== */
@media print {
  header, nav, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .section, .hero, .cta, .features, .testimonials { box-shadow: none; background: #fff !important; }
}
