/* SALONGUIDE LOKAL | MODERN GRADIENT THEME | RESPONSIVE FLEXBOX ONLY */

/* RESET & FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;700&display=swap');

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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.6;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #F0EDEE 0%, #fff 80%);
  color: #224265;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 1.25em;
}
a {
  color: #224265;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #bfa181;
  outline: none;
  text-decoration: underline;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1a3654;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 0.5em; }
h2 { font-size: 2rem; margin-bottom: 0.6em; }
h3 { font-size: 1.25rem; margin-bottom: 0.4em; }
h4 { font-size: 1rem; margin-bottom: 0.3em; }

p, li, label, input, textarea, select, button {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
strong, b {
  font-weight: 700;
}

/* === FLEX CONTAINER STANDARD === */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 3px 16px 0 rgba(34,66,101,0.04);
  z-index: 20;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 80px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
header nav a {
  color: #224265;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
}
header nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #bfa181;
  transition: width 0.2s;
  margin-top: 6px;
  border-radius: 1px;
}
header nav a:hover:after, header nav a:focus:after {
  width: 80%;
}

.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(90deg, #224265 25%, #bfa181 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  border-radius: 34px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  box-shadow: 0 4px 18px 0 rgba(34,66,101,0.09);
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.18s, transform 0.16s;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #1a3654 20%, #bfa181 110%);
  box-shadow: 0 8px 22px 0 rgba(34,66,101,0.18);
  transform: translateY(-2px) scale(1.036);
  color: #fff;
}
.btn-secondary {
  display: inline-block;
  padding: 10px 28px;
  background: #fff;
  color: #224265;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 24px;
  font-weight: 600;
  border: 2px solid #bfa181;
  cursor: pointer;
  box-shadow: 0 2px 9px 0 rgba(34,66,101,0.07);
  transition: color 0.16s, border 0.18s, background 0.19s;
  margin-top: 10px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #bfa181;
  color: #fff;
  border-color: #224265;
}

/* Hamburger mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #224265;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(34,66,101,0.09);
  z-index: 23;
  margin-left: 12px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus {
  background: #eee;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,66,101,0.97);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.7,.2,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 24px 24px 24px;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  background: none;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  align-self: flex-end;
  margin-bottom: 32px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  transition: background 0.2s;
  z-index: 101;
}
.mobile-menu-close:focus {
  background: rgba(255,255,255,0.17);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  padding: 10px 0 10px 8px;
  border-radius: 5px;
  transition: background 0.19s, color 0.16s;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #bfa181;
  color: #224265;
}

/* === MAIN/SECTION STYLING | GRADIENT MODERN === */
main {
  width: 100%;
  padding-top: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.hero {
  background: linear-gradient(108deg, #224265 0%, #bfa181 150%);
  color: #fff;
  min-height: 380px;
  display: flex;
  align-items: center;
  position: relative;
}
.hero h1, .hero h2, .hero h3, .hero h4 {
  color: #fff;
}
.hero .content-wrapper {
  max-width: 800px;
  gap: 24px;
}
.hero p {
  font-size: 1.22rem;
  margin-bottom: 20px;
  color: #fff;
}
.hero .btn-primary {
  background: #bfa181;
  color: #224265;
  border: none;
}
.hero .btn-primary:hover {
  background: #fff;
  color: #bfa181;
}

/* Features Section */
.features {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 32px rgba(34,66,101,0.05);
}
.features .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px 40px;
  justify-content: space-between;
  margin-top: 24px;
}
.features ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  width: 100%;
  padding-left: 0;
}
.features ul li {
  background: #F0EDEE;
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(34,66,101,0.05);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 20px 22px 20px;
}
.features ul li img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
  opacity: 0.93;
}
.features ul li h3 {
  color: #224265;
  font-size: 1.16rem;
  margin-bottom: 4px;
}
.features ul li p {
  font-size: 1rem;
  color: #224265;
}

/* Services Preview/Card Styles */
.services-preview {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 24px rgba(34,66,101,0.04);
}
.services-preview .content-wrapper {
  gap: 18px;
}
.services-preview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  width: 100%;
  padding-left: 0;
}
.services-preview ul li {
  background: #F0EDEE;
  border-radius: 16px;
  padding: 12px 20px;
  font-size: 1.065rem;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 360px;
  margin-bottom: 10px;
  color: #224265;
}
.services-preview a {
  color: #224265;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 10px;
}
.services-preview a:hover, .services-preview a:focus {
  color: #bfa181;
}

/* --- Salons finden Cards --- */
.salon-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(34,66,101,0.07);
  padding: 24px 24px 18px 24px;
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 370px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.21s, transform 0.16s;
}
.salon-card:hover, .salon-card:focus-within {
  box-shadow: 0 4px 24px rgba(191,161,129,0.18), 0 3px 7px rgba(34,66,101,.10);
  transform: translateY(-3px) scale(1.02);
}
.salon-card h3 {
  margin-bottom: 5px;
  color: #224265;
}
.salon-card .salon-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.02rem;
  color: #BFA181;
}
.salon-card .btn-secondary {
  margin-top: 12px;
}

/* SALON LIST WRAPPER */
.locations-list .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/* SEARCH FILTERS */
.search-filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 15px;
  align-items: center;
}
.search-filter-wrapper input,
.search-filter-wrapper select {
  font-size: 1rem;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1.5px solid #bfa181;
  background: #fff;
  color: #224265;
  min-width: 180px;
  flex: 1 1 120px;
  outline: none;
  transition: border 0.19s;
}
.search-filter-wrapper select:focus,
.search-filter-wrapper input:focus {
  border-color: #224265;
}

/* --- Blog Cards --- */
.blog-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(34,66,101,0.08);
  padding: 24px 24px 22px 24px;
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 375px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.15s;
}
.blog-card:hover, .blog-card:focus-within {
  box-shadow: 0 5px 28px rgba(191,161,129,0.22);
  transform: translateY(-3.5px) scale(1.019);
}
.blog-card h3 {
  font-size: 1.13rem;
}
.blog-card a {
  font-weight: 700;
  color: #224265;
  margin-top: 6px;
}
.blog-card a:hover, .blog-card a:focus { color: #bfa181; }

/* --- Testimonial Cards --- */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 24px 20px 24px;
  background: #F0EDEE;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,66,101,0.07);
  max-width: 350px;
  min-width: 215px;
  color: #1a3654; /* dark text for contrast */
  font-size: 1.05rem;
  margin-bottom: 20px;
  min-height: 170px;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #224265;
  quotes: "\201C" "\201D" "\2018" "\2019";
  margin-bottom: 10px;
}
.testimonial-author {
  font-size: 0.98rem;
  font-weight: 600;
  color: #bfa181;
}

/* --- CTA Band --- */
.cta-band {
  background: linear-gradient(90deg, #224265 0%, #bfa181 130%);
  border-radius: 20px;
  box-shadow: 0 2px 20px 0 rgba(34,66,101,0.12);
  display: flex;
  align-items: center;
  color: #fff;
}
.cta-band .content-wrapper {
  gap: 16px;
  align-items: center;
}
.cta-band h2,
.cta-band p { color: #fff; }
.cta-band .btn-primary {
  background: #fff;
  color: #224265;
}
.cta-band .btn-primary:hover { color: #bfa181; }

/* --- Services Full List --- */
.services-full .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.service-item {
  background: #F0EDEE;
  border-radius: 17px;
  padding: 22px 28px;
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  box-shadow: 0 2px 11px 0 rgba(34,66,101,0.06);
  font-size: 1rem;
}
.service-item h2 {
  font-size: 1.21rem;
  color: #224265;
}
.service-item span {
  color: #bfa181;
  font-size: 1rem;
  font-weight: 400;
}
.service-item p {
  font-size: 1rem;
  color: #224265;
}

/* --- About Section --- */
.about .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}

/* --- Info Section (Salons finden) --- */
.info .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.info ol {
  padding-left: 1.6em;
  margin: 0 0 14px 0;
}
.faq-links {
  margin-top: 12px;
}
.faq-links a {
  color: #224265;
  font-weight: 600;
  transition: color 0.17s;
}
.faq-links a:hover { color: #bfa181; }

/* --- Form Styling --- */
.contact-form form, .contact-form .content-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 380px;
  margin-top: 12px;
}
.contact-form label {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 3px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  border: 1.5px solid #bfa181;
  border-radius: 7px;
  padding: 12px 14px;
  font-size: 1rem;
  outline: none;
  background: #fff;
  color: #224265;
  transition: border 0.18s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #1a3654;
}
.contact-form textarea {
  min-height: 88px;
}
.contact-form button[type="submit"] {
  align-self: flex-start;
  margin-top: 10px;
}

/* --- Map Embed --- */
.map-embed {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #F0EDEE;
  border-radius: 12px;
  padding: 20px 18px;
}
.map-embed img {
  width: 64px; height: 64px; display: block;
}
.map-embed p { margin: 0; }

/* --- Legal Pages --- */
.legal .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 2px 12px rgba(34,66,101,0.04);
}
.legal ul, .legal ol {
  margin-left: 1.5em;
  margin-bottom: 10px;
}
.legal a {
  color: #224265;
  text-decoration: underline;
}
.legal a:hover { color: #bfa181; }

/* --- Confirmation Page --- */
.confirmation .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 36px 26px 28px 26px;
  box-shadow: 0 3px 13px 0 rgba(34,66,101,0.10);
}
.confirmation .social-icons {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 10px;
}
.confirmation .social-icons p {
  margin-right: 12px;
  font-weight: 600;
  color: #224265;
}
.confirmation .social-icons img {
  width: 32px; height: 32px;
  opacity: 0.88;
}

/* --- Footer --- */
footer {
  background: #224265;
  color: #fff;
  padding: 40px 0 0 0;
  border-radius: 24px 24px 0 0;
  margin-top: 60px;
}
footer .container {
  padding-bottom: 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo img {
  width: 52px; height: 52px; margin-bottom: 6px;
}
footer nav.footer-main-nav, footer nav.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav.footer-main-nav a, footer nav.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  opacity: 0.86;
  transition: color 0.15s, opacity 0.21s;
}
footer nav.footer-main-nav a:hover,
footer nav.footer-menu a:hover {
  color: #bfa181;
  opacity: 1;
}
.footer-contact {
  max-width: 320px;
  font-size: 0.98rem;
}
.footer-contact a { color: #bfa181; text-decoration: none; }
.footer-contact a:hover { color: #fff; text-decoration: underline; }
.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-icons img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.25) contrast(1.025);
  opacity: 0.82;
  transition: opacity 0.18s;
  cursor: pointer;
}
.social-icons img:hover { opacity: 1; }

/* --- Utility Styles --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Responsive | Mobile-First */
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    flex-direction: row;
    height: auto;
    gap: 8px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  /* Hide main nav show burger */
  .btn-primary { font-size: 1rem; padding: 10px 20px; }
  section { padding: 30px 10px; margin-bottom: 38px; }
  .content-wrapper, .features .content-wrapper, .services-full .content-wrapper, .locations-list .content-wrapper, .services-preview .content-wrapper {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .features ul, .services-preview ul, .locations-list .content-wrapper {
    flex-direction: column;
    gap: 18px 0;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    padding: 18px 8px;
  }
  .cta-band, .cta-band .content-wrapper { flex-direction: column; }
  .salon-card, .service-item, .blog-card {
    min-width: 0;
    max-width: 100%;
  }
  .map-embed {
    flex-direction: column;
    gap: 14px;
    padding: 14px 9px;
    align-items: flex-start;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
  .footer-logo img {
    width: 36px; height: 36px;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  section { padding: 22px 3vw; }
  .btn-primary, .btn-secondary {
    font-size: 0.97rem;
    padding-left: 15px; padding-right: 15px;
  }
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: linear-gradient(90deg,#224265 60%,#bfa181 120%);
  color: #fff;
  box-shadow: 0 -3px 19px 0 rgba(34,66,101,0.13);
  padding: 22px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 1.07rem;
  animation: cookieSlideUp 0.6s cubic-bezier(.28,.9,.46,1.1);
}
@keyframes cookieSlideUp {
  0% {
    transform: translateY(120%);
    opacity: 0.1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-banner p { margin: 0; font-size: 1.07rem; color: #fff; }
.cookie-banner .cookie-btn-group {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 19px;
  border: none;
  padding: 8px 18px;
  margin: 0;
  outline: none;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.14s, color 0.13s;
}
.cookie-banner .accept {
  background: #bfa181;
  color: #1a3654;
  border: 2px solid #bfa181;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #fff;
  color: #224265;
}
.cookie-banner .reject {
  background: #fff;
  color: #224265;
  border: 2px solid #224265;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #bfa181;
  color: #fff;
}
.cookie-banner .settings {
  background: none;
  border: 2px solid #fff;
  color: #fff;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  border: 2px solid #bfa181;
  color: #bfa181;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 9px;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-btn-group {
    flex-direction: row;
    gap: 7px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,66,101,0.85);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinModal 0.30s;
}
@keyframes fadeinModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 40px 0 rgba(34,66,101,.13);
  padding: 36px 26px 22px 26px;
  min-width: 330px;
  max-width: 95vw;
  color: #224265;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalAppear 0.35s cubic-bezier(.26,.9,.28,1);
}
@keyframes modalAppear {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin: 0 0 12px 0;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  margin-bottom: 9px;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
  display: inline-block;
  width: 44px;
  height: 24px;
  background: #F0EDEE;
  border-radius: 12px;
  position: relative;
  border: 1.5px solid #bfa181;
  vertical-align: middle;
}
.cookie-modal .cookie-toggle input[type=checkbox] {
  opacity: 0;
  width: 44px;
  height: 24px;
  margin: 0;
  cursor: pointer;
  position: absolute;
  left: 0; top: 0;
  z-index: 2;
}
.cookie-modal .cookie-toggle span {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #bfa181;
  transition: left 0.22s;
}
.cookie-modal .cookie-toggle input[type=checkbox]:checked + span {
  left: 23px;
  background: #224265;
}
.cookie-modal .essential {
  color: #224265;
  font-weight: 600;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 19px;
  border: none;
  padding: 8px 16px;
  margin: 0;
  outline: none;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal .save {
  background: #bfa181;
  color: #1a3654;
}
.cookie-modal .save:hover { background: #224265; color: #fff; }
.cookie-modal .cancel {
  background: #F0EDEE;
  color: #224265;
}
.cookie-modal .cancel:hover { background: #bfa181; color: #fff; }
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  border: none;
  color: #224265;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 11;
}
.cookie-modal .cookie-modal-close:hover { color: #bfa181; }
@media (max-width: 480px) {
  .cookie-modal { padding: 22px 8px 12px 10px; min-width: 0; }
}

/* --- Z-INDEX SAFETY --- */
.mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 2000 !important; }

/* --- END --- */
