/* ==========================================================
   Volt Spark Fitness - vintage_retro Style
   Modern Vintage Retro-inspired Responsive Flexbox CSS
   ========================================================== */

/* ========= 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;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.7;
  background: #f7f5ef;
  color: #252a2f;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* ============ VINTAGE RETRO COLORS ============ */
:root {
  --primary: #203043;
  --secondary: #6DD400;
  --accent: #ECEFF1;
  --retro-orange: #e06f1f;
  --retro-yellow: #ffe091;
  --retro-blue: #247ba0;
  --retro-camel: #d1ad7c;
  --retro-cream: #f7f1e3;
  --retro-brown: #7a6048;
  --retro-red: #c44536;
  --black: #252a2f;
  --white: #fff;
  --body-bg: #f7f5ef;
  --shadow-sm: 0 2px 12px rgba(32,48,67,0.10);
  --shadow-md: 0 4px 20px rgba(32,48,67,0.15);
  --radius-main: 18px;
  --radius-btn: 12px;
  --transition: .2s cubic-bezier(.47,1.64,.41,.8);
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 17px;
  color: var(--primary);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--primary);
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.section h2 {
  color: var(--retro-orange);
  text-shadow: 1px 2px 0 var(--retro-yellow), 0 2px 10px rgba(0,0,0,0.07);
}
p, ul, ol, li, table, .text-section {
  font-size: 17px;
  color: var(--primary);
}
strong, b {
  font-weight: 700;
  color: var(--retro-brown);
}

/* vintage headings underline */
h2, h3 { position: relative; }
h2:after, h3:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--retro-yellow);
  border-radius: 2px;
  position: absolute;
  left: 0; bottom: -8px;
  opacity: 0.8;
}

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

.text-section {
  margin: 24px 0;
  padding: 0;
}

.text-section ul {
  padding-left: 1.5em;
  margin: 6px 0 0 0;
  list-style: disc;
}
.text-section li {
  margin-bottom: 6px;
}

/***** =============== MAIN SECTION SPACING =============== *****/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--retro-cream);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-sm);
}
section.hero {
  background: var(--retro-yellow);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(226,185,88,.09);
}
section.hero:after {
  content: '';
  position: absolute;
  top: 0; right: -48px; bottom: 0;
  width: 180px;
  background: repeating-linear-gradient(135deg, rgba(224,111,31,0.05) 0 10px, transparent 10px 20px);
  pointer-events: none;
  z-index: 1;
}

/***** FLEXBOX LAYOUTS (NO GRID) *****/
.feature-grid, .feature-list, .usp-list,
.trainer-profiles, .services-list, .kontakt-methoden {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-grid {
  flex-direction: row;
  justify-content: flex-start;
}
.usp-list, .feature-list {
  flex-direction: column;
  gap: 16px;
}
.trainer-profiles {
  flex-direction: row;
  align-items: stretch;
  gap: 22px;
}
.services-list {
  flex-direction: column;
  gap: 18px;
}

/**** CARDS & CARD-CONTAINERS (e.g. testimonials) ****/
.card-container, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.card, .testimonial-card, .trainer-card {
  background: var(--white);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 28px 22px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 2px solid var(--accent);
  min-width: 240px;
  max-width: 370px;
  flex: 1 1 265px;
  z-index: 1;
}
.card:hover, .testimonial-card:hover, .trainer-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px) scale(1.03);
}

/***** TESTIMONIAL & FEATURE LAYOUTS *****/
.testimonial-slider {
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: var(--retro-cream);
  border: 2px dashed var(--retro-orange);
  box-shadow: 0 3px 14px 0 rgba(203,81,22,0.05);
  padding: 20px 24px;
  min-width: 260px;
  max-width: 380px;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-extra, .testimonial-card div:last-child {
  color: var(--retro-brown);
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  margin-top: 2px;
}

/***** FEATURE ITEM QUASI-CARDS *****/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 16px 14px 14px;
  background: var(--accent);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-sm);
}

/***** KURS & USP LISTEN *****/
.kurs-liste, .feature-list, .usp-list {
  flex-direction: column;
  gap: 16px;
}
.kurs-liste li, .usp-list li, .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1.5px dotted var(--retro-camel);
  font-size: 16px;
}
.kurs-liste li:last-child, .usp-list li:last-child, .feature-list li:last-child {
  border-bottom: none;
}
.kurs-liste img,
.usp-list img,
.feature-list img {
  width: 34px;
  height: 34px;
  margin-right: 9px;
}

/***** SERVICES LIST *****/
.services-list li {
  padding: 16px 16px;
  background: var(--retro-cream);
  border: 1.5px solid var(--retro-camel);
  border-radius: var(--radius-btn);
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(164,122,27,0.04);
  transition: box-shadow var(--transition);
}
.services-list li:hover {
  box-shadow: 0 4px 16px rgba(224,111,31,0.09);
}
.services-list a {
  color: var(--primary);
  display: block;
  font-weight: 500;
  font-size: 17px;
}
.services-list strong { color: var(--retro-orange); }
.services-list div { font-size: 16px; color: var(--primary); margin-top: 2px; }

/***** TRAINER CARDS *****/
.trainer-card {
  flex: 1 1 245px;
  background: var(--accent);
  border: 2px solid var(--retro-blue);
  box-shadow: var(--shadow-sm);
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--black);
  opacity: .98;
}
.trainer-card strong { font-size: 1.12rem; color: var(--retro-brown); }
.trainer-card span { font-size: 0.96rem; color: var(--retro-blue); font-weight: 500; }

/***** PRICING TABLE *****/
.tarif-tabelle {
  width: 100%;
  border-collapse: collapse;
  background: var(--retro-camel);
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 2px 15px rgba(32,48,67,0.07);
  border-radius: var(--radius-main);
  overflow: hidden;
  margin-bottom: 20px;
}
.tarif-tabelle th,
.tarif-tabelle td {
  padding: 15px 10px;
  border-bottom: 2px solid var(--accent);
  text-align: left;
  font-size: 16px;
}
.tarif-tabelle thead th {
  background: var(--retro-orange);
  color: var(--white);
  text-shadow: 1px 1px 0 #CC5500;
  font-size: 1.08rem;
}
.tarif-tabelle tbody tr:nth-child(odd) { background: #fffaed; }
.tarif-tabelle tbody tr:nth-child(even) { background: #f7f1e3; }
.tarif-tabelle td {
  color: var(--primary);
  font-weight: 500;
}

/***** CTA BUTTONS & LINK STYLES *****/
.cta-btn {
  display: inline-block;
  background: var(--retro-orange);
  color: var(--white);
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.18rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius-btn);
  box-shadow: 0 3px 10px rgba(224,111,31,.08);
  padding: 15px 36px;
  margin-top: 12px;
  border: 2px solid var(--primary);
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--retro-yellow);
  box-shadow: 0 4px 16px rgba(32,48,67,0.12);
}

nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.01rem;
  margin: 0 10px;
  padding: 5px 7px;
  color: var(--primary);
  letter-spacing: 0.01em;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
nav a:hover, nav a:focus {
  background: var(--retro-yellow);
  color: var(--retro-orange);
}

.mobile-nav a {
  display: block;
  padding: 16px 28px;
  margin-bottom: 3px;
  font-size: 1.12rem;
  border-bottom: 1px solid var(--retro-cream);
}  
.mobile-nav a:hover {
  background: var(--retro-yellow);
  color: var(--primary);
  border-radius: 12px;
}

/* ============ HEADER ============ */
header {
  background: var(--retro-camel);
  box-shadow: 0 3px 12px rgba(207,183,78,0.08);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 18px 0;
}
.logo img {
  max-height: 52px;
  width: auto;
  filter: sepia(0.22) contrast(1.0) saturate(0.93);
}
header nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

header .cta-btn {
  margin-left: 20px;
}

header .mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  color: var(--primary);
  background: none;
  margin-left: 25px;
  border-radius: 12px;
  padding: 6px 14px;
  border: 2px solid transparent;
  transition: background .14s, border-color .14s;
}
header .mobile-menu-toggle:focus {
  background: var(--accent);
  border-color: var(--retro-orange);
}

/* ============ MOBILE BURGER MENU ============ */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-cream);
  box-shadow: 4px 0 32px 0 rgba(32,48,67,0.11);
  z-index: 1020;
  transform: translateX(-110vw);
  transition: transform .32s cubic-bezier(.56,.09,.36,1.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding-top: 30px;
  will-change: transform;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 2.2rem;
  color: var(--primary);
  background: var(--accent);
  border-radius: 12px;
  padding: 4px 14px 2px 14px;
  z-index: 1030;
  border: 2px solid var(--retro-orange);
  transition: background .14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { background: var(--retro-orange); color: #fff; }
.mobile-nav {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--retro-brown);
  transition: background 0.18s, color 0.18s;
}

/***** MOBILE BREAKPOINTS & NAV TOGGLE *****/
@media (max-width: 1000px) {
  header nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: inline-block;
  }
  header .cta-btn {
    display: none;
  }
}
@media (max-width: 1000px) {
  .mobile-menu {
    padding-left: 0;
    padding-right: 0;
  }
}

/***** SECTIONS & CONTENT FLEX LAYOUT *****/
.text-image-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: stretch; }
}

/***** FOOTER ============= */
footer {
  background: var(--retro-brown);
  color: var(--retro-cream);
  padding: 38px 0 26px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  border-radius: 12px 12px 0 0;
}
.footer-logo img {
  max-height: 60px;
  margin-bottom: 10px;
  filter: sepia(0.12) brightness(1.07);
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--retro-yellow);
  font-size: 1rem;
  margin: 0;
  transition: color .14s;
}
footer nav a:hover { color: var(--retro-orange); }
.footer-contact {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--retro-cream);
  font-size: 0.99rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact img {
  width: 18px;
  vertical-align: middle;
  margin-right: 4px;
}

/***** LOCATION MAP in CONTACT *****/
.location-map {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--accent);
  padding: 8px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(32,48,67,0.06);
  margin: 15px 0 9px 0;
  font-size: 16px;
}
.location-map img {
  width: 36px;
  height: 36px;
  filter: sepia(0.17) contrast(1.1);
}

/* ================= COOKIE CONSENT BANNER ================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2100;
  background: var(--retro-yellow);
  color: var(--primary);
  padding: 22px 18px 18px 18px;
  box-shadow: 0 -4px 24px 0 rgba(32,48,67,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 14px 14px 0 0;
  font-size: 16px;
  transition: transform .26s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-banner .cookie-text {
  max-width: 560px;
  font-size: 1.02rem;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  display: inline-block;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--primary);
  background: var(--retro-orange);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-right: 8px;
  margin-bottom: 0;
  cursor: pointer;
  transition: background .14s, color .14s, box-shadow .21s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: var(--retro-yellow);
  box-shadow: 0 2px 6px 0 rgba(32,48,67,0.12);
}
.cookie-settings-btn {
  background: var(--retro-blue);
  color: #fff;
  border-color: var(--retro-blue);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--primary);
  color: var(--retro-yellow);
}

@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    padding: 24px 10px 12px 10px;
  }
  .cookie-consent-actions {
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }
}

/* --------------- COOKIE MODAL --------------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(45,36,26,0.23);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: background .14s;
  opacity: 1;
  animation: fadeIn 0.23s;
}
.cookie-modal.hide { opacity: 0; pointer-events: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.cookie-modal-content {
  background: var(--retro-cream);
  border-radius: 24px;
  box-shadow: 0 8px 36px 0 rgba(32,48,67,0.19);
  padding: 42px 28px 38px 28px;
  min-width: 300px;
  max-width: 98vw;
  width: 420px;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h3 {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  color: var(--retro-orange);
  margin-bottom: 8px;
  font-size: 1.25rem;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 18px; right: 24px;
  font-size: 2rem;
  background: var(--retro-yellow);
  color: var(--retro-brown);
  border-radius: 10px;
  padding: 1px 12px;
  border: 1.5px dashed var(--retro-orange);
  transition: background .13s, color .13s;
  cursor: pointer;
}
.cookie-modal .close-cookie-modal:hover,
.cookie-modal .close-cookie-modal:focus {
  background: var(--retro-orange);
  color: #fff;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 2px 0 13px 0;
  font-size: 15px;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: var(--retro-yellow);
  border: 2px solid var(--retro-brown);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  margin-right: 9px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  top: 2.5px; left: 3px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--retro-orange);
  box-shadow: 1px 1.3px 4px 0 rgba(32,48,67,0.12);
  transition: left .18s, background .18s;
}
.cookie-toggle input:checked + .slider {
  left: 17px;
  background: var(--retro-blue);
}
.cookie-modal .cookie-category .desc {
  color: var(--retro-brown);
  font-size: 0.97rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}
.cookie-modal-actions .cookie-btn {
  width: 100%;
  margin-right: 0;
}

/***** ========== RESPONSIVE LAYOUTS ========== *****/
@media (max-width: 900px) {
  .footer-logo, .footer-contact, footer nav {
    flex: 1 1 100%;
    min-width: 180px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .container { padding: 0 10px; }
}
@media (max-width: 768px) {
  .container { padding: 0 4vw; }
  .content-wrapper {
    padding: 0;
    gap: 16px;
  }
  section {
    padding: 28px 6px;
    margin-bottom: 34px;
  }
  .feature-grid, .card-container, .testimonial-slider, .trainer-profiles {
    gap: 14px;
  }
  .feature-grid, .testimonial-slider, .trainer-profiles {
    flex-direction: column;
    align-items: stretch;
  }
  h1 { font-size: 2rem; margin-bottom:12px; }
  h2 { font-size: 1.35rem; margin-bottom: 10px; }
  h3 { font-size: 1.07rem; }
}
@media (max-width: 520px) {
  .card, .testimonial-card, .trainer-card {
    padding: 17px 7px 13px 9px;
    min-width: 90vw;
    max-width: 97vw; 
  }
}

/***** FAQ, LISTS ***** */
.faq-liste {
  background: var(--accent);
  border-radius: 14px;
  padding: 17px 18px 8px 18px;
  margin: 0 0 16px 0;
  box-shadow: 0 2px 9px rgba(32,48,67,0.04);
}

/***** TABLES GENERIC *****/
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
thead { background: var(--accent); }
th, td {
  border-bottom: 1.7px solid var(--retro-camel);
  padding: 13px 6px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
}
th { text-align: left; color: var(--primary); }
tr:last-child td { border-bottom: none; }

/***** CONTACT ICONS ALIGNMENT *****/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 15px 0;
  font-size: 17px;
}
.contact-details img {
  width: 22px;
  margin-right: 6px;
  vertical-align: middle;
}
.contact-details a {
  color: var(--retro-blue);
  text-decoration: underline;
  font-weight: 500;
}
.contact-details a:hover { color: var(--retro-orange); }

/***** SCROLLBARS *****/
body, .mobile-menu, textarea {
  scrollbar-width: thin;
  scrollbar-color: var(--retro-brown) var(--body-bg);
}
body::-webkit-scrollbar, .mobile-menu::-webkit-scrollbar {
  width: 10px;
  background: var(--body-bg);
}
body::-webkit-scrollbar-thumb, .mobile-menu::-webkit-scrollbar-thumb {
  background: var(--retro-camel);
  border-radius: 14px;
}

a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid var(--retro-blue);
  outline-offset: 2px;
}

/* ============ MICRO-INTERACTIONS ============ */
.card, .testimonial-card, .feature-item, .services-list li, .faq-liste, .trainer-card, .cookie-btn, .cta-btn {
  transition: box-shadow 0.21s cubic-bezier(.47,1.64,.41,.8), transform 0.18s;
}
.card:active, .testimonial-card:active, .feature-item:active, .services-list li:active, .faq-liste:active, .trainer-card:active {
  transform: scale(0.98);
  box-shadow: 0 1px 3px rgba(32,48,67,0.09);
}

/***** Z-INDEX FOR MODALS & MENUS *****/
.mobile-menu { z-index: 1020; }
.mobile-menu-close { z-index: 1030; }
.cookie-consent-banner { z-index: 2100; }
.cookie-modal { z-index: 2200; }

/***** PRINT FRIENDLY (Don't show cookie/banner/nav on print) *****/
@media print {
  .cookie-consent-banner, .cookie-modal, .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
