/* --- 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,
sku, 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, 
main, 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 {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #F7F9FA;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #18324A;
  background: #F7F9FA;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
a {
  color: #3EBF8B;
  text-decoration: none;
  transition: color .18s cubic-bezier(.54,1.58,.38,1);
}
a:hover, a:focus {
  color: #02ad6b;
}
ul, ol {
  list-style-position: outside;
  padding-left: 1.4em;
  margin-bottom: 1.2em;
}
strong, b {
  font-weight: bold;
}

/* --- Font Import (Google Fonts) --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');

/* --- Variables (fallbacks included) --- */
:root {
  --color-primary: #18324A;
  --color-secondary: #F7F9FA;
  --color-accent: #3EBF8B;
  --color-accent-dark: #159e6b;
  --color-fun1: #FFE760;
  --color-fun2: #F45B69;
  --color-fun3: #4E72F9;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* --- Layout Containers --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 28px 0 rgba(62,191,139,.07);
  position: relative;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  background: var(--color-secondary);
  box-shadow: 0 4px 24px 0 rgba(245,183,46,.10), 0 2px 8px 0 rgba(62,191,139,.09);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  min-width: 270px;
  flex: 1 1 300px;
}
.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: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 18px #ffe7601a, 0 2px 8px #3ebf8b0e;
  margin-bottom: 20px;
  transition: transform .2s cubic-bezier(.54,1.58,.38,1), box-shadow .2s;
  border: 2.5px solid var(--color-fun1);
  position: relative;
}
.testimonial-card:hover {
  transform: scale(1.024) rotate(-1deg);
  box-shadow: 0 8px 48px #fce06b3c, 0 2px 8px #3ebf8b29;
  border-color: var(--color-fun2);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(to right, #F7F9FA 65%, #FFE760 100%);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 6px 28px 0 rgba(62,191,139,.03);
  padding: 60px 0 40px 0;
  margin-bottom: 48px;
  min-height: 320px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
  text-shadow: 1px 2px 0 #ffe760a8, 0 4px 18px #3ebf8b24;
}
.hero p {
  font-size: 1.13rem;
  color: #263e5d;
  font-family: var(--font-body);
  font-weight: 400;
  margin-bottom: 0.8em;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: .4em;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.12;
}
h1 {
  font-size: 2.7rem;
}
h2 {
  font-size: 2.1rem;
  color: #F45B69;
  text-shadow: 0 3px 0 #fff2c6,0 2px 5px #ffe76024;
}
h3 {
  font-size: 1.3rem;
  color: #3EBF8B;
}
h4, h5, h6 {
  font-size: 1.06rem;
}
p, li, td, th {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #22292f;
}
strong {
  font-weight: 700;
}

/* --- LISTS --- */
ul, ol {
  margin-bottom: 1.1em;
}
ul li, ol li {
  margin-bottom: 0.4em;
  font-size: 1rem;
  position: relative;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #3EBF8B 40%, #FFE760 100%);
  border-radius: 50%;
  margin-right: 13px;
  vertical-align: middle;
}

/* --- HEADER NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 0 18px 0 #ffe7601a;
  z-index: 99;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 18px;
  position: relative;
}
.brand-logo img {
  height: 46px;
  filter: drop-shadow(0 2px 0 #ffe76050) drop-shadow(0 0 1px #3ebf8b30);
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.09rem;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  padding: 6px 17px;
  border-radius: 20px;
  transition: background .14s cubic-bezier(.66,1.78,.38,.91), color .14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
.cta-button {
  background: var(--color-fun2);
  color: #fff;
  border-radius: 40px;
  padding: 12px 36px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.13rem;
  box-shadow: 0 6px 24px #f45b691b;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .17s cubic-bezier(.54,1.58,.38,1), transform .16s;
  margin-left: 25px;
  display: inline-block;
  text-align: center;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  font-size: 2.05rem;
  border: none;
  border-radius: 22px;
  padding: 6px 18px;
  margin-left: 12px;
  cursor: pointer;
  transition: background .1s, transform .15s;
  z-index: 101;
  box-shadow: 0 2px 7px #3ebf8b14;
}
.mobile-menu-toggle:active {
  background: var(--color-fun2);
  transform: scale(.92);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 30px;
  transform: translateX(-110vw);
  transition: transform .38s cubic-bezier(.66,1.42,.41,.94);
  box-shadow: 0 0 70px #3ebf8b15, 0 0 14px #ffe7602c;
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-fun2);
  align-self: flex-end;
  margin-right: 26px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.2rem;
  padding: 14px 26px 14px 38px;
  border-radius: 30px;
  transition: background .13s cubic-bezier(.54,1.58,.38,1), color .13s;
  margin: 0 0 0 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-fun3);
  color: #fff;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 11px;
  }
  header .container {
    flex-wrap: wrap;
    gap: 9px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    height: auto;
    min-height: 56px;
    padding: 12px 8px 9px 8px;
  }
  .main-nav {
    gap: 5px;
  }
  .cta-button {
    font-size: 1.03rem;
    padding: 9px 20px;
    margin-left: 8px;
  }
}
@media (max-width: 800px) {
  header .container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .mobile-menu {
    display: flex;
  }
}

/* --- PRODUCTS TABLE --- */
.products-table {
  width: 100%;
  overflow-x: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.products-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px #ffe7600c,0 2px 7px #f45b6929;
  overflow: hidden;
}
.products-table th {
  font-family: var(--font-display);
  background: #FFE760;
  color: var(--color-primary);
  font-weight: 800;
  padding: 20px 14px 20px 18px;
  font-size: 1.1rem;
  border-bottom: 4px solid #F7F9FA;
  text-align: left;
}
.products-table td {
  padding: 15px 13px 15px 18px;
  color: #22292f;
  border-bottom: 1.5px solid #F7F9FA;
}
.products-table tr:last-child td {
  border-bottom: none;
}

/* --- CARDS & CONTENT --- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.products-list > h3 {
  margin-top: 18px;
  margin-bottom: 4px;
}
.products-list p {
  margin-bottom: 10px;
}

/* ---- TEXT/IMAGE Flex Section ---- */
.text-image-section {
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ---- FOOTER ---- */
footer {
  background: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 -5px 22px #3ebf8b0b, 0 -1px 6px #f7f9fa99;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  padding: 32px 12px 20px 12px;
  align-items: stretch;
}
.footer-logos {
  flex: 1 1 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-logos img {
  height: 38px;
  filter: drop-shadow(0 2px 7px #ffe76050);
}
.footer-nav {
  flex: 2 1 210px;
  display: flex;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.01rem;
  margin-bottom: 2px;
  transition: color .09s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
}
.footer-contact {
  flex: 3 1 250px;
  display: flex;
  align-items: flex-start;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.footer-contact img {
  width: 21px;
}
.footer-legal {
  flex: 2 1 210px;
  display: flex;
  align-items: flex-start;
}
.footer-legal nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-legal a {
  color: #828b9c;
  font-size: .98rem;
  margin-bottom: 3px;
  transition: color .13s;
}
.footer-legal a:hover, .footer-legal a:focus {
  color: var(--color-accent);
}
.footer-social {
  flex: 0 1 120px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 8px;
}
.footer-social a {
  transition: transform .18s;
}
.footer-social a:hover {
  transform: scale(1.16) rotate(-3deg);
}
.footer-social img {
  width: 28px;
}
.footer-copy {
  flex: 0 1 100%;
  text-align: center;
  font-size: 0.92rem;
  color: #788da7;
  margin-top: 16px;
  margin-bottom: 4px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    padding: 28px 7px 12px 7px;
  }
  .footer-copy {
    margin-top: 18px;
  }
}

/* ----- TESTIMONIAL CARDS ----- */
.testimonial-card {
  background: #fff;
  color: #18324A;
  border-radius: 22px;
  box-shadow: 0 3px 18px #ffe7601a, 0 2px 8px #3ebf8b0e;
  margin-bottom: 20px;
  border: 2.5px solid var(--color-fun1);
}
.testimonial-card p {
  color: #263e5d;
  font-style: italic;
  font-size: 1.12rem;
}
.testimonial-card span {
  font-family: var(--font-display);
  color: var(--color-fun2);
  font-size: .96rem;
  font-weight: 700;
}

/* --- SECTION SPACING --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 22px;
}
@media (max-width: 650px) {
  .container {
    max-width: 99vw;
    padding-left: 5px;
    padding-right: 5px;
  }
  section, .section {
    margin-bottom: 38px;
    padding: 21px 8px 12px 8px;
    border-radius: 14px;
  }
  .card {
    min-width: 120px;
    padding: 16px 8px;
    border-radius: 14px;
  }
}

/* ---- BUTTONS & MICRO-INTERACTIONS ---- */
button, .cta-button {
  cursor: pointer;
}
button:focus, .cta-button:focus {
  outline: 2.5px solid var(--color-fun3);
  outline-offset: 1.5px;
}

/* --- Fun Animated Floating Dots --- */
@keyframes floaty {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-12px) scale(1.15) rotate(-6deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}
.card:after,
.section:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  right: 12px;
  top: 12px;
  width: 28px;
  height: 28px;
  background: var(--color-fun2);
  border-radius: 50%;
  opacity: .18;
  animation: floaty 3s infinite;
}
.card:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  left: 12px;
  bottom: 18px;
  width: 18px;
  height: 18px;
  background: var(--color-fun1);
  border-radius: 50%;
  opacity: .15;
  animation: floaty 2.5s alternate infinite;
}

/* --- Utility Spacing --- */
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-3 { margin-top: 32px !important; }
.mb-3 { margin-bottom: 32px !important; }

div:not(:last-child).card, .card-container .card:not(:last-child), .testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}

/* --- Responsive for Flex rows/columns --- */
@media (max-width: 900px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* ---- Accentuated Details for Playful Dynamic Feel ---- */
.section {
  box-shadow: 0 6px 28px 0 rgba(62,191,139,.07);
  border: 2.5px dashed var(--color-fun3);
}
.section:after {
  background: var(--color-fun3);
  opacity: .13;
  top: 14px;
  right: 18px;
  width: 32px; height: 32px;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #F7F9FA;
  border-top: 3px solid #FFE760;
  box-shadow: 0 -2px 38px #3ebf8b11, 0 1px 1px #f7f9fa75;
  z-index: 2222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px 17px 18px;
  font-size: 1rem;
  animation: banner-slide-in .7s cubic-bezier(.71,2.2,.43,.82);
}
@keyframes banner-slide-in {
  0% { transform: translateY(70px); opacity: 0; }
  90% { transform: translateY(-7px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 11px;
}
.cookie-btn {
  background: #3EBF8B;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.03rem;
  border: none;
  border-radius: 32px;
  padding: 9px 26px;
  margin-left: 0;
  margin-right: 2px;
  box-shadow: 0 3px 16px #3ebf8b11;
  transition: background .13s, transform .14s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #159e6b;
  transform: translateY(-1.5px) scale(1.02);
}
.cookie-btn.reject {
  background: #F45B69;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #B63A4B;
}
.cookie-btn.settings {
  background: #FFE760;
  color: #18324A;
  font-weight: 700;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fff6b0;
  color: #F45B69;
}

/* --- Cookie Modal Overlay --- */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #18324a72;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in .33s cubic-bezier(.74,1.3,.43,.84);
}
@keyframes modal-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 9px 38px #ffe76033,0 2px 12px #18324a1a;
  max-width: 395px;
  width: 92vw;
  padding: 36px 24px 22px 24px;
  position: relative;
  animation: modal-pop-in .33s cubic-bezier(.74,1.3,.43,.84);
}
@keyframes modal-pop-in {
  0% { transform: scale(.79) translateY(58px); opacity: 0; }
  80% { transform: scale(1.06) translateY(-8px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.37rem;
  color: var(--color-fun2);
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 13px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-fun2);
  cursor: pointer;
  transition: color .13s;
  z-index: 40;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-accent);
}
.cookie-modal-categories {
  margin: 22px 0 17px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.01rem;
  padding: 8px 0;
}
.cookie-modal-category .switch {
  display: inline-block;
  width: 39px;
  height: 23px;
  position: relative;
}
.cookie-modal-category .switch input {
  display: none;
}
.cookie-modal-category .slider {
  position: absolute;
  top: 0; left: 0;
  width: 39px; height: 23px;
  background: #e9ecef;
  border-radius: 20px;
  cursor: pointer;
  transition: background .13s;
}
.cookie-modal-category .switch input:checked + .slider {
  background: #3EBF8B;
}
.cookie-modal-category .slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px #18324a1d;
  transition: transform .13s;
}
.cookie-modal-category .switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal-category .locked {
  font-size: 1.33em;
  color: #bdbdbd;
  margin-left: 6px;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-actions .cookie-btn {
  min-width: 110px;
}

/* --- Accessibility / Focus state --- */
a:focus, button:focus, .cookie-btn:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 2px;
}
.mobile-nav a:focus {
  outline: 2px solid var(--color-fun3);
}

/* --- Playful Dynamic Details: Fun Fonts & Color --- */
h1, h2, h3 {
  text-transform: none;
  letter-spacing: 0.01em;
}
h2, h3 {
  font-style: italic;
}
h2 {
  background: linear-gradient(90deg, #F45B69 75%, #FFD860 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* fallback in place for color webkit */
}
h2, h3 {
  margin-top: .2em;
}

/* --- Selection styling --- */
::selection {
  background: #F45B69;
  color: #fff;
}

/* --- Animation/Pulse for buttons & CTA --- */
.cta-button, .cookie-btn {
  animation: cta-glow 1.5s infinite alternate ease-in-out;
}
@keyframes cta-glow {
  0%   { box-shadow: 0 0 0px #f45b691b, 0 2px 8px #3ebf8b0a; }
  90%  { box-shadow: 0 4px 28px #f45b695b, 0 2px 12px #3ebf8b11; }
  100% { box-shadow: 0 10px 52px #ffe7604c, 0 2px 18px #3ebf8b17; }
}

/* --- Responsive Typography & Element Sizing --- */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.37rem; }
  h3 { font-size: 1.09rem; }
  .testimonial-card p { font-size: .99rem; }
  .content-wrapper { gap: 10px; }
  .mobile-nav a { font-size: 1rem; padding: 12px 12px 12px 22px; }
  .hero { min-height: 170px; }
  .footer-contact li { font-size: .93rem; }
  .products-table th, .products-table td { padding: 8px 3px 8px 6px; }
}

/* --- Fade in for main content, playful feel --- */
main, .section, section {
  animation: fadein 1.2s cubic-bezier(.63,1.81,.17,1) 0s;
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(40px) scale(.988); }
  to   { opacity: 1; transform: none; }
}

/* --- Hide scrollbars on mobile-menu/modal --- */
.mobile-menu, .cookie-modal-backdrop {     scrollbar-width: none;   }
.mobile-menu::-webkit-scrollbar, .cookie-modal-backdrop::-webkit-scrollbar {
  display: none;
}

/* --- END --- */
