/* =================================================================
   RESET & NORMALIZE - 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;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F7F8FA;
  color: #274730;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

*, *:before, *:after { box-sizing: inherit; }
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, button:focus {
  outline: 2px solid #9ED6C4;
  outline-offset: 2px;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* =================================================================
  CSS VARIABLES -- Soft Pastel Palette and Brand
  ================================================================= */
:root {
  /* Brand & Pastels */
  --primary: #25613D;        /* Brand Primary */
  --primary-dark: #1b472c;
  --secondary: #F2F7F2;      /* Brand secondary BG */
  --accent: #FFB74D;         /* Pastel orange accent */
  --accent-dark: #ff9800;
  --pastel-blue: #ade7f5;
  --pastel-mint: #d7ffef;
  --pastel-pink: #ffecfb;
  --pastel-lavender: #f3e8ff;
  --muted-grey: #eaeff3;
  --soft-grey: #eef2f4;
  --shadow: rgba(31, 61, 42, 0.09);

  --font-display: 'Montserrat', 'Open Sans', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* =================================================================
  TYPOGRAPHY
  ================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #285032;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, ul, ol, strong, span {
  font-family: var(--font-body);
  font-weight: 400;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

/* Soft, round headers for dreamy effect */
h1, h2, h3 {
  border-radius: 8px;
  /* No background for headers, white space rules instead! */
}

/* global link highlight */
a:hover, a:active {
  color: var(--accent-dark);
  text-decoration: underline dotted;
}

/* =================================================================
  CONTAINERS, LAYOUTS & SPACING (FLEX ONLY!)
  ================================================================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (min-width: 769px) {
  .content-wrapper {
    gap: 32px;
  }
  .section {
    padding: 64px 0;
  }
}

/* CARD CONTAINERS, GRID FLEX UTILITY CLASSES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px var(--shadow);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(63, 98, 86, 0.11);
  transform: translateY(-4px) scale(1.015);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--pastel-mint);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--shadow);
  margin-bottom: 20px;
  color: #1b472c;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Special flex classes for page blocks */
.feature-grid, .principle-cards, .team .content-wrapper, .blog-post-cards, .blog-card-list, .testimonial-slider, .testimonial-list,
.steps-list, .benefits-grid, .pricing-table, .recipe-list  {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .feature-grid, .principle-cards, .blog-card-list, .testimonial-slider, .testimonial-list, .blog-post-cards, .benefits-grid, .pricing-table, .team .content-wrapper, .recipe-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .principle-cards, .blog-card-list, .testimonial-slider, .testimonial-list, .blog-post-cards, .benefits-grid, .pricing-table, .team .content-wrapper, .recipe-list {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
.text-section {
  flex: 2;
  font-size: 1.04rem;
}

/* Adjust spacing for every main section */
main section {
  margin-bottom: 64px;
  width: 100%;
}
main section:last-child {
  margin-bottom: 0;
}

/* =================================================================
  BRANDING & SOFT PASTEL BACKGROUNDS
  ================================================================= */
.hero {
  background: linear-gradient(115deg, var(--pastel-mint) 85%, var(--pastel-blue) 100%);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 2px 24px 0 var(--shadow);
  min-height: 290px;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 0 1px 0 rgba(255,255,255,0.12);
}
@media (max-width: 600px) {
  .hero {
    border-radius: 0 0 28px 28px;
    min-height: 180px;
    padding-bottom: 22px;
  }
  .hero h1 { font-size: 2rem; }
}

.section, .callout, .about, .services, .newsletter-signup, .faq, .blog-preview, .blog-list, .team, .mission, .confirmation, .contact-short {
  background: var(--secondary);
  border-radius: 28px;
  box-shadow: 0 2px 10px var(--shadow);
}

.callout.menu-abo {
  background: linear-gradient(90deg, var(--pastel-lavender) 72%, var(--pastel-pink) 100%);
  box-shadow: 0 6px 32px 0 rgba(193, 178, 255, 0.07);
}

/* Card styles: features/benefits/pricing/testimonial/blog/newsletter-list */
.feature-grid > div, .principle-cards > div, .benefits-grid > div, .pricing-table > div, .blog-card, .recipe-card, .team-member-profile {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--shadow);
  padding: 28px 20px;
  min-width: 220px;
  min-height: 180px;
  flex: 1 1 240px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.feature-grid > div:hover, .blog-card:hover, .recipe-card:hover, .testimonial-card:hover, .team-member-profile:hover {
  box-shadow: 0 8px 36px rgba(116,195,173,0.14);
  transform: translateY(-5px) scale(1.018);
}
.pricing-table .highlight {
  background: var(--pastel-blue);
  box-shadow: 0 5px 30px 0 rgba(155,205, 235, 0.12);
  border: 2px solid var(--accent);
}

.testimonial-card {
  background: var(--pastel-mint);
  color: #174428;
  min-width: 220px;
  max-width: 380px;
  font-size: 1.09rem;
  box-shadow: 0 3px 18px 0 rgba(25,66,55,0.06);
}
.testimonial-card strong {
  font-size: 1em;
  color: var(--accent-dark);
  letter-spacing: 0.005em;
}

/* Special: blog cards & blog categories */
.blog-card {
  background: var(--pastel-pink);
  border-bottom: 3px solid var(--accent);
  font-size: 1.06rem;
}
.blog-card a {
  margin-top: 10px;
  align-self: flex-start;
  color: var(--primary);
  border-radius: 6px;
  padding: 4px 14px;
  transition: background 0.18s, color 0.18s;
}
.blog-card a:hover {
  background: var(--pastel-lavender);
  color: var(--accent-dark);
}
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 24px;
}
.category-filters span {
  background: var(--pastel-blue);
  color: var(--primary-dark);
  padding: 5px 14px;
  border-radius: 7px;
  font-size: 0.98em;
  box-shadow: 0 1px 5px rgba(153,205,250,0.07);
  transition: background 0.17s;
}
.category-filters span:hover {
  background: var(--pastel-mint);
}

/* Recipes */
.recipe-card {
  background: #fff;
  border-left: 4px solid var(--accent);
  font-size: 1.04rem;
  position: relative;
}
.recipe-card .favorite {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pastel-pink);
  border-radius: 50%;
  padding: 6px;
  transition: background 0.16s;
}
.recipe-card .favorite:hover {
  background: var(--accent);
}

/* Section HEADING SPACING */
.section > .container > h2, .about > .container > h2, .services > .container > h2, .faq > .container > h2, .pricing > .container > h2,
.newsletter-signup > .container > h2, .blog-list > .container > h2, .team > .container > h2 {
  margin-bottom: 24px;
  margin-top: 0;
}

/* =================================================================
  BUTTONS, CTAs, INTERACTIVES
  ================================================================= */
.cta, .cta.primary, .cta.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 13px 38px;
  border-radius: 24px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 10px rgba(255,183,77,0.08);
  border: none;
  min-width: 140px;
  cursor: pointer;
  margin-top: 14px;
  transition: background 0.19s, box-shadow 0.20s, color 0.18s, transform 0.19s;
}
.cta.secondary {
  background: var(--primary-dark);
  color: #fff;
}
.cta.primary:hover, .cta.secondary:hover {
  background: var(--accent-dark);
  color: #f5f3ed;
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(241,163,67,0.19);
}

/* Inputs */
input[type="text"], input[type="email"] {
  width: 100%;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--pastel-blue);
  font-size: 1rem;
  background: #fff;
  color: var(--primary-dark);
  margin-bottom: 18px;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 10px 0 rgba(173,231,245,0.04);
}
input[type="text"]:focus, input[type="email"]:focus {
  border: 1.5px solid var(--accent);
  box-shadow: 0 2px 16px 0 rgba(255,183,77,0.10);
}

/* List markers (e.g. for FAQ, filter lists) */
ul li, .core-values-list ul li, .timeline ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: #24582F;
}
ul li:before {
  content: '\2022';
  color: var(--accent);
  font-size: 1.2em;
  position: absolute;
  left: 0; top: 0;
}

/* Ordered List */
ol {
  counter-reset: custom;
  list-style: none;
  padding-left: 0px;
}
ol li {
  counter-increment: custom;
  position: relative;
  padding-left: 30px;
  margin-bottom: 9px;
}
ol li:before {
  content: counter(custom) '.';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
}

/* FAQ Accordion */
.faq-accordion > div {
  background: var(--pastel-lavender);
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 14px 22px 14px 18px;
  box-shadow: 0 2px 8px 0 rgba(203,196,255,0.09);
  font-size: 1em;
  transition: background 0.13s;
}
.faq-accordion > div:hover {
  background: var(--pastel-blue);
}
.faq-accordion strong {
  color: var(--primary);
}

/* Infographics notice (in principles) */
.infographics p {
  font-size: 1.01em;
  background: var(--pastel-mint);
  border-radius: 9px;
  padding: 11px 13px;
  box-shadow: 0 1px 9px rgba(160,235,199,0.08);
}

/* =================================================================
   HEADER / NAVIGATION / MOBILE MENU
   ================================================================= */
header {
  background: #fff;
  border-bottom: 2px solid var(--pastel-pink);
  position: sticky;
  top: 0;
  z-index: 101;
  box-shadow: 0 2px 18px 0 rgba(184,236,215,0.10);
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 75px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-left: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  border-radius: 10px;
  padding: 7px 13px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--pastel-blue);
  color: var(--accent-dark);
}

/* BRAND LOGO in header */
header a img {
  height: 40px;
  width: auto;
  margin-right: 10px;
  display: inline-block;
}

/* CTA in header */
header .cta.primary {
  margin-left: 20px;
  min-width: 140px;
  font-size: 1.01rem;
  padding: 9px 22px;
  border-radius: 22px;
}

/* Burger Menu BTN */
.mobile-menu-toggle {
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 1px 8px rgba(255,184,77,0.11);
  margin-left: 18px;
  transition: background 0.16s, transform 0.2s;
  z-index: 110;
  cursor: pointer;
}
.mobile-menu-toggle:hover {
  background: var(--accent-dark);
  transform: scale(1.09);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 340px;
  height: 100vh;
  background: linear-gradient(104deg, var(--pastel-mint) 65%, #fff 100%);
  box-shadow: -4px 0 26px 0 rgba(131, 170, 184, 0.15);
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(.59,.87,.69,1.16);
  z-index: 200;
  padding: 22px 28px 42px 22px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 1.5rem;
  margin-bottom: 14px;
  border: 0;
  transition: background 0.14s, transform 0.2s;
  z-index: 215;
}
.mobile-menu-close:hover { background: var(--primary); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.16rem;
  padding: 10px 7px;
  border-radius: 10px;
  color: var(--primary);
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--pastel-blue);
  color: var(--accent-dark);
}

/* HIDE/SHOW DESKTOP vs MOBILE NAV */
@media (max-width: 1024px) {
  .main-nav, header .cta.primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  .main-nav, header .cta.primary { display: flex; }
}

/* =================================================================
  FOOTER
  ================================================================= */
footer {
  background: linear-gradient(85deg, var(--pastel-blue) 50%, var(--pastel-lavender) 100%);
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 14px 0 var(--shadow);
  padding: 38px 0 0 0;
  margin-top: 56px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 28px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: var(--primary-dark);
  font-size: 1.03rem;
  font-family: var(--font-body);
  font-weight: 500;
  transition: color 0.2s, text-decoration 0.12s;
}
.footer-nav a:hover {
  color: var(--accent-dark);
  text-decoration: underline dotted;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.14rem;
  color: var(--primary);
}
.footer-brand img {
  height: 30px;
  width: auto;
}
.footer-contact {
  font-size: 1.01rem;
  color: var(--primary-dark);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a img {
  height: 26px; width: 26px;
  transition: filter 0.17s, transform 0.14s;
}
.footer-social a:hover img {
  filter: brightness(0.93) drop-shadow(0 2px 3px #FFB74D);
  transform: scale(1.11);
}
@media (max-width: 800px) {
  footer .container { flex-direction: column; gap: 24px; align-items: flex-start; }
}

/* =================================================================
  CONTACT, INFOBLOCKS, MAP, ETC.
  ================================================================= */
.contact-info, .infos {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1.09em;
}
.contact-info img, .infos img {
  height: 18px;
  width: 18px;
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle;
}
.contact-info span, .infos span {
  margin-bottom: 5px;
  display: inline-block;
}
.map {
  margin-top: 20px;
  border-radius: 18px;
  box-shadow: 0 3px 16px var(--shadow);
  overflow: hidden;
}
.phone-number {
  color: var(--primary);
  margin-left: 22px;
  font-size: 1.09em;
}

/* Timeline (team/about) */
.timeline, .core-values-list {
  margin: 18px 0 0 0;
}
.timeline h3, .core-values-list h3 {
  margin-bottom: 10px;
  font-size: 1.13em;
}

.team-member-profile {
  background: var(--pastel-blue);
  color: var(--primary-dark);
  min-width: 220px;
  min-height: 135px;
}
.team-member-profile h3 {
  color: var(--accent-dark);
}
.team-member-profile span {
  font-size: 0.955em;
  color: var(--primary);
  font-family: var(--font-display);
}

.confirmation {
  background: #fffbe8;
  text-align: center;
}

.legal {
  background: var(--pastel-mint);
}
.legal h1 {
  color: var(--primary);
}

/* =================================================================
  RESPONSIVENESS — MOBILE FIRST
  ================================================================= */
@media (max-width: 900px) {
  .container { max-width: 98vw; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .container { padding-left: 8px; padding-right: 8px; }
  .section, .callout, .about, .services, .newsletter-signup, .faq, .blog-preview, .blog-list, .team, .mission, .confirmation, .contact-short {
    padding: 26px 6px;
    border-radius: 14px;
    box-shadow: 0 1px 7px var(--shadow);
  }
  .text-image-section, .content-grid { flex-direction: column; gap: 19px; }
  .card, .feature-grid > div, .blog-card, .recipe-card, .team-member-profile { min-height: unset; }
  header .container { flex-direction: row; gap: 5px; }
  .main-nav { gap: 13px; }
  .footer-contact { font-size: 0.96em; }
  .footer-nav { gap: 10px; }
  footer .container { gap: 18px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.42rem; }
  .cta, .cta.primary, .cta.secondary { font-size: 0.94rem; padding: 9px 10px; min-width: unset; }
}

/* =================================================================
  TRANSITIONS, ANIMATIONS, EFFECTS
  ================================================================= */
.card, .card-container > *, .cta, .cta.primary, .category-filters span, .blog-card, .team-member-profile, .testimonial-card, .feature-grid > div, .pricing-table > div {
  transition: box-shadow 0.17s, transform 0.16s, background 0.13s, color 0.13s;
}
input, textarea {
  transition: border 0.18s, box-shadow 0.18s;
}

/* =================================================================
  COOKIE CONSENT BANNER & PREFERENCES MODAL
  ================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--pastel-pink) 80%, var(--pastel-blue) 100%);
  color: var(--primary-dark);
  z-index: 3000;
  box-shadow: 0 -2px 28px 0 rgba(171, 182, 255, 0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 11px 18px 11px;
  gap: 14px;
  font-size: 1.03em;
  border-radius: 20px 20px 0 0;
  animation: cookie-banner-in 0.6s cubic-bezier(.57,.41,.56,.97);
}
@keyframes cookie-banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 7px;
}
.cookie-banner button {
  font-family: var(--font-display);
  border: none;
  border-radius: 18px;
  background: var(--accent);
  color: #fff;
  padding: 9px 22px;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  margin-right: 4px;
  transition: background 0.13s, box-shadow 0.12s;
  box-shadow: 0 1px 9px 0 rgba(255,183,77,0.07);
}
.cookie-banner button.cookie-settings {
  background: var(--primary-dark);
}
.cookie-banner button:hover {
  background: var(--accent-dark);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 95vw;
  max-width: 400px;
  transform: translate(-50%, -45%) scale(0.98);
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 2px 48px 0 rgba(190,174,255,0.17);
  z-index: 4010;
  display: flex;
  flex-direction: column;
  padding: 32px 19px 18px 19px;
  gap: 14px;
  animation: cookie-modal-in 0.3s cubic-bezier(.55,.16,.79,0.83);
}
@keyframes cookie-modal-in {
  from { opacity: 0; transform: translate(-50%, 20%) scale(0.93); }
  to { opacity: 1; transform: translate(-50%, -45%) scale(0.98); }
}
.cookie-modal h3 {
  font-size: 1.25em;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1.075em;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--accent);
  width: 19px; height: 19px;
  margin-right: 6px;
  border-radius: 7px;
}
.cookie-modal .cookie-essential {
  opacity: 0.65;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 21px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 8px 15px;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.99em;
  transition: background 0.13s;
}
.cookie-modal .modal-actions button.secondary {
  background: var(--primary-dark);
}
.cookie-modal .modal-actions button:hover {
  background: var(--accent-dark);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 15px; right: 17px;
  border: none;
  background: transparent;
  font-size: 1.35em;
  color: var(--primary-dark);
  cursor: pointer;
  line-height: 1;
}

/* Modal backdrop */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(65, 82, 110, 0.21);
  z-index: 4000;
  animation: fade-in-bg 0.3s;
}
@keyframes fade-in-bg {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =================================================================
  ACCESSIBILITY
  ================================================================= */
:focus {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

/* =================================================================
  END
  ================================================================= */
