/* ==== CSS RESET & BASE ==== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #24524C;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #24524C;
  text-decoration: none;
  transition: color .18s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #7AB985;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #24524C;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/* ==== CONTAINER ==== */
.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==== HEADER & NAV ==== */
header {
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(36,82,76,0.03);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 0;
}
header img {
  height: 40px;
  width: auto;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #24524C;
  padding: 6px 0;
  border-radius: 3px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a.cta-primary {
  background: #24524C;
  color: #fff;
  padding: 10px 22px;
  border-radius: 24px;
  margin-left: 10px;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(36,82,76,0.05);
  transition: background 0.18s, color 0.18s, box-shadow .18s;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: #7AB985;
  color: #24524C;
  box-shadow: 0 4px 18px 0 rgba(36,82,76,0.08);
}
.main-nav a:hover, .main-nav a:focus {
  color: #7AB985;
  background: #F6E9DA;
}
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 1px solid #24524C;
  color: #24524C;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1.5rem;
  margin-left: 18px;
  box-shadow: 0 1px 6px rgba(36,82,76,0.04);
  transition: background .18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F6E9DA;
  outline: 2px solid #7AB985;
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 48px rgba(36,82,76,0.08);
  z-index: 250;
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform .33s cubic-bezier(.65,.04,.35,1);
  will-change: transform;
  padding: 0;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 30px 0 0;
  background: none;
  color: #24524C;
  font-size: 2rem;
  border: none;
  transition: color .16s;
  z-index: 260;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #7AB985;
  background: #F6E9DA;
}
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #24524C;
  padding: 14px 32px;
  width: 90vw;
  text-align: center;
  border-radius: 10px;
  transition: background 0.12s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6E9DA;
  color: #7AB985;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
  header .container {
    padding: 16px 12px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 12px;
  }
}

/* ==== HERO BANNER ==== */
.hero {
  background: #F6E9DA;
  border-bottom: 1px solid #EEE;
  padding: 50px 0 50px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
  gap: 20px;
}
.hero h1 {
  font-size: 2.1rem;
}
.hero p {
  font-size: 1.19rem;
  margin-bottom: 18px;
  color: #24524C;
}
.hero .cta-primary {
  display: inline-block;
}
@media (max-width: 600px) {
  .hero {
    padding: 28px 0 28px 0;
  }
  .hero h1 {
    font-size: 1.55rem;
  }
}

/* ==== SECTIONS GENERAL ==== */
.section, section {
  margin-bottom: 60px !important;
  padding: 40px 20px 40px 20px !important;
}
@media (max-width: 600px) {
  .section, section {
    padding: 24px 0 24px 0 !important;
    margin-bottom: 36px !important;
  }
}

/* ==== FEATURE GRID & CARDS ==== */
.features .feature-grid,
.values .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 8px;
}
.feature {
  background: #fff;
  border: 1px solid #EEE;
  border-radius: 18px;
  box-shadow: 0 4px 26px 0 rgba(36,82,76,0.05);
  padding: 30px 24px 26px 24px;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .16s;
}
.feature img {
  height: 28px;
  width: auto;
}
.feature h3 {
  color: #24524C;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.feature p {
  color: #516564;
  font-size: 1rem;
}
.feature:hover {
  box-shadow: 0 8px 35px 0 rgba(36,82,76,0.13);
  transform: translateY(-4px) scale(1.01);
}

.categories .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  align-items: center;
}
.category-list li {
  margin-bottom: 0;
}
.category-list a {
  background: #fff;
  border: 1px solid #7AB985;
  border-radius: 20px;
  color: #24524C;
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: background .15s, color .15s, box-shadow .18s;
}
.category-list a:hover,
.category-list a:focus {
  background: #7AB985;
  color: #fff;
}

@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .categories .category-list {
    gap: 12px;
  }
}

/* ==== TESTIMONIALS ==== */
.testimonials .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 1px solid #EEE;
  border-radius: 18px;
  padding: 24px 32px;
  min-width: 230px;
  max-width: 345px;
  box-shadow: 0 3px 16px 0 rgba(36,82,76,0.08);
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .16s;
  color: #24524C;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(122,185,133,0.10);
  transform: translateY(-4px);
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #24524C;
}
.testimonial-card .user-name {
  font-size: .98rem;
  font-weight: 500;
  color: #7AB985;
}

@media (max-width: 700px) {
  .testimonials .testimonial-cards {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 18px 12px;
  }
}

/* ==== RECIPE CARDS ==== */
.recipe-list .recipe-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.recipe-card {
  background: #fff;
  border: 1px solid #EEE;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 rgba(36,82,76,0.06);
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px;
  min-width: 200px;
  max-width: 330px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  transition: box-shadow .16s, transform .14s;
}
.recipe-card h3 {
  margin-bottom: 6px;
  color: #24524C;
}
.recipe-card p {
  color: #516564;
  font-size: .99rem;
}
.recipe-card .cta-link {
  border-radius: 16px;
  background: #7AB985;
  color: #fff;
  font-weight: 600;
  padding: 8px 16px;
  font-size: .995rem;
  margin-top: 6px;
  transition: background 0.16s, color 0.14s;
}
.recipe-card .cta-link:hover,
.recipe-card .cta-link:focus {
  background: #24524C;
  color: #fff;
}
.recipe-card:hover {
  box-shadow: 0 7px 40px 0 rgba(122,185,133,0.13);
  transform: translateY(-2px) scale(1.01);
}

@media (max-width: 768px) {
  .recipe-list .recipe-cards {
    gap: 16px;
    flex-direction: column;
  }
  .recipe-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    padding: 18px 10px 14px 14px;
  }
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0 0;
  align-items: center;
}
.pagination a, .pagination span {
  color: #24524C;
  background: #fff;
  border: 1px solid #EEE;
  border-radius: 50%;
  min-width: 33px;
  min-height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background .13s, color .13s, box-shadow .12s;
}
.pagination a:hover {
  background: #F6E9DA;
  color: #7AB985;
  box-shadow: 0 1px 5px 0 rgba(36,82,76,0.12);
}
.pagination span {
  cursor: default;
}

/* ==== BLOG CARDS ==== */
.blog-list .blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.blog-card {
  background: #fff;
  border: 1px solid #EEE;
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 rgba(36,82,76,0.05);
  padding: 28px 20px 22px 22px;
  margin-bottom: 20px;
  min-width: 200px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow .17s, transform .14s;
}
.blog-card h3 {
  margin-bottom: 6px;
  color: #24524C;
}
.blog-card p {
  color: #516564;
  font-size: .99rem;
}
.blog-card .cta-link {
  border-radius: 15px;
  background: #7AB985;
  color: #fff;
  font-weight: 500;
  padding: 7px 16px;
  font-size: .99rem;
  transition: background 0.14s, color 0.13s;
}
.blog-card .cta-link:hover,
.blog-card .cta-link:focus {
  background: #24524C;
  color: #fff;
}
.blog-card .category {
  color: #7AB985;
  font-size: .99rem;
  font-weight: 600;
  letter-spacing: 0.7px;
  margin-top: 4px;
}
.blog-card:hover {
  box-shadow: 0 7px 34px 0 rgba(36,82,76,0.09);
  transform: translateY(-2px) scale(1.01);
}

@media (max-width: 768px) {
  .blog-list .blog-cards {
    gap: 17px;
    flex-direction: column;
  }
  .blog-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    padding: 15px 8px 13px 12px;
  }
}

/* ==== FILTERS, TAGS ==== */
.filters .filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 22px;
  margin-top: 8px;
}
.filter-options li {
  background: #F6E9DA;
  color: #24524C;
  border-radius: 15px;
  padding: 8px 18px;
  font-weight: 500;
  font-size: .98rem;
}
.sort-tags {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  font-size: .99rem;
  color: #516564;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #24524C;
  font-size: .97rem;
  margin-bottom: 0;
}
.tag-list span {
  background: #fff;
  border: 1px solid #7AB985;
  border-radius: 15px;
  padding: 6px 15px;
  font-weight: 500;
  transition: background 0.12s, color 0.12s;
}
.tag-list span:hover,
.tag-list span:focus {
  background: #7AB985;
  color: #fff;
}
.search-hint {
  background: #F6E9DA;
  color: #24524C;
  border-radius: 9px;
  padding: 8px 20px;
  margin-top: 8px;
  font-size: .98rem;
  font-weight: 500;
  display: inline-block;
}

/* ==== CTA BUTTONS ==== */
.cta-primary {
  display: inline-block;
  border-radius: 29px;
  background: #24524C;
  color: #fff !important;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 1.5px 12px 0 rgba(36,82,76,0.10);
  transition: background 0.18s, color 0.14s, box-shadow .23s;
  margin-top: 5px;
  letter-spacing: .1px;
  cursor: pointer;
  outline: none;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #7AB985;
  color: #24524C !important;
  box-shadow: 0 4px 24px 0 rgba(122,185,133,0.17);
}

.cta-link {
  display: inline-block;
  border-radius: 20px;
  background: #7AB985;
  color: #fff !important;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 1.5px 8px 0 rgba(36,82,76,0.06);
  transition: background 0.16s, color 0.13s, box-shadow .23s;
  outline: none;
}
.cta-link:hover, .cta-link:focus {
  background: #24524C;
  color: #fff !important;
}

/* ==== NEWSLETTER ==== */
.newsletter, .blog-cta {
  background: #F6E9DA;
  border-radius: 16px;
  box-shadow: 0 1px 10px 0 rgba(122,185,133,0.04);
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.newsletter h2, .blog-cta .cta-primary {
  text-align: center;
}
.newsletter p {
  color: #516564;
  margin-bottom: 15px;
}

/* ==== THANK YOU PAGE ==== */
.thankyou .container {
  align-items: center;
  justify-content: center;
}
.thankyou h1 {
  font-size: 2rem;
}
.thankyou .text-section {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

/* ==== TEXT SECTIONS ==== */
.text-section {
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section p {
  font-size: 1.03rem;
  color: #24524C;
}

/* ==== ADDRESS / CONTACT ==== */
.contact-details,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.contact-details li,
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .99rem;
  color: #24524C;
}
.contact-details img,
.footer-contact img {
  width: 18px;
  height: 18px;
  opacity: .7;
}
.map-hint {
  font-size: .97rem;
  color: #7AB985;
  margin-top: 8px;
}

/* ==== FOOTER ==== */
footer {
  background: #fff;
  border-top: 1px solid #EEE;
  padding: 30px 0 26px 0;
  margin-top: 40px;
  box-shadow: 0 -1px 16px 0 rgba(36,82,76,0.04);
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
footer a img {
  height: 44px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 2px;
  margin-right: 30px;
}
.footer-nav a {
  color: #516564;
  font-size: .99rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 4px 0;
  transition: color 0.12s, background .12s;
  border-radius: 6px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #7AB985;
  background: #F6E9DA;
}
.footer-contact {
  min-width: 180px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 18px 0 14px 0;
    margin-top: 18px;
  }
  .footer-nav a {
    font-size: .97rem;
    padding: 2px 0;
  }
}

/* ==== LEGAL PAGES TEXT ==== */
.legal .text-section {
  font-size: 1.01rem;
  color: #24524C;
  margin-top: 10px;
  line-height: 1.7;
}
.legal ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.legal li {
  list-style-type: disc;
  margin-bottom: 4px;
  font-size: 1.01em;
}

/* ==== RESPONSIVE ============ */
@media (max-width: 1000px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .container {
    padding: 0 6px;
  }
  .footer-contact {
    font-size: .89rem;
  }
}

/* ==== FLEX UTILITIES ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 26px 0 rgba(36,82,76,0.05);
  padding: 28px 24px;
}
.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;
    gap: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== ANIMATIONS ==== */
.cta-primary, .cta-link {
  transition: background .18s, color .13s, box-shadow .17s, transform .15s;
}
.card, .feature, .testimonial-card, .recipe-card, .blog-card {
  transition: box-shadow .18s, transform .14s;
}

/* ==== COOKIE CONSENT ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 1.5px solid #EEE;
  box-shadow: 0 -4px 32px 0 rgba(36,82,76,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 32px;
  z-index: 350;
  font-size: 1rem;
  color: #24524C;
  opacity: 1;
  transition: transform .29s cubic-bezier(.65,.04,.35,1);
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner__msg {
  max-width: 540px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-btn {
  border-radius: 20px;
  padding: 10px 22px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  box-shadow: 0 1px 6px 0 rgba(122,185,133,0.10);
  transition: background 0.18s, color 0.17s, box-shadow .20s;
  cursor: pointer;
  outline: none;
}
.cookie-btn.accept {
  background: #7AB985;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #24524C;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #24524C;
  border: 1px solid #EEE;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #F6E9DA;
  color: #7AB985;
  border-color: #7AB985;
}
.cookie-btn.settings {
  background: #F6E9DA;
  color: #24524C;
  border: none;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #7AB985;
  color: #fff;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 8px;
    font-size: .97rem;
  }
  .cookie-banner__msg {
    max-width: 98vw;
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal {
  position: fixed;
  z-index: 400;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,82,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .19s cubic-bezier(.45,0,.55,1);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 44px 0 rgba(36,82,76,0.15);
  min-width: 340px;
  max-width: 97vw;
  padding: 34px 28px 28px 38px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.37rem;
  font-weight: 700;
  color: #24524C;
}
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #24524C;
  margin: 0 -6px 0 8px;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  color: #7AB985;
}
.cookie-modal__settings-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
}
.cookie-category-name {
  font-weight: 600;
  color: #24524C;
  margin-right: 2px;
}
.cookie-category-desc {
  color: #516564;
  font-size: .96rem;
  margin-left: 8px;
}
.cookie-toggle {
  background: #EEE;
  border-radius: 12px;
  display: flex;
  align-items: center;
  width: 40px;
  height: 22px;
  position: relative;
  transition: background .17s;
  margin-left: 18px;
}
.cookie-toggle input[type='checkbox'] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-toggle-slider {
  position: absolute;
  left: 3px; top: 2px;
  height: 18px; width: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 6px 0 rgba(122,185,133,0.06);
  transition: left .17s, background .16s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 19px;
  background: #7AB985;
}
.cookie-toggle input:disabled + .cookie-toggle-slider {
  background: #DDD;
}
.cookie-category.essential .cookie-toggle {
  background: #7AB985;
}
.cookie-category.essential .cookie-toggle-slider {
  background: #7AB985;
}
.cookie-category.essential input[type='checkbox'] {
  pointer-events: none;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
@media (max-width: 600px) {
  .cookie-modal__box {
    padding: 18px 8px 13px 12px;
    min-width: 95vw;
  }
}

/* ==== UTILITIES ==== */
.hide {
  display: none !important;
}

::-webkit-input-placeholder { color: #B7B7B7; }
:-moz-placeholder { color: #B7B7B7; }
::-moz-placeholder { color: #B7B7B7; }
:-ms-input-placeholder { color: #B7B7B7; }