/* ========================================================== */
/* 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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #FFF6F0;
  color: #224B42;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  padding-left: 24px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
a {
  color: #224B42;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #8DC5B4;
  outline-offset: 2px;
}
a:hover {
  color: #468e7b;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
}
:root {
  --primary: #224B42;
  --secondary: #8DC5B4;
  --accent: #FFF6F0;
  --pastel-rose: #F8E1E1;
  --pastel-yellow: #FFF6D8;
  --pastel-mint: #E3F8F3;
  --pastel-blue: #E7F0FB;
  --pastel-lilac: #F1E7FB;
}

/* ========================================================== */
/* TYPOGRAPHY                                                */
/* ========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #224B42;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
p, li, .text-section {
  font-family: 'Roboto', Arial, sans-serif;
  color: #393939;
  font-size: 1rem;  /* 16px */
  line-height: 1.7;
}
p.subheadline {
  font-size: 1.125rem;
  color: #468e7b;
  margin-bottom: 24px;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  font-weight: 700;
  color: #224B42;
}
blockquote {
  font-style: italic;
  color: #32625b;
  background: var(--pastel-rose);
  border-left: 4px solid #8DC5B4;
  padding: 18px 26px;
  border-radius: 14px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.testimonial-author {
  font-size: 0.95rem;
  color: #224B42;
  margin-left: 6px;
  letter-spacing: 0.03em;
}


/* ========================================================== */
/* LAYOUT - CONTAINERS & FLEXBOX                             */
/* ========================================================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* Flex patterns (per provided spec) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative; /* for possible decorations only */
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 10px 36px 0 rgba(34,75,66,0.08);
  padding: 30px;
  min-width: 220px;
  flex: 1 1 280px;
  transition: box-shadow .2s;
}
.card:hover {
  box-shadow: 0 16px 36px 0 rgba(34,75,66,0.15);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 24px 0 rgba(34,75,66,0.08);
  background: var(--pastel-mint);
  margin-bottom: 20px;
  min-width: 280px;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover {
  box-shadow: 0 18px 36px 0 rgba(34,75,66,0.16);
  transform: scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* MAIN NAVIGATION & HEADER */
header {
  background: var(--pastel-mint);
  box-shadow: 0 2px 12px 0 rgba(34,75,66,0.08);
  padding: 0;
  position: relative;
  z-index: 11;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
.logo img {
  display: block;
  height: 50px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #224B42;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0px;
  height: 2px;
  background: #8DC5B4;
  border-radius: 2px;
  transition: width .2s;
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-rose);
  color: #224B42;
}
.main-nav .main-cta {
  background: #8DC5B4;
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(223, 174, 155, 0.044);
  margin-left: 16px;
  transition: background .2s, color .2s, box-shadow .2s;
}
.main-nav .main-cta:hover, .main-nav .main-cta:focus {
  background: #4aac8e;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  color: #224B42;
  border: none;
  margin-left: 18px;
  z-index: 20;
  padding: 5px 8px;
  border-radius: 10px;
  transition: background .2s,color .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E3F8F3;
  color: #8DC5B4;
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 8px 32px 0 rgba(115,205,174,0.14);
  z-index: 1002;
  transform: translateX(-100vw);
  transition: transform .44s cubic-bezier(.7,.21,.25,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 28px 12px 0;
  font-size: 2.1rem;
  color: #224B42;
  background: none;
  border: none;
  border-radius: 50%;
  padding: 4px 12px;
  transition: background .2s,color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--pastel-mint);
  color: #8DC5B4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
  align-items: flex-start;
  padding: 0 38px;
  margin-top: 0.5em;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #224B42;
  padding: 14px 0;
  width: 100%;
  border-radius: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  border: none;
  text-align: left;
  transition: background .2s, color .2s;
  line-height: 1.4;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E3F8F3;
  color: #4aac8e;
}

/* Hide menu on desktop */
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}
/* Show burger and overlay on mobile */
@media (max-width: 991px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========================================================== */
/* HOMEPAGE HERO/CTA/FEATURE STYLES                          */
/* ========================================================== */
.hero-section {
  background: linear-gradient(180deg, #E7F0FB 0%, #FFF6F0 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 0 0 42px 42px;
  box-shadow: 0 16px 56px 0 rgba(34,75,66,0.09);
  margin-bottom: 36px;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  max-width: 680px;
  padding: 40px 0 50px 0;
}
.cta-btn {
  background: #F8E1E1;
  color: #224B42;
  font-size: 1.2rem;
  font-family: 'Playfair Display', 'Georgia', serif;
  padding: 14px 36px;
  border-radius: 38px;
  font-weight: 700;
  border: none;
  box-shadow: 0 8px 24px 0 rgba(248,225,225,0.14);
  margin-top: 19px;
  transition: background .2s, color .2s, box-shadow .2s, transform .13s;
  letter-spacing: .013em;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #8DC5B4;
  color: #fff;
  box-shadow: 0 12px 32px 0 rgba(140,180,172,0.18);
  transform: translateY(-2px) scale(1.03);
}

.features-section {
  background: var(--pastel-blue);
  border-radius: 46px;
  box-shadow: 0 8px 32px 0 rgba(140,197,180,0.06);
}
.feature-grid, .category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  padding: 0;
  list-style: none;
}
.feature-grid li, .category-grid .flower-category {
  flex: 1 1 240px;
  min-width: 205px;
  background: var(--pastel-yellow);
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(255,199,145,0.08);
  padding: 30px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .14s;
  position: relative;
}
.feature-grid li:hover,
.category-grid .flower-category:hover {
  box-shadow: 0 8px 28px 0 rgba(255,199,145,0.17);
  transform: scale(1.02);
  z-index: 2;
}
.feature-grid img,
.category-grid .flower-category img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}

/* Service list / cards */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 15px;
}
.service-item {
  background: var(--pastel-mint);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(140,197,180,0.07);
  flex: 1 1 260px;
  margin-bottom: 20px;
  min-width: 220px;
  padding: 28px 20px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .2s, transform .1s;
}
.service-item:hover {
  box-shadow: 0 8px 28px 0 rgba(140,197,180,0.14);
  transform: scale(1.02);
  z-index: 2;
}


/* Testimonials */
.testimonials-section {
  background: var(--pastel-lilac);
  border-radius: 32px;
  box-shadow: 0 1px 22px 0 rgba(120,165,220,0.07);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 14px;
}

/* CTA Section */
.cta-section {
  background: var(--pastel-rose);
  border-radius: 36px;
  box-shadow: 0 4px 38px 0 rgba(248, 225, 225, 0.08);
  text-align: center;
}
.cta-section .content-wrapper {
  align-items: center;
  padding: 32px 0 30px 0;
}
.cta-section h2 {
  color: #224B42;
}
.cta-section p {
  color: #3a625b;
  margin-bottom: 24px;
}

/* Blog/Inspirace */
.blog-section {
  background: var(--pastel-blue);
  border-radius: 36px;
  margin-bottom: 60px;
}
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 26px;
}
.category-filters span {
  background: #e3f8f3;
  color: #224B42;
  padding: 5px 13px;
  font-size: 0.97rem;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(100,130,180,0.06);
  padding: 26px 18px 16px 28px;
  flex: 1 1 290px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .13s;
}
.blog-post:hover {
  box-shadow: 0 10px 28px 0 rgba(100,130,180,0.13);
  transform: scale(1.015);
}

/* Category tags in flower grid */
.occasion-tags {
  font-size: 0.93rem;
  color: #7e998c;
  background: #e7f0fb;
  border-radius: 9px;
  padding: 2px 8px;
  display: inline-block;
  margin-bottom: 8px;
}

/* Order delivery options */
.delivery-options,
.order-steps,
.payment-security-information ul,
.delivery-options-list,
.delivery-timeframes ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 16px 0 20px;
  padding-left: 16px;
}

.payment-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.payment-method {
  background: var(--pastel-rose);
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(248,225,225,0.07);
  padding: 22px 20px;
  flex: 1 1 230px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .13s;
}
.payment-method img {
  height: 38px;
  width: 38px;
  margin-bottom: 4px;
}
.payment-method:hover {
  box-shadow: 0 8px 24px rgba(223,174,155,0.15);
  transform: scale(1.015);
}


/* ========================================================== */
/* FOOTER                                                    */
/* ========================================================== */
footer {
  background: var(--pastel-mint);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 0 -2px 10px 0 rgba(34,75,66,0.03);
  margin-top: 70px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #224B42;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
  padding: 40px 10px 28px 10px;
  width: 100%;
}
.footer-logo img {
  height: 46px;
  width: auto;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  font-size: 1rem;
  color: #224B42;
  opacity: 0.93;
  padding: 4px 0;
  border-radius: 8px;
  transition: background .16s, color .16s;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #E3F8F3;
  color: #8DC5B4;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #224B42;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact-item img {
  height: 25px;
  width: 25px;
  flex-shrink: 0;
}

/* ========================================================== */
/* TEXT SECTIONS, BRAND VALUES, ETC.                         */
/* ========================================================== */
.text-section {
  max-width: 790px;
  margin: 0 auto 28px auto;
  padding: 0 8px;
  color: #3a625b;
}
.brand-values ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 11px 0 0 0;
  padding-left: 18px;
}
.mission-vision {
  margin-bottom: 0;
}

/* ========================================================== */
/* TEAM SECTION                                              */
/* ========================================================== */
.team-member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 15px;
}
.team-member {
  background: var(--pastel-lilac);
  border-radius: 17px;
  box-shadow: 0 2px 8px 0 rgba(140,140,184,0.07);
  flex: 1 1 220px;
  min-width: 180px;
  margin-bottom: 24px;
  padding: 24px 18px 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  transition: box-shadow .2s, transform .13s;
}
.team-member:hover {
  box-shadow: 0 10px 28px 0 rgba(140,140,184,0.14);
  transform: scale(1.02);
}

/* ========================================================== */
/* MISC: MAP/EMBEDS, ETC.                                    */
/* ========================================================== */
.em {
  color: #7eb6c2;
  font-style: italic;
}

/* ========================================================== */
/* RESPONSIVENESS                                            */
/* ========================================================== */
@media (max-width: 1250px) {
  .container {
    max-width: 94vw;
    padding: 0 6vw;
  }
}
@media (max-width: 992px) {
  .features-section, .cta-section, .testimonials-section, .blog-section {
    border-radius: 20px;
  }
  .footer-content {
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 850px) {
  .container {
    max-width: 100vw;
    padding: 0 3vw;
  }
  .footer-content {
    padding: 30px 3vw 22px 3vw;
  }
  .content-wrapper {
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .hero-section {
    border-radius: 0 0 24px 24px;
    min-height: 230px;
  }
  .feature-grid, .category-grid, .service-list, .blog-post-list, .payment-methods-grid, .testimonial-slider, .team-member-list {
    flex-direction: column;
    gap: 16px;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .content-grid, .footer-content {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .section, section {
    margin-bottom: 38px;
    padding: 28px 4vw;
  }
  .features-section, .cta-section, .testimonials-section, .blog-section {
    border-radius: 10px;
    box-shadow: none;
  }
  .category-filters {
    gap: 5px;
  }
}

/* ========================================================== */
/* HOVER/FOCUS MICRO-INTERACTIONS                            */
/* ========================================================== */
.card, .feature-grid li, .category-grid .flower-category, .service-item, .team-member, .payment-method, .blog-post {
  transition: box-shadow .21s, transform .13s;
}
.card:hover, .feature-grid li:hover, .category-grid .flower-category:hover, .service-item:hover, .team-member:hover, .payment-method:hover, .blog-post:hover {
  transform: translateY(-2px) scale(1.018);
  box-shadow: 0 14px 38px 0 rgba(34,75,66,0.10);
}

/* ========================================================== */
/* COOKIE CONSENT BANNER & COOKIE MODAL                       */
/* ========================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF6F0;
  color: #224B42;
  box-shadow: 0 -6px 40px 0 rgba(140,197,180,0.13);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  justify-content: center;
  padding: 16px 8vw 16px 8vw;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner__text {
  flex: 2 1 0px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 8px 18px;
  border-radius: 13px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: 'Roboto', Arial, sans-serif;
  margin-right: 0px;
  transition: background .16s,color .12s,box-shadow .12s,outline .14s;
}
.cookie-btn--accept {
  background: #8DC5B4;
  color: #fff;
  box-shadow: 0 2px 8px 0 #8dc5b440;
}
.cookie-btn--accept:hover, .cookie-btn--accept:focus {
  background: #468e7b;
}
.cookie-btn--reject {
  background: #F8E1E1;
  color: #224B42;
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: #F1E7FB;
  color: #224B42;
}
.cookie-btn--settings {
  background: #fff;
  color: #8DC5B4;
  border: 1px solid #8DC5B4;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: #E3F8F3;
  color: #224B42;
}

/* COOKIE MODAL OVERLAY */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2200;
  width: 100vw;
  height: 100vh;
  background: rgba(34,75,66,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal__box {
  background: #fff;
  padding: 34px 30px 26px 34px;
  border-radius: 24px;
  box-shadow: 0 8px 64px 0 rgba(140,197,180,0.22);
  min-width: 320px;
  max-width: 95vw;
  color: #224B42;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  font-size: 1.5rem;
  color: #224B42;
  border: none;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 8px;
  transition: background .17s, color .12s;
  z-index: 2300;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #E3F8F3;
}
.cookie-modal__title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.4rem;
  color: #224B42;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #F1E7FB;
  border-radius: 10px;
  padding: 11px 14px;
}
.cookie-category__label {
  flex: 1 1 0px;
}
.cookie-category__switch {
  margin-left: auto;
}

/* Custom toggles for cookies */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}
.toggle-switch input {
  display: none;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e7f0fb;
  border-radius: 20px;
  transition: background .2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: #8DC5B4;
}
.toggle-slider:before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 16px;
  transition: transform .18s;
  box-shadow: 0 1px 8px #8dc5b420;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(18px);
}

/* Cookie modal buttons */
.cookie-modal__actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal__actions .cookie-btn {
  padding: 9px 22px;
  font-size: 1.02rem;
}

/* Responsive cookie banner/modal */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 13px 4vw;
    font-size: 0.96rem;
  }
  .cookie-banner__text {
    margin-bottom: 5px;
  }
  .cookie-modal__box {
    padding: 12vw 3vw 9vw 5vw;
    min-width: 0;
  }
}

/* ========================================================== */
/* UTILITY CLASSES                                           */
/* ========================================================== */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ========================================================== */
/* END OF SHEET                                              */
/* ========================================================== */
