/* DriftCore Smart – Vibrant Energetic CSS
   Brand colors: #232F3E (primary), #17A398 (secondary), #F4F7FA (accent)
   Fonts: Oswald (display), Roboto (body)
   Layout: Flexbox ONLY (no grid, no columns)
   Mobile first, fully responsive.*/

/* --------------------
   RESET & NORMALIZE
---------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
}
ul, ol {
  list-style: none;
  padding: 0;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
button, input, select, textarea {
  font: inherit;
}
/* Remove outlines, add accessible focus later */
button {
  border: none;
  background: none;
  cursor: pointer;
}

/* ---------------------------
   FONT IMPORTS (Google Fonts)
----------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F4F7FA;
  color: #232F3E;
  line-height: 1.7;
}

/* --------------
   BRAND COLORS
 ---------------*/
:root {
  --clr-primary: #232F3E;
  --clr-secondary: #17A398;
  --clr-accent: #F4F7FA;
  --clr-electric-blue: #06b2fa;
  --clr-electric-yellow: #ffe168;
  --clr-electric-magenta: #e61eb6;
  --clr-shadow: rgba(23, 163, 152, 0.12);
}

/* --------------
   TYPOGRAPHY
---------------*/
h1, h2, h3, h4, .cta-btn {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.1;
  color: var(--clr-primary);
  margin-bottom: 16px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--clr-electric-blue);
  font-weight: 700;
}
h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--clr-primary);
  font-weight: 600;
}
p, li {
  font-size: 1rem;
  color: #232F3E;
}
.subheadline {
  font-size: 1.15rem;
  color: var(--clr-secondary);
  margin-bottom: 16px;
  font-weight: 500;
}

@media (min-width: 600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.25rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.3rem; }
}

/* ----------
   BUTTONS
------------*/
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(90deg, var(--clr-electric-blue) 60%, var(--clr-electric-magenta) 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 38px;
  box-shadow: 0 4px 20px var(--clr-shadow);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  border: none;
  cursor: pointer;
  margin-top: 18px;
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(100deg, var(--clr-electric-magenta) 30%, var(--clr-electric-blue) 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px var(--clr-shadow);
  outline: 2px solid var(--clr-electric-blue);
}

button, .btn {
  padding: 10px 22px;
  border-radius: 34px;
  border: none;
  background: var(--clr-secondary);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--clr-electric-magenta);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 3px 16px rgba(230, 30, 182, 0.15);
  outline: 2px solid var(--clr-electric-magenta);
}

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

/* SPACING SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 2px 32px var(--clr-shadow);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 30px 8px;
    border-radius: 16px;
  }
}

/* HERO SECTION */
.hero {
  padding: 50px 0 40px 0;
  background: linear-gradient(100deg, #17A398 0%, #F4F7FA 100%);
  margin-bottom: 28px;
}
.hero h1 {
  color: var(--clr-primary);
}
.hero .subheadline {
  color: var(--clr-electric-magenta);
  margin-bottom: 18px;
  max-width: 700px;
}
.hero .cta-btn {
  margin-top: 10px;
}

@media (min-width: 900px) {
  .hero .container {
    display: flex;
    align-items: center;
    min-height: 340px;
  }
}

/* FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px var(--clr-shadow);
  padding: 32px 24px;
  min-width: 270px;
  flex: 1 1 260px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.card:hover, .card:focus-within {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 48px rgba(23,163,152,0.21);
  z-index: 2;
}
.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;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 30px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 2px 20px var(--clr-shadow);
  max-width: 560px;
}
.testimonials .testimonial-card {
  background: #fff;
  border-left: 6px solid var(--clr-electric-blue);
  box-shadow: 0 4px 32px rgba(6,178,250,0.12);
}
.testimonial-meta {
  color: var(--clr-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.testimonial-meta span {
  color: #f4b400;
  font-size: 1.05em;
  margin-left: 3px;
  font-family: 'Oswald', sans-serif;
}

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

/* UNIQUE COMPONENTS – FEATURES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.feature {
  flex: 1 1 220px;
  min-width: 210px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px var(--clr-shadow);
  padding: 30px 24px 22px 24px;
  text-align: left;
  transition: box-shadow 0.18s, transform 0.13s;
  margin-bottom: 20px;
  position: relative;
}
.feature img {
  height: 46px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 12px var(--clr-electric-blue));
}
.feature:hover, .feature:focus-within {
  transform: scale(1.045) translateY(-4px);
  box-shadow: 0 7px 42px rgba(6,178,250,0.16);
  z-index: 2;
}

.product-teasers, .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.product {
  background: #17A398;
  color: #fff;
  border-radius: 15px;
  padding: 26px 18px 22px 18px;
  min-width: 230px;
  flex: 1 1 215px;
  box-shadow: 0 2px 20px var(--clr-shadow);
  transition: box-shadow 0.19s, transform 0.14s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
.product h3 {
  color: #ffe168;
  font-size: 1.15rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.01em;
}
.product:hover, .product:focus-within {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 8px 36px rgba(255,225,104,0.09);
}

.filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.filters a {
  background: #fff;
  color: var(--clr-secondary);
  padding: 6px 22px;
  border-radius: 19px;
  font-weight: 500;
  box-shadow: 0 1px 6px var(--clr-shadow);
  transition: background 0.16s, color 0.16s;
}
.filters a:hover {
  background: var(--clr-electric-magenta);
  color: #fff;
}

/* CARDS
------------------ */
.founder-message {
  background: #232F3E;
  color: #fff;
  border-radius: 13px;
  padding: 22px 20px;
  box-shadow: 0 2px 20px rgba(35,47,62,0.12);
  font-size: 1rem;
  margin-top: 18px;
}
.founder-message strong {
  color: var(--clr-electric-yellow);
}

.faq-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 10px var(--clr-shadow);
  padding: 20px 22px;
  margin-bottom: 18px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.faq-item:hover, .faq-item:focus-within {
  background: #17A398;
  color: #fff;
  box-shadow: 0 6px 32px rgba(23,163,152,0.21);
}
.faq-item:hover h3, .faq-item:focus-within h3 {
  color: #ffe168;
}

/* FAQ SEARCH */
.faq-search {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.faq-search input[type="search"] {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #17A398;
  border-radius: 21px;
  font-size: 1rem;
  margin-right: 12px;
  outline: none;
  transition: border-color 0.16s;
}
.faq-search input[type="search"]:focus {
  border-color: #e61eb6;
}

/* FAQ CATEGORIES */
.faq-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.faq-categories li {
  background: #06b2fa;
  color: #fff;
  font-size: 0.95rem;
  border-radius: 15px;
  padding: 7px 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ADDRESS MAP */
.address-map {
  background: #fffbe2;
  border-radius: 12px;
  padding: 13px 16px 13px 13px;
  margin-top: 12px;
  box-shadow: 0 1px 8px rgba(255,225,104,0.21);
  display: flex;
  align-items: center;
  gap: 20px;
}
.address-map img {
  width: 38px;
}

/* LEGAL SECTIONS */
.legal {
  margin-bottom: 60px;
  padding: 42px 0;
}
.legal h1 {
  color: var(--clr-primary);
}
.legal h2 {
  color: var(--clr-secondary);
  margin-top: 30px;
}
.legal a {
  color: var(--clr-electric-magenta);
  font-weight: 500;
}
.legal a:hover {
  text-decoration: underline;
  color: var(--clr-secondary);
}

/* ---------------------
   HEADER & NAVIGATION
----------------------*/
header {
  background: #232F3E;
  color: #fff;
  width: 100%;
  box-shadow: 0 2px 20px rgba(6,178,250,0.09);
  padding: 0;
  position: relative;
  z-index: 20;
}
header .container {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
header img {
  height: 42px;
  margin-right: 18px;
  vertical-align: middle;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 10px;
  border-radius: 5px;
  transition: background 0.13s, color 0.13s;
}
nav a:hover, nav a.active {
  background: var(--clr-secondary);
  color: #232F3E;
}
header .cta-btn {
  margin-left: 10px;
  font-size: 1rem;
  padding: 10px 26px;
  background: linear-gradient(90deg, var(--clr-electric-magenta) 50%, var(--clr-electric-yellow) 120%);
  color: #232F3E;
  font-weight: 700;
  border: none;
  box-shadow: 0 3px 16px rgba(230,30,182,0.12);
}
header .cta-btn:hover, header .cta-btn:focus {
  color: #fff;
  background: linear-gradient(100deg, var(--clr-electric-blue) 40%, var(--clr-electric-magenta) 100%);
}

/* Hide nav + cta on mobile */
@media (max-width: 900px) {
  nav, header .cta-btn {
    display: none !important;
  }
}

/* MOBILE MENU Styles */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 25;
  background: var(--clr-secondary);
  color: #fff;
  border: none;
  border-radius: 13px;
  width: 46px;
  height: 46px;
  font-size: 2.1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.12s;
  box-shadow: 0 1px 6px var(--clr-shadow);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--clr-electric-magenta);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,47,62,0.97);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.86,0,.07,1);
  box-shadow: 0 4px 48px rgba(23,163,152,0.18);
  padding: 0;
  min-width: 240px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 20px 0 18px 24px;
  font-size: 2.1rem;
  color: #fff;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  transition: background 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--clr-electric-magenta);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding-left: 34px;
  margin-top: 14px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.10rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 0;
  border-radius: 6px;
  margin-right: 16px;
  transition: background 0.13s, color 0.13s;
  min-width: 67vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--clr-secondary);
  color: #232F3E;
}

@media (min-width: 900px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ---------------
   FOOTER
----------------*/
footer {
  background: #232F3E;
  color: #fff;
  padding: 44px 0 18px 0;
  margin-top: 42px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #17A398;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.14s, text-decoration 0.14s;
}
.footer-nav a:hover {
  color: #ffe168;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1rem;
  align-items: center;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 19px;
  vertical-align: middle;
  margin-right: 3px;
}
.footer-copy {
  font-size: 0.97rem;
  margin-top: 16px;
  color: #f4f7fa;
}

@media (max-width: 740px) {
  footer .container {
    gap: 8px;
  }
  .footer-nav { gap: 8px; }
  .footer-contact { gap: 10px; flex-direction: column; }
}

/* ----------------------
   COOKIE CONSENT STYLES
------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--clr-primary) 77%, var(--clr-secondary) 100%);
  color: #fff;
  padding: 22px 20px 22px 20px;
  z-index: 1200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 -2px 24px rgba(23,47,62,0.08);
}
.cookie-banner p {
  font-size: 1rem;
  margin: 0;
  letter-spacing: 0.01em;
  color: #f4f7fa;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-btn {
  padding: 8px 24px;
  border-radius: 24px;
  background: var(--clr-electric-blue);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  border: none;
  font-size: 1.02rem;
  margin-left: 3px;
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.13s, transform 0.12s;
  cursor: pointer;
}
.cookie-btn.cookie-reject {
  background: var(--clr-electric-magenta);
}
.cookie-btn.cookie-settings {
  background: var(--clr-electric-yellow);
  color: var(--clr-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  transform: scale(1.05) translateY(-1.5px);
  opacity: 0.92;
  outline: 2px solid #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 7px 18px 7px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1300;
  background: rgba(35,47,62,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.32s, visibility 0.32s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  color: #232F3E;
  border-radius: 19px;
  box-shadow: 0 4px 52px rgba(35,47,62,0.18);
  max-width: 420px;
  width: 93vw;
  padding: 34px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeinModal 0.39s cubic-bezier(.75,0.2,.22,1);
}
@keyframes fadeinModal {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  color: var(--clr-electric-blue);
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  border-bottom: 1px solid #ececec;
  padding-bottom: 4px;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--clr-secondary);
  transition: background 0.2s;
  border-radius: 24px;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--clr-electric-blue);
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 5px rgba(23,163,152,0.15);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal-close {
  background: transparent;
  color: var(--clr-primary);
  font-size: 1.8rem;
  border: none;
  position: absolute;
  right: 18px; top: 18px;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--clr-secondary);
}

/* Ensure overlay on scroll */
.cookie-modal::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

/* ---------------
   THANK YOU PAGE
------------------*/
.thanks {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------
   MISC UTILITIES
---------------- */
.muted {
  color: #9ebbb6; /* desaturated secondary */
}
.text-center {
  text-align: center;
}
.bold {
  font-weight: 700;
}
.shadow {
  box-shadow: 0 2px 20px var(--clr-shadow);
}
.rounded {
  border-radius: 16px;
}

/* ---------------
   RESPONSIVE & FLEX CONTROLS
-----------------------------*/
@media (max-width: 1100px) {
  .feature-grid,
  .product-grid,
  .product-teasers {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .feature-grid,
  .product-teasers,
  .product-grid,
  .footer-contact {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 640px) {
  .content-wrapper, .footer-nav {
    gap: 13px;
  }
  .card, .feature, .testimonial-card, .product {
    min-width: 180px;
    padding: 18px 10px;
  }
}

/* ---------------
   ANIMATIONS
----------------*/
.cta-btn, .btn, .card, .feature, .testimonial-card, .product, .faq-item, .mobile-nav a, .cookie-btn {
  transition: transform 0.15s, background 0.17s, box-shadow 0.13s, color 0.13s;
}

/* Visually hidden – can be re-used for accessibility (e.g. cookie modal close btn desc) */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* --------------
   SCROLLBARS
---------------*/
body {
  scrollbar-width: thin;
  scrollbar-color: var(--clr-electric-blue) #F4F7FA;
}
body::-webkit-scrollbar {
  width: 7px;
  background: #F4F7FA;
}
body::-webkit-scrollbar-thumb {
  background: var(--clr-electric-blue);
  border-radius: 5px;
}

/* --------------
   A11Y FOCUS
---------------*/
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2px solid var(--clr-electric-yellow);
  outline-offset: 1.5px;
}

/* Ensure minimum spacing between all cards and sections */
.card, .feature, .product, .testimonial-card, .faq-item, .content-wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}

/* Ensure adequate z-index stacking for overlays */
.cookie-banner, .cookie-modal { z-index: 1200; }
.mobile-menu { z-index: 1010; }

/* END DriftCore Smart CSS */
