/* =========================================================
   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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #fff;
  color: #222;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
strong { font-weight: bold; }
button, input, select {
  font: inherit;
  outline: none;
}
/* =========================================================
   BASE BRANDING, FONTS, COLORS
   ========================================================= */
:root {
  --primary: #A73D33;
  --primary-dark: #83251C;
  --secondary: #F7D9B0;
  --surface: #fff;
  --accent: #245636;
  --accent-light: #326148;
  --shadow: rgba(167, 61, 51, 0.12);
  --border-radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 7px;
  --max-width: 1200px;
  --color-text: #222;
  --color-light-text: #fff;
  --color-mid: #5E5E5E;
  --color-muted: #B8B8B8;
  --shadow-lg: 0 8px 32px 0 rgba(167,61,51,.15);
  --shadow-sm: 0 4px 16px 0 rgba(50,97,72,.10);
  --grad-hero: linear-gradient(120deg, #f7d9b0 0%, #fff 60%, #a73d33 110%);
  --grad-accent: linear-gradient(90deg, #a73d33 0%, #326148 100%);
}
body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  background: var(--surface);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.18;
}
h1 { font-size: 2.8rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
p, ul, li { font-size: 1rem; }

.subheadline {
  font-size: 1.18rem;
  margin-bottom: 28px;
  line-height: 1.5;
  color: var(--accent);
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
header {
  width: 100%;
  background: #fff9f4;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 16px 0 var(--shadow);
}
header .container {
  min-height: 76px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
header img {
  height: 52px;
  margin-right: 16px;
}
nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
nav a {
  color: var(--primary);
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  padding: 10px 2px;
  border-radius: var(--radius-xs);
  transition: background .17s, color .17s;
  position: relative;
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  border-radius: var(--radius-xs);
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 110;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff9f4;
  box-shadow: 0 2px 24px 0 var(--shadow-lg);
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 200;
  padding: 0;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 16px 30px 0 0;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 200;
}
.mobile-menu-close:hover {
  background: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 50px 32px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 13px 0;
  width: 100%;
  border-radius: var(--radius-xs);
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}

@media (max-width: 1024px) {
  nav {
    gap: 14px;
  }
  header img {
    height: 44px;
  }
}

@media (max-width: 850px) {
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* =========================================================
   HERO & SECTIONS
   ========================================================= */
.section,
.hero,
.hero-ricette,
.hero-world,
.hero-cooking-tips,
.hero-contact,
.thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--grad-hero);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
}

.hero .container, .hero-ricette .container, .hero-world .container, .hero-cooking-tips .container,
.hero-contact .container, .thank-you .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-accent);
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.16rem;
  padding: 15px 36px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 20px;
  letter-spacing: 0.03em;
  border-bottom: 3px solid var(--primary-dark);
  transition: background 0.25s, transform 0.18s, box-shadow 0.17s;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 28px 0 var(--shadow-lg);
}

/* =========================================================
   FLEX LAYOUTS - Section Patterns
   ========================================================= */
.features, .services-preview, .about-intro, .newsletter-signup, .about-us, .mission, .testimonials, .recipe-categories, .featured-recipes, .world-cuisines, .curiosities, .tips-grid, .faq, .hero, .hero-ricette, .hero-world, .hero-cooking-tips, .hero-contact, .services-list, .services-cta, .contact-info, .faq-contact, .privacy-policy, .gdpr, .cookie-policy, .terms-of-use {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--border-radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.features .content-wrapper,
.services-preview .content-wrapper,
.about-intro .content-wrapper,
.newsletter-signup .content-wrapper,
.about-us .content-wrapper,
.mission .content-wrapper,
.testimonials .content-wrapper,
.recipe-categories .content-wrapper,
.featured-recipes .content-wrapper,
.world-cuisines .content-wrapper,
.curiosities .content-wrapper,
.tips-grid .content-wrapper,
.faq .content-wrapper,
.services-list .content-wrapper,
.services-cta .content-wrapper,
.contact-info .content-wrapper,
.faq-contact .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* Flexbox alignment/section patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 24px 22px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.22s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 var(--shadow-lg);
  transform: translateY(-4px) scale(1.03);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 18px 0 var(--shadow);
  color: #222;
  font-size: 1.08rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card blockquote {
  margin: 0;
  font-style: italic;
  color: var(--color-text);
  flex: 1;
}
.testimonial-card cite {
  font-size: 0.98rem;
  font-style: normal;
  color: var(--accent);
  padding-left: 8px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 var(--shadow-lg);
  transform: translateY(-2px);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  padding: 36px 28px 24px 28px;
  box-shadow: 0 2px 16px 0 var(--shadow);
  min-width: 230px;
  max-width: 330px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .15s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 8px #ffe5d8);
}
.feature-item:hover {
  box-shadow: 0 8px 28px 0 var(--shadow-lg);
  background: #fff9f4;
  transform: translateY(-2px) scale(1.02);
}

.feature-grid,
.cuisine-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: var(--secondary);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-sm);
  padding: 28px 20px 18px 20px;
  min-width: 200px;
  max-width: 290px;
  margin-bottom: 20px;
  font-size: 1.07rem;
  transition: box-shadow 0.2s, background 0.17s;
}
.service-item strong {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.06rem;
}
.service-item:hover {
  background: #fff9f4;
  box-shadow: 0 7px 24px 0 var(--shadow-lg);
}
.recipe-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.recipe-cards article {
  background: var(--secondary);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-sm);
  padding: 28px 18px 18px 18px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.recipe-cards article:hover {
  box-shadow: 0 6px 24px 0 var(--shadow-lg);
  background: #fff9f4;
}
.tip-category {
  background: var(--secondary);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-sm);
  padding: 26px 18px 16px 18px;
  min-width: 220px;
  max-width: 315px;
  margin-bottom: 20px;
}
.cuisine-item {
  background: var(--secondary);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-sm);
  padding: 28px 16px 18px 20px;
  min-width: 200px;
  max-width: 320px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
}
.cuisine-item:hover {
  background: #fff9f4;
  box-shadow: 0 8px 28px 0 var(--shadow-lg);
}
.food-traditions {
  background: var(--secondary);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-sm);
  padding: 28px 20px 18px 22px;
  margin-bottom: 20px;
}
.featured-countries {
  background: #fff9f4;
  border-radius: var(--radius-xs);
  box-shadow: 0 1px 12px 0 var(--shadow);
  padding: 26px 18px 14px 20px;
}
.chef-notes {
  background: #fff9f4;
  border-radius: var(--radius-xs);
  box-shadow: 0 1px 12px 0 var(--shadow);
  padding: 22px 14px 12px 14px;
}
.pricing-table {
  background: #fff9f4;
  border-radius: var(--radius-xs);
  box-shadow: 0 1px 12px 0 var(--shadow);
  padding: 22px 16px 14px 16px;
}
.contact-short {
  background: #fff9f4;
  border-radius: var(--radius-xs);
  box-shadow: 0 1px 10px 0 var(--shadow);
  padding: 14px 14px 10px 14px;
}
.next-steps {
  background: #fff9f4;
  border-radius: var(--radius-xs);
  padding: 18px 13px 11px 14px;
  margin-bottom: 16px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
  color: var(--color-mid);
}
.text-section h3 { color: var(--primary); }
.text-section ul {
  list-style: disc inside;
  margin-left: 16px;
  padding-left: 0;
  color: var(--accent);
  font-size: 1rem;
  margin-top: 9px;
}
.text-section ul li {
  margin-bottom: 8px;
  color: var(--color-mid);
  font-weight: 400;
}

.filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.filters label {
  font-weight: 500;
  color: var(--accent);
  font-size: 1rem;
}
.filters select {
  border-radius: var(--radius-xs);
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 16px;
  font-size: 1rem;
  color: var(--primary);
  margin-left: 4px;
  transition: border 0.14s;
}
.filters select:focus {
  border-color: var(--primary);
}

input[type="text"] {
  padding: 12px 16px;
  border: 1.5px solid #e3c4a2;
  border-radius: var(--radius-xs);
  font-size: 1rem;
  transition: border 0.14s;
  width: 100%;
  max-width: 385px;
  margin-bottom: 17px;
}
input[type="text"]:focus {
  border-color: var(--primary);
}

/***** FAQ List *****/
.faq-list {
  background: #fff9f4;
  border-radius: var(--radius-xs);
  box-shadow: 0 2px 16px 0 var(--shadow);
  padding: 34px 20px 16px 24px;
  margin-bottom: 16px;
}
.faq-list ul {
  margin-left: 8px;
  color: var(--color-mid);
  font-size: 1rem;
}
.faq-list li {
  margin-bottom: 10px;
  padding-left: 0;
}
.faq-list strong {
  color: var(--primary);
  font-weight: bold;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #fff9f4;
  padding: 42px 0 18px 0;
  font-size: 1rem;
  color: var(--primary);
  box-shadow: 0 -2px 20px 0 var(--shadow-sm);
  position: relative;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 54px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
.footer-nav a {
  color: var(--primary);
  transition: color 0.17s;
  font-weight: 500;
  margin-bottom: 3px;
}
.footer-nav a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact li {
  color: var(--color-mid);
  font-size: 0.99rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  filter: grayscale(40%) brightness(1.2);
}
.copyright {
  text-align: center;
  color: #b6a18b;
  font-size: 0.92rem;
}

/* =========================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 32px 0 var(--shadow);
  padding: 22px 18px 18px 18px;
  z-index: 999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(120px);
  transition: opacity 0.25s, transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner .cookie-text {
  color: var(--color-mid);
  flex: 1 1 0px;
  min-width: 180px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  border: none;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 18px;
  margin: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.14s;
  box-shadow: 0 1px 8px 0 var(--shadow-sm);
}
.cookie-btn.accept {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.accept:hover {
  background: var(--accent);
}
.cookie-btn.reject {
  background: #fff9f4;
  color: var(--primary);
  border: 1px solid #efd1bb;
}
.cookie-btn.reject:hover {
  background: var(--primary);
  color: #fff;
  border: none;
}
.cookie-btn.settings {
  background: var(--secondary);
  color: var(--accent);
  border: 1px solid #ecd2a7;
}
.cookie-btn.settings:hover {
  background: var(--accent-light);
  color: #fff;
  border: none;
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(167,61,51,0.07);
  z-index: 1002;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.show {
  display: flex;
  animation: fadeIn 0.26s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  padding: 34px 26px 26px 26px;
  border-radius: var(--border-radius);
  box-shadow: 0 12px 42px 0 var(--shadow-lg);
  max-width: 365px;
  min-width: 285px;
  z-index: 1003;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: openModal .17s cubic-bezier(0.5,1,0.25,1);
}
@keyframes openModal {
  0% { opacity: 0; transform: scale(0.95) translateY(60px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}
.cookie-category label {
  font-weight: bold;
  color: var(--accent);
}
.cookie-category .toggle {
  display: inline-block;
  width: 40px;
  height: 24px;
  background: #eee;
  border-radius: 12px;
  position: relative;
  transition: background 0.18s;
}
.cookie-category .toggle input {
  display: none;
}
.cookie-category .toggle::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 5px 0 #e4b984;
  transition: transform 0.18s;
}
.cookie-category .toggle input:checked + span {
  background: var(--primary);
}
.cookie-category .toggle input:checked + span::before {
  transform: translateX(16px);
  background: var(--accent);
}
.cookie-category .category-desc {
  color: var(--color-muted);
  font-size: 0.97rem;
  margin-left: 8px;
}
/* Essential cookies always enabled */
.cookie-category.essential .toggle {
  pointer-events: none; opacity: 0.5;
}

/*****************
   RESPONSIVE
*****************/
@media (max-width: 1000px) {
  .container {
    max-width: 960px;
    padding: 0 10px;
  }
  .feature-item,
  .cuisine-item,
  .tip-category,
  .card,
  .service-item {
    min-width: 167px;
    max-width: 100%;
  }
  .footer-logo img {
    width: 44px;
  }
}
@media (max-width: 800px) {
  .footer-contact ul { font-size: 0.92rem; }
  .footer-nav { font-size: 0.95rem; }
  .container {
    max-width: 99vw;
    padding: 0 2vw;
  }
  .content-grid, .feature-grid, .cuisine-grid, .service-list, .recipe-cards {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.36rem; }
  .container {
    padding: 0 7px;
    max-width: 99vw;
  }
  .footer-logo img {
    width: 36px;
  }
  .footer-contact li { font-size: 0.92rem; }
  .footer-contact ul { gap: 5px; }
  .footer-nav { gap: 5px; }
  .content-wrapper {
    gap: 18px;
  }
  .section,
  .hero,
  .hero-ricette,
  .hero-world,
  .hero-cooking-tips,
  .hero-contact,
  .thank-you,
  .features,
  .services-preview,
  .about-intro,
  .newsletter-signup,
  .about-us,
  .mission,
  .testimonials,
  .recipe-categories,
  .featured-recipes,
  .world-cuisines,
  .curiosities,
  .tips-grid,
  .faq,
  .services-list,
  .services-cta,
  .contact-info,
  .faq-contact,
  .privacy-policy,
  .gdpr,
  .cookie-policy,
  .terms-of-use {
    padding: 26px 4px;
    margin-bottom: 36px;
    border-radius: var(--radius-sm);
  }
  .card,
  .feature-item,
  .service-item,
  .cuisine-item,
  .tip-category {
    min-width: 97vw;
    max-width: 99vw;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: var(--radius-sm);
  }
  .card-container, .feature-grid, .cuisine-grid, .service-list, .recipe-cards {
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 7px;
    padding: 17px 8px;
    border-radius: var(--radius-sm);
  }
  .filters {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .footer-contact, .footer-logo, .footer-nav {
    min-width: 100%;
    text-align: left;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
}
@media (max-width: 600px) {
  .faq-list, .featured-countries, .chef-notes, .pricing-table, .contact-short, .next-steps {
    padding: 13px 4px 7px 10px;
    border-radius: var(--radius-xs);
  }
  .footer-logo img {
    width: 34px;
  }
  .footer-contact li { font-size: 0.87rem; }
  h1 { font-size: 1.35rem; margin-bottom: 10px; }
  h2 { font-size: 1.13rem; margin-bottom: 6px; }
  h3 { font-size: 1rem; }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 14px 5px 12px 5px;
    font-size: 0.97rem;
    border-top-left-radius: var(--radius-sm);
    border-top-right-radius: var(--radius-sm);
  }
  .cookie-modal {
    padding: 18px 7px 14px 8px;
    max-width: 95vw;
  }
}
@media (max-width: 480px) {
  .hero .container, .hero-ricette .container, .hero-world .container, .hero-cooking-tips .container, .hero-contact .container, .thank-you .container {
    padding: 0 2px;
  }
}

/***** Responsive for text-image-section *****/
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/***** Focus & Accessibility *****/
a, button, input, select {
  outline: none;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/***** Micro-interactions & Animations *****/
.cta-button, .card, .feature-item, .service-item, .recipe-cards article, .testimonials-card, .testimonial-card {
  will-change: transform, box-shadow;
}


/* END OF CSS */
