/* =========================
   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,
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;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F6F4;
  color: #28254D;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #28254D;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  outline: none;
  border: none;
  cursor: pointer;
  background: none;
}
hr {
  border: 0;
  height: 1px;
  background: #eaeaea;
  margin: 32px 0;
}


/* ============
   BRAND FONTS (Google Fonts, fallback included)
   ============ */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.15;
  color: #28254D;
  letter-spacing: 0.01em;
}

h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; font-family: 'Roboto', Arial, sans-serif; font-weight: 500; }

@media (min-width: 600px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.7rem; }
}
@media (min-width: 1000px) {
  h1 { font-size: 3.6rem; }
  h2 { font-size: 2.6rem; }
}

p, li, td, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #28254D;
}
strong, b {
  font-weight: 700;
  color: #CC973C;
}


/* ================================
   COLORS & THEME ("playful_dynamic")
   ================================ */
:root {
  --color-primary: #28254D;
  --color-secondary: #CC973C;
  --color-accent: #F6F6F4;
  --color-card: #fffbe7;
  --color-fun1: #F24B6A;
  --color-fun2: #38C1CE;
  --color-fun3: #6EDD9B;
  --color-fun4: #FFDB6E;
  --color-dark: #28254D;
  --color-light: #FFFFFF;
  --color-muted: #ECECEC;
}


/* ==================
   LAYOUT CONTAINERS
   ================== */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1210px;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 30px;
  box-shadow: 0 8px 32px 0 rgba(44,32,85,0.06);
}

@media (min-width: 800px) {
  .section {
    padding: 64px 40px;
    margin-bottom: 72px;
    border-radius: 40px;
  }
}

/* Hero Section */
.hero {
  margin-bottom: 60px;
  padding: 48px 0 56px 0;
  background: linear-gradient(104deg, var(--color-fun2) 0%, var(--color-fun4) 100%);
  border-bottom-right-radius: 62px;
  border-bottom-left-radius: 62px;
  box-shadow: 0 12px 42px 0 rgba(44,32,85,.08);
  animation: slide-down 0.9s cubic-bezier(.74,0,.38,1.05);
}
@media (min-width: 900px) {
  .hero { padding: 74px 0 88px 0; border-radius: 0 0 90px 90px; }
}

@keyframes slide-down {
  0% { opacity: 0; transform: translateY(-32px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  color: var(--color-dark);
  animation: pop-in 0.5s cubic-bezier(.44,0,.56,1.07) 0.1s both;
}
.hero p {
  color: var(--color-dark);
}
@keyframes pop-in {
  0% { opacity: 0; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}


/* ===============================
   NAVBAR, LOGO, & HEADER LAYOUT
   =============================== */
header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  box-shadow: 0 0 16px 0 rgba(44,32,85,0.08);
  min-height: 64px;
  transition: box-shadow 0.26s;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  margin-right: 0.5rem;
  animation: logo-rotate 3.5s infinite linear alternate-reverse;
}
@keyframes logo-rotate {
  0% { transform: rotate(-2deg) scale(1); }
  60% { transform: rotate(3deg) scale(1.06); }
  100% { transform: rotate(-1deg) scale(1); }
}
.main-nav {
  display: none;
}
@media (min-width: 900px) {
  .main-nav {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    flex: 1;
  }
  .main-nav a {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 11px;
    color: var(--color-dark);
    border-radius: 7px;
    transition: background 0.18s, color 0.18s;
  }
  .main-nav a:hover, .main-nav a.active {
    background: var(--color-fun2);
    color: var(--color-light);
    font-weight: 700;
  }
}
header .button.primary {
  margin-left: 0.5rem;
}

/* Hide primary call to action on mobile */
@media (max-width: 899px) {
  header .button.primary {
    display: none;
  }
}

/* ===============
   MOBILE BURGER
   =============== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--color-secondary);
  background: none;
  border: none;
  margin-left: 8px;
  z-index: 111;
  transition: color 0.22s;
  border-radius: 7px;
  padding: 5px 15px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--color-fun1);
  background: #fffbe7;
}
@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-dark);
  color: var(--color-light);
  z-index: 1210;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 28px;
  transform: translateX(-100%);
  transition: transform 0.44s cubic-bezier(.65,.09,.26,1.14);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin-top: 30px;
  font-size: 2.3rem;
  background: none;
  color: var(--color-fun4);
  border: none;
  border-radius: 7px;
  padding: 4px 10px;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-fun1);
  background: rgba(255,255,255,0.14);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-top: 44px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-light);
  font-size: 1.2rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 0 12px 8px;
  border-radius: 7px;
  transition: background 0.17s, color 0.21s;
  width: 93%;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--color-fun1);
  color: #fff;
}
@media (min-width: 900px) {
  .mobile-menu {
    display: none!important;
  }
}

/* MOBILE MENU OVERLAY ANIMATION */
.mobile-menu {
  box-shadow: 0 0 80px 0 rgba(44,32,85,0.18);
}


/* =====================
   BUTTONS & INTERACTION
   ===================== */
.button {
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 66px;
  padding: 11px 32px;
  margin-top: 12px;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  background: var(--color-fun1);
  color: var(--color-light);
  border: 2px solid transparent;
  box-shadow: 0 2px 16px 0 rgba(254, 76, 105, 0.11);
  transition: background 0.21s, color 0.21s, transform 0.13s, border 0.17s;
}
.button.primary {
  background: var(--color-secondary);
  color: #fff;
}
.button.secondary {
  background: var(--color-fun2);
  color: #fff;
}
.button:hover, .button:focus {
  background: var(--color-dark);
  color: var(--color-fun4);
  transform: scale(1.06);
  border: 2px solid var(--color-fun2);
}
.button.secondary:hover, .button.secondary:focus {
  background: var(--color-fun1);
  color: #fff;
}
.button.primary:hover, .button.primary:focus {
  background: var(--color-fun2);
  color: #fff;
  border: 2px solid var(--color-secondary);
}


/* =================
   FLEXBOX SECTIONS
   ================= */
.features {
  width: 100%;
  margin-bottom: 60px;
}
.features .content-wrapper {
  gap: 16px;
}
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 18px;
}
@media (min-width: 700px) {
  .feature-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .feature-grid > li {
    flex: 1 0 250px;
    max-width: 250px;
  }
}
.feature-grid > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(254, 219, 110, 0.16);
  padding: 24px 18px;
  min-width: 200px;
  min-height: 190px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.21s, box-shadow 0.18s;
  border: 2px solid var(--color-fun4);
}
.feature-grid > li:hover {
  transform: scale(1.035);
  box-shadow: 0 6px 38px 0 rgba(254,76,105,0.10),0 2px 12px 0 rgba(46,198,207,0.08);
  z-index: 11;
  border-color: var(--color-fun1);
}
.feature-grid img {
  height: 48px; width: 48px; margin-bottom: 2px;
  animation: feature-bounce 1.7s infinite alternate;
}
@keyframes feature-bounce {
  0% { transform: translateY(0); }
  53% { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}

/* Flex patterns for content layouts */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card);
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(44,32,85,0.09);
  padding: 28px 22px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 5px 28px 0 rgba(46,198,207,.11);
  transform: translateY(-5px) scale(1.02);
}
.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;
  background: #fffbe7;
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 rgba(252, 189, 70, 0.13);
  margin-bottom: 20px;
  flex-direction: column;
  color: #221e42;
  font-weight: 500;
  border: 2px solid var(--color-fun2);
  min-width: 240px;
  min-height: 134px;
  transition: border 0.15s, box-shadow 0.27s;
  z-index: 0;
}
.testimonial-card:hover {
  border-color: var(--color-fun1);
  box-shadow: 0 8px 44px 0 rgba(242, 75, 106, 0.17);
  z-index: 11;
}
.testimonial-card .rating {
  color: var(--color-fun1);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 2px;
}
.testimonial-card h4 {
  color: var(--color-secondary);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 7px;
}

/* Services Section Flex Layout */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.service-item {
  background: var(--color-light);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(46,198,207,0.08);
  padding: 26px 18px;
  flex: 1 0 260px;
  min-width: 220px;
  margin-bottom: 20px;
  border: 2px solid var(--color-fun2);
  transition: border 0.19s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}
.service-item strong {
  color: var(--color-fun1);
}
.service-item:hover {
  border-color: var(--color-fun1);
  box-shadow: 0 8px 28px 0 rgba(242, 75, 106, 0.15);
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 27px;
  margin: 18px 0 16px 0;
  flex-wrap: wrap;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-info img {
  width: 24px;
  height: 24px;
}

/* About (Team List) */
.text-section ul {
  margin-top: 12px;
  padding-left: 19px;
  list-style: disc;
  color: var(--color-dark);
}


/* ======================
   SPECIAL LIST SECTIONS
   ====================== */
.genres-tabs ul, .curated-lists ul, .summary-highlights ul, .service-details ul, .reviewer-profiles ul, .upcoming-lists, .monthly-specials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 11px 0 8px 0;
}
.genres-tabs ul li {
  background: var(--color-fun3);
  color: var(--color-primary);
  padding: 5px 17px;
  border-radius: 18px;
  margin-bottom: 7px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  transition: background 0.17s, color 0.15s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(110,221,155,0.13);
}
.genres-tabs ul li:hover{
  background: var(--color-fun1);
  color: #fff;
}

/* ==============
   MAP LOCATION
   ============== */
.map-location {
  margin-top: 20px;
  padding: 16px;
  background: var(--color-card);
  border-radius: 16px;
  border: 2px solid var(--color-fun4);
  box-shadow: 0 1px 8px 0 rgba(254,219,110,0.13);
}
.map-location h3 {
  font-size: 1.2rem;
  color: var(--color-fun2);
}


/* ===================
   FOOTER FLEX LAYOUT
   =================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding-top: 40px;
  padding-bottom: 32px;
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
  box-shadow: 0 -6px 24px 0 rgba(46,198,207,0.08);
  margin-top: 44px;
}
footer .container {
  gap: 18px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1.16rem;
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-brand img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(1px 2px 0px #fffbe7);
  animation: logo-rotate 4.7s infinite alternate;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 12px 0;
}
.footer-nav a {
  color: var(--color-fun3);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: var(--color-fun1);
  text-decoration: underline wavy 2px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--color-fun4);
  font-size: 0.98rem;
  margin-bottom: 5px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
.footer-copy {
  color: #F6F6F4;
  opacity: 0.77;
  font-size: 0.9rem;
  margin-top: 12px;
}


/* ====================
   RESPONSIVE DESIGN
   ==================== */
@media (max-width: 768px) {
  .card-container, .content-grid, .services-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .card {
    min-width: unset;
    width: 100%;
  }
  .services-list, .feature-grid {
    min-width: 0;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 15px;
    min-width: 0;
  }
  .contact-details {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav {
    gap: 13px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.48rem; }
  h3 { font-size: 1.13rem; }
  .footer-brand img { width: 28px; height: 28px; }
}


/* ================================
   MICRO-INTERACTIONS & ANIMATION
   ================================ */
a, .button, .card, .feature-grid > li, .service-item, .testimonial-card {
  transition-property: box-shadow, transform, background, color, border;
  transition-duration: 0.17s;
  transition-timing-function: cubic-bezier(.54,.09,.7,1.17);
}

/* Section in-view animation */
.section, .card, .testimonial-card, .service-item, .feature-grid > li {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.9s cubic-bezier(.74,0,.38,1.05) forwards;
}
.section { animation-delay: 0.11s; }
.card, .testimonial-card, .feature-grid > li, .service-item { animation-delay: 0.2s; }
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(28px); }
  50% { opacity: 0.6; }
  100% { opacity: 1; transform: translateY(0); }
}

/* Cards stagger effect on load, for demonstration only (JS preferred) */
.feature-grid > li:nth-child(2) { animation-delay: .26s; }
.feature-grid > li:nth-child(3) { animation-delay: .33s; }
.service-item:nth-child(2) { animation-delay: .24s; }
.service-item:nth-child(3) { animation-delay: .29s; }
.testimonial-card:nth-child(2) { animation-delay: .23s; }
.testimonial-card:nth-child(3) { animation-delay: .26s; }


/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  background: linear-gradient(90deg, var(--color-fun3) 0%, var(--color-secondary) 100%);
  color: #28254D;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 14px 29px 14px;
  box-shadow: 0 0 36px 0 rgba(242,75,106,0.09);
  min-height: 56px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  gap: 10px;
  opacity: 1;
  transition: transform .47s cubic-bezier(.63,.18,.48,.88), opacity .4s;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-banner.hide {
  transform: translateY(105%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 4px;
}
.cookie-banner button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 8px 20px;
  background: var(--color-fun1);
  color: #fff;
  border: 2px solid var(--color-fun2);
  margin: 0 1px;
  transition: background .19s, color .19s, border .17s;
  min-width: 92px;
}
.cookie-banner button.cookie-accept-all {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner button.cookie-reject-all {
  background: var(--color-fun2);
  color: #fff;
}
.cookie-banner button.cookie-settings {
  background: #fffbe7;
  color: var(--color-fun1);
  border: 2px solid var(--color-fun4);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-dark);
  color: var(--color-fun4);
  border-color: var(--color-dark);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10009;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,37,77,0.19);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fffbe7;
  padding: 32px 18px 24px 18px;
  border-radius: 30px;
  max-width: 430px;
  width: 90%;
  box-shadow: 0 0 64px 0 rgba(242,75,106,0.17);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: cookie-pop .46s cubic-bezier(.46, .15, .41, .86);
  color: #28254D;
  font-family: 'Roboto', Arial, sans-serif;
}
@keyframes cookie-pop {
  0% { opacity: 0; transform: scale(.7) translateY(40px); }
  85% { opacity: 0.9; }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  font-size: 1.34rem;
  color: var(--color-secondary);
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1.04rem;
  margin: 7px 0;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 24px;
  border-radius: 12px;
  border: 2px solid var(--color-fun2);
  background: var(--color-light);
  position: relative;
  transition: background 0.14s, border 0.14s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--color-fun3);
  border-color: var(--color-fun1);
}
.cookie-toggle:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: var(--color-fun4);
  border-radius: 50%;
  transition: transform .18s cubic-bezier(.75,0,.41,1.1);
}
.cookie-toggle:checked::before {
  transform: translateX(14px);
  background: var(--color-fun1);
}
.cookie-modal .cookie-modal-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  font-size: 1.02rem;
  padding: 8px 24px;
}


/* ================
   UTILITIES/SPECIAL
   ================ */
.bg-fun1 { background: var(--color-fun1) !important; color: #fff !important; }
.bg-fun2 { background: var(--color-fun2) !important; color: #fff !important; }
.bg-fun3 { background: var(--color-fun3) !important; color: #28254D !important; }
.bg-fun4 { background: var(--color-fun4) !important; color: #28254D !important; }

.text-center { text-align: center!important; }
.fw-bold { font-weight: 700!important; }
.fw-medium { font-weight: 500!important; }
.rounded { border-radius: 24px!important; }

/* Hide visually for screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ====================================
   END CSS - Dynamic, Playful, Flex Only
   ==================================== */
