/* ==== CSS RESET & BASE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23404a;
  background: #F8FAFB;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}

a {
  color: #E76F51;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #2a9d8f;
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

/* ==== COLOR PALETTE - SOFT PASTEL ADAPTATION ==== */
:root {
  --color-primary: #264653;
  --color-secondary: #E76F51;
  --color-accent: #F9F9F9;
  --color-bg: #F8FAFB;
  --color-pastel-blue: #B2D8EA;
  --color-pastel-mint: #C5E8D7;
  --color-pastel-peach: #FFDBC4;
  --color-pastel-pink: #F7CAD7;
  --color-pastel-yellow: #FFF6D7;
  --color-card-shadow: rgba(38, 70, 83, 0.08);
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
h1 { font-size: 2.2rem; line-height: 1.15; }
h2 { font-size: 1.6rem; line-height: 1.2; }
h3 { font-size: 1.2rem; line-height: 1.3; }
h4 { font-size: 1.1rem; }

p, li, span, th, td {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}

b, strong {
  font-weight: 700;
  color: #E76F51;
}

/* ==== LAYOUT & SPACING UTILITIES ==== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--color-card-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  flex: 1 1 300px;
  min-width: 260px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: 0 8px 28px var(--color-card-shadow);
  transform: translateY(-3px) scale(1.01);
}
.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;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* ==== BRAND & HEADER ==== */
.logo {
  display: flex;
  align-items: center;
  height: 54px;
}
header {
  background: linear-gradient(90deg, #F7CAD7 0%, #C5E8D7 100%);
  box-shadow: 0 2px 16px var(--color-card-shadow);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 72px;
  position: relative;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 7px 16px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  background: transparent;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #FFF6D7;
  color: #E76F51;
}
.main-nav .cta {
  background: #E76F51;
  color: #fff;
  font-weight: 700;
  border-radius: 20px;
  box-shadow: 0 2px 8px var(--color-card-shadow);
  padding: 9px 22px;
  transition: background 0.25s, color 0.25s, box-shadow 0.18s;
}
.main-nav .cta:hover,
.main-nav .cta:focus {
  background: #264653;
  color: #fff;
  box-shadow: 0 6px 20px var(--color-card-shadow);
}

.mobile-menu-toggle {
  display: none;
  background: #E76F51;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 45;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #264653;
  color: #fff;
  box-shadow: 0 4px 16px var(--color-card-shadow);
}
@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(124deg, #FFF6D7 0%, #B2D8EA 90%);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.43,0.15,0.17,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-shadow: 0 6px 48px var(--color-card-shadow);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #E76F51;
  color: #fff;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin: 24px 20px 0 0;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #264653;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 40px 0 40px;
  gap: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: var(--color-primary);
  padding: 14px 0;
  border-bottom: 1px solid rgba(38, 70, 83, 0.10);
  border-radius: 0;
  text-align: left;
  transition: color 0.2s, background 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E76F51;
  background: #F7CAD7;
}

@media (max-width: 600px) {
  .mobile-nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ==== HERO SECTION ==== */
.hero {
  padding: 56px 0 36px 0;
  background: linear-gradient(145deg, #FFF6D7 10%, #F7CAD7 90%);
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.hero p {
  font-size: 1.2rem;
  color: #4d5e67;
  max-width: 720px;
  margin-bottom: 22px;
}
.hero .cta {
  margin-top: 18px;
}

@media (max-width: 700px) {
  .hero {
    padding-top: 38px;
    padding-bottom: 16px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
}

/* ==== FEATURE SECTION ==== */
.features {
  background: #F9F9F9;
}
.features .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  margin-top: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}
.features .content-wrapper ul li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--color-card-shadow);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 220px;
  flex: 1 1 220px;
}
.features .content-wrapper ul img {
  width: 32px; height: 32px;
}

/* ==== HIGHLIGHTS & RECIPE PREVIEW ==== */
.highlights {
  background: #FFF6D7;
}
.recipe-list-preview {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 18px 0 22px 0;
}
.recipe-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px var(--color-card-shadow);
  padding: 26px 20px 20px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.22s;
  position: relative;
}
.recipe-card h3 {
  color: #E76F51;
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.recipe-card p {
  flex: 1;
  color: #33454a;
}
.recipe-card a {
  margin-top: 8px;
  font-weight: 600;
  color: #264653;
  text-decoration: underline;
  align-self: flex-start;
  transition: color 0.2s;
}
.recipe-card a:hover, .recipe-card a:focus {
  color: #E76F51;
}
.recipe-card:hover {
  box-shadow: 0 8px 32px var(--color-card-shadow);
  transform: translateY(-2px) scale(1.01);
}

/* ==== CATEGORY FILTER AND SELECT ==== */
.category-filter {
  margin: 34px 0 22px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.category-filter select {
  padding: 7px 20px;
  border-radius: 10px;
  border: 1px solid #B2D8EA;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: var(--color-primary);
  outline: none;
  transition: box-shadow 0.16s;
}
.category-filter select:focus {
  box-shadow: 0 0 0 3px #B2D8EA44;
}
.see-all-link {
  display: inline-block;
  color: #264653;
  font-weight: 600;
  border-radius: 16px;
  padding: 7px 24px;
  background: #F7CAD7;
  transition: background 0.15s, color 0.18s;
}
.see-all-link:hover, .see-all-link:focus {
  background: #E76F51;
  color: #fff;
}

/* ==== TESTIMONIALS ==== */
.testimonial {
  background: linear-gradient(90deg, #B2D8EA 50%, #FFF6D7 100%);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px var(--color-card-shadow);
  padding: 28px 24px 18px 24px;
  max-width: 340px;
  flex: 1 1 200px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px #b2d8ea55;
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  color: #264653;
  font-size: 1.07rem;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.05rem;
  color: #145566;
}
.testimonial-info .name {
  font-weight: 600;
  color: #E76F51;
}
.testimonial-info .stars {
  color: #FFD166;
  font-size: 1.12em;
  letter-spacing: 1.5px;
  margin-left: 7px;
}

/* ==== CTA SECTION ==== */
.cta-section {
  background: linear-gradient(95deg, #F7CAD7 0%, #FFF6D7 100%);
  text-align: center;
}
.cta-section h2 {
  font-size: 1.6rem;
}
.cta-section p {
  color: #385169;
}
.cta-section .cta {
  margin-top: 12px;
}

/* ==== GENERIC BUTTONS & CTA ==== */
.cta {
  display: inline-block;
  background: #E76F51;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 34px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 3px 14px var(--color-card-shadow);
  margin-top: 10px;
  transition: background 0.2s, color 0.2s, transform 0.13s, box-shadow 0.16s;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-align: center;
}
.cta:hover, .cta:focus {
  background: #264653;
  color: #fff;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 8px 28px var(--color-card-shadow);
}

/* ==== LISTINGS, CATEGORY & RECIPE CARD GRIDS ==== */
.recipe-cards-grid, .seasonal-recipe-cards, .category-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.category-cards {
  margin: 22px 0;
}
.category-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px var(--color-card-shadow);
  padding: 22px 20px 22px 20px;
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.category-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.09rem;
  color: #264653;
}
.category-card img {
  width: 28px;
  height: 28px;
}
.category-card:hover {
  box-shadow: 0 8px 36px #f7cad7a0;
  transform: translateY(-2px) scale(1.01);
}

.seasonal-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.seasonal-feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px var(--color-card-shadow);
  padding: 18px 18px 14px 18px;
  flex: 1 1 200px;
  min-width: 160px;
  max-width: 320px;
  margin-bottom: 20px;
}
.current-season-tips {
  background: #B2D8EA;
  border-radius: 15px;
  margin-top: 32px;
  padding: 16px 22px;
  color: #264653;
}
.current-season-tips h3 {
  margin-bottom: 6px;
}

/* ==== ARTICLE & LISTING SECTIONS ==== */
.articles {
  background: #F7CAD7;
}
.tip-list {
  list-style: none;
  margin-bottom: 16px;
}
.tip-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px #f7cad792;
  margin-bottom: 22px;
  padding: 20px 20px 16px 20px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.tip-list li h3 {
  color: #264653;
  font-size: 1.11rem;
  margin-bottom: 4px;
}
.tip-list li:hover { box-shadow: 0 6px 24px #b2d8ead4; transform: scale(1.015); }

.expert-tips {
  background: #B2D8EA;
  border-radius: 14px;
  padding: 16px 22px;
  color: #264653;
  margin-bottom: 18px;
}
.quick-guides {
  background: #FFDBC4;
  border-radius: 14px;
  padding: 15px 20px;
  color: #264653;
}
.quick-guides ul {
  margin-top: 8px;
  list-style: disc inside none;
}
.quick-guides li {
  margin-left: 16px;
  margin-bottom: 2px;
}

/* ==== LEGAL SECTIONS ==== */
.legal {
  background: #F9F9F9;
}
.legal h1, .legal h2, .legal h3 {
  color: #264653;
}
.legal .text-section {
  background: #fff;
  border-radius: 18px;
  padding: 34px 24px 22px 24px;
  box-shadow: 0 2px 14px var(--color-card-shadow);
  margin-bottom: 36px;
}
.legal ul {
  margin: 12px 0 18px 22px;
  list-style: disc inside;
  color: #264653;
}
.legal li {
  margin-bottom: 6px;
}

/* ==== ABOUT PAGE ==== */
.about, .values {
  background: #FFF6D7;
}
.value-list {
  margin: 18px 0 14px 20px;
  list-style: disc inside;
  color: #264653;
}
.value-list li {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 11px 19px 9px 19px;
  box-shadow: 0 2px 8px #f7cad746;
}
.team-introduction {
  background: #C5E8D7;
  border-radius: 13px;
  padding: 15px 20px;
  color: #264653;
}

/* ==== CONTACT PAGE ==== */
.contact {
  background: #F7CAD7;
}
.address-block, .contact-details, .opening-hours {
  margin-bottom: 13px;
}
.contact-details span, .address-block span, .opening-hours span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: #264653;
}
.contact-details img, .address-block img, .opening-hours img {
  width: 23px;
  height: 23px;
  display: inline-block;
}

/* ==== PAGINATION ==== */
.pagination {
  display: flex;
  gap: 13px;
  justify-content: flex-start;
  margin: 27px 0 12px 0;
}
.pagination a {
  background: #fff;
  border-radius: 11px;
  color: #264653;
  padding: 9px 15px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.13s, color 0.13s;
  border: 1px solid #B2D8EA;
}
.pagination a.active, .pagination a:hover, .pagination a:focus {
  background: #E76F51;
  color: #fff;
  border-color: #E76F51;
}

/* ==== FORMS ==== */
input[type="search"],
input[type="text"],
input[type="email"],
input[type="password"],
textarea, select {
  border-radius: 12px;
  border: 1px solid #B2D8EA;
  padding: 12px 17px;
  margin-bottom: 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #264653;
  transition: border .18s, box-shadow .18s;
  width: 100%;
  outline: none;
}
input[type="search"]:focus, input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: #E76F51;
  box-shadow: 0 0 0 2px #FFDBC470;
}

/* ==== FOOTER ==== */
footer {
  background: linear-gradient(90deg, #B2D8EA 50%, #FFF6D7 100%);
  padding: 38px 0 20px 0;
  margin-top: 68px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  font-size: 1.01rem;
  color: #264653;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 6px 13px;
  border-radius: 7px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F7CAD7;
  color: #E76F51;
}
footer .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 38px;
  color: #264653;
  align-items: flex-start;
}
footer .contact-details span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 220px;
}
.copyright {
  font-size: 0.96rem;
  color: #265364;
  opacity: 0.74;
  margin-top: 11px;
  text-align: left;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .card-container,
  .content-grid,
  .recipe-cards-grid,
  .category-cards,
  .seasonal-recipe-cards {
    gap: 16px;
  }
}
@media (max-width: 780px) {
  .footer-nav {
    flex-direction: column;
    gap: 9px;
  }
  .footer-nav a {
    padding-left: 10px;
    padding-right: 10px;
  }
  .card-container,
  .content-grid,
  .recipe-cards-grid,
  .category-cards,
  .seasonal-recipe-cards,
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 540px) {
  .footer-nav {
    gap: 8px;
  }
  .footer-nav a {
    font-size: 0.96rem;
    padding: 3px 8px;
  }
  footer .contact-details {
    gap: 9px 0;
    flex-direction: column;
  }
}

/* ==== COOKIE CONSENT ==== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: linear-gradient(90deg, #FFF6D7 10%, #F7CAD7 100%);
  box-shadow: 0 -6px 24px #26465324;
  z-index: 2000;
  padding: 25px 12px 19px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-family: 'Roboto', sans-serif;
  font-size: 1.08rem;
  color: #435b61;
  opacity: 1;
  transform: translateY(0);
  transition: transform .35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button,
.cookie-banner .cookie-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  padding: 10px 22px;
  background: #E76F51;
  color: #fff;
  box-shadow: 0 1px 6px #26465318;
  cursor: pointer;
  font-size: 1rem;
  margin-left: 0;
  margin-right: 0;
  transition: background 0.2s, color 0.18s, box-shadow 0.14s;
}
.cookie-banner .cookie-settings {
  background: #264653;
  color: #fff;
  margin-left: 7px;
}
.cookie-banner button:hover,.cookie-banner button:focus,.cookie-banner .cookie-settings:hover,.cookie-banner .cookie-settings:focus {
  background: #2a9d8f;
  color: #fff;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(38,70,83,0.3);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.33s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 28px 28px;
  width: 98vw;
  max-width: 420px;
  box-shadow: 0 10px 60px #26465330;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23404a;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-pop-in 0.35s cubic-bezier(0.3,0.8,0.25,1);
}
@keyframes cookie-pop-in {
  0% { transform: scale(0.93) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  color: #264653;
  margin-bottom: 6px;
}
.cookie-modal-content .category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 1.07rem;
  border-bottom: 1px solid #B2D8EA33;
  color: #264653;
}
.cookie-modal-content .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal-content .switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}
.cookie-modal-content .switch input {
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.cookie-modal-content .slider {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #B2D8EA;
  border-radius: 22px;
  transition: background 0.20s;
}
.cookie-modal-content .switch input:checked + .slider {
  background-color: #E76F51;
}
.cookie-modal-content .slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s;
}
.cookie-modal-content .switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal-content .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}
.cookie-modal-content .cookie-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 18px;
  background: #E76F51;
  color: #fff;
  border: none;
  box-shadow: 0 1px 6px #26465318;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-modal-content .cookie-actions button.cancel {
  background: #264653;
  color: #fff;
}
.cookie-modal-content .cookie-actions button:hover, 
.cookie-modal-content .cookie-actions button:focus {
  background: #2a9d8f;
}
.cookie-modal-content .close-modal {
  position: absolute;
  top: 13px;
  right: 13px;
  font-size: 1.3rem;
  background: none;
  color: #264653;
  border: none;
  cursor: pointer;
  transition: color 0.17s;
  border-radius: 50%;
}
.cookie-modal-content .close-modal:hover,
.cookie-modal-content .close-modal:focus {
  background: #F7CAD7;
  color: #E76F51;
}

/* ==== UTILITY CLASSES ==== */
@media (max-width: 600px) {
  .container { padding: 0 6px; }
  .card,
  .category-card,
  .recipe-card,
  .testimonial-card {
    padding-left: 7vw;
    padding-right: 7vw;
    min-width: unset;
    max-width: 100%;
  }
  .cookie-modal-content { padding: 18px 7vw; }
  .recipe-list-preview, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
}

/* ==== ACCESSIBILITY ==== */
*:focus {
  outline: 2px solid #E76F51;
  outline-offset: 2px;
}

/* ==== THANK YOU / CONFIRMATION SECTION ==== */
.confirmation {
  background: #C5E8D7;
  padding: 48px 0 38px 0;
}
.confirmation h1 {
  color: #264653;
  font-size: 2rem;
  margin-bottom: 12px;
  text-align: center;
}
.confirmation p {
  color: #264653;
  text-align: center;
}
.confirmation .cta {
  margin: 32px auto 0 auto;
  display: inline-block;
}
