/* ================================
   CSS RESET & BASELINE 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F6F4EE;
  color: #493B2A;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #B7955E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5A623;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
button {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
ul, ol {
  padding-left: 1.2em;
}
strong {
  font-weight: bold;
}
hr {
  border: none;
  height: 1px;
  background: #E9E5DD;
  margin: 32px 0;
}

/* =====================
   BRAND FONTS & COLORS
   ===================== */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@700&family=Merriweather:wght@400;700&display=swap');
:root {
  /* Brand colors */
  --primary: #493B2A;
  --secondary: #B7955E;
  --accent: #F6F4EE;
  --brand-orange: #F5A623;
  --brand-pink: #FF6F91;
  --brand-blue: #36C5F0;
  --brand-cyan: #76E4B1;
  --brand-yellow: #FFDD57;
  /* Typography */
  --font-display: 'Bodoni Moda', serif;
  --font-body: 'Merriweather', serif;
}

/* ===========================
   PLAYFUL_DYNAMIC TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display), serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.12;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--brand-blue);
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: var(--secondary);
}
p, ul, ol, li, blockquote {
  font-family: var(--font-body), serif;
  font-size: 1rem;
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--secondary);
  border-left: 4px solid var(--brand-blue);
  padding-left: 14px;
  margin-bottom: 10px;
}

/* Fun headings (animated underline) */
h1, h2 {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: none;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 6px;
  background: var(--brand-yellow);
  border-radius: 3px;
  margin-top: 8px;
  opacity: 0.95;
  transition: width 0.3s;
  z-index: 0;
}
h1:hover::after, h2:hover::after {
  width: 95%;
}

/* "fun" font for accent */
.cta-button, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal .cookie-modal-header {
  font-family: 'Bodoni Moda', serif;
  letter-spacing: 0.01em;
  text-transform: none;
}

/* =====================
   LAYOUT CONTAINERS
   ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 24px;
  box-shadow: 0 7px 24px -4px rgba(55, 63, 73, 0.07), 0 2px 4px 0 rgba(183,149,94, 0.05);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 24px 0px rgba(73,59,42,0.05);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 22px 20px 14px 20px;
}
.logo img {
  height: 48px;
  animation: logoPop 1s cubic-bezier(.36,1.7,.25,.99);
}
@keyframes logoPop {
  0% {transform: scale(0.85) rotate(-7deg);opacity:0;}
  75% {transform: scale(1.06) rotate(2.5deg);opacity:0.85;}
  100% {transform: scale(1) rotate(0deg);opacity:1;}
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-left: 28px;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-yellow);
  color: var(--brand-pink);
}
.cta-button {
  background: linear-gradient(to right, var(--brand-blue) 60%, var(--brand-pink));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 700;
  border-radius: 38px;
  padding: 12px 32px;
  margin-left: 20px;
  box-shadow: 0 3px 18px -5px var(--brand-blue);
  transition: background 0.15s, box-shadow 0.3s, transform 0.12s;
  border: none;
  outline: none;
  letter-spacing: .03em;
  text-shadow: 0 1px 9px rgba(54,197,240,0.12);
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(to right, var(--brand-pink) 60%, var(--brand-yellow));
  color: var(--primary);
  box-shadow: 0 7px 34px -6px var(--brand-pink);
  transform: translateY(-2px) scale(1.03) rotate(-2.5deg);
}

/* Burger menu toggle button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-yellow);
  color: var(--primary);
  z-index: 99;
  font-size: 2.2rem;
  border: 2px solid var(--brand-blue);
  box-shadow: 0 2px 12px -3px var(--brand-yellow);
  justify-content: center;
  align-items: center;
  transition: background 0.18s, box-shadow 0.2s, color 0.2s, transform 0.12s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--brand-pink);
  color: #fff;
  box-shadow: 0 4px 22px -4px var(--brand-pink);
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 88vw;
  max-width: 370px;
  background: #fff;
  box-shadow: 12px 0 44px 0 rgba(183,149,94,0.16), 1px 0 6px 0 rgba(54,197,240,0.07);
  transform: translateX(-110%);
  transition: transform 0.38s cubic-bezier(.27,.94,.44,1.02);
  z-index: 120;
  padding: 0 0 40px 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 24px 12px 0;
  font-size: 2.1rem;
  background: none;
  color: var(--primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: 2px solid var(--brand-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.15s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-pink);
  color: #fff;
  border-color: var(--brand-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  margin-left: 28px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.1rem;
  padding: 13px 10px 13px 0;
  border-radius: 10px;
  background: none;
  transition: background 0.15s, color 0.15s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-blue);
  color: #fff;
}
@media (max-width: 700px) {
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
  }
}

/* Dim background when mobile menu is open */
body.menu-open {
  overflow: hidden;
}
body.menu-open::after {
  content: '';
  position: fixed;
  inset: 0; left: 0; top: 0;
  background: rgba(54,197,240,0.09);
  z-index: 115;
  pointer-events: none;
  animation: menuBackdropFadeIn 0.35s;
}
@keyframes menuBackdropFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =====================
   HERO SECTION & ANIMATIONS
   ===================== */
.hero {
  padding: 56px 0 24px 0;
  background: linear-gradient(98deg, var(--brand-yellow) 40%, #F6F4EE 100%);
  border-radius: 0 0 52px 52px;
  margin-bottom: 48px;
  box-shadow: 0 10px 32px -10px var(--brand-blue);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 600px;
  animation: heroFadeInUp 1.1s;
}
@keyframes heroFadeInUp {
  0% {opacity:0;transform:translateY(36px);}
  100% {opacity:1;transform:translateY(0);}
}
.hero h1 {
  color: var(--primary);
  font-size: 2.3rem;
  background: none;
}
.hero p {
  color: var(--primary);
  font-size: 1.19rem;
  margin-bottom: 8px;
}
.hero .cta-button {
  margin-top: 14px;
}

/* ========================== 
   CARD & FEATURE SECTION STYLES
   ========================== */
.features {
  padding: 40px 20px 55px 20px;
  background: var(--accent);
  border-radius: 32px;
  margin-bottom: 60px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px -5px var(--secondary), 0 0.5px 2px 0 var(--brand-cyan);
  padding: 27px 18px 22px 18px;
  width: min(320px, 100%);
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature-item img {
  display: block;
  width: 46px; height: 46px;
  object-fit: contain;
  margin-bottom: 7px;
  animation: featureFloat 2s infinite alternate;
}
@keyframes featureFloat {
  0% { transform: translateY(0) scale(1.04) rotate(-3deg); }
  100% { transform: translateY(-9px) scale(1.12) rotate(6deg); }
}
.feature-item:hover {
  box-shadow: 0 8px 32px -2px var(--brand-pink);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
  z-index: 2;
}
.feature-item h3 {
  font-family: var(--font-display);
  color: var(--brand-blue);
  font-weight: 700;
  margin: 0 0 7px 0;
}
.features .feature-item:nth-child(odd) {
  border-left: 6px solid var(--brand-pink);
  border-right: 2px solid var(--brand-yellow);
}
.features .feature-item:nth-child(even) {
  border-left: 6px solid var(--brand-blue);
  border-right: 2px solid var(--brand-cyan);
}

/* =============
   CARDS, CONTAINERS & FLEX LAYOUTS
   ============= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 28px 18px 22px 18px;
  box-shadow: 0 1.5px 16px -8px var(--brand-pink), 0 0.5px 2px 0 var(--brand-yellow);
  position: relative;
  width: 360px;
  max-width: 100%;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
}

/* ====================
   TESTIMONIALS SECTION
   ==================== */
.testimonials {
  background: #fffbe9;
  border-radius: 30px;
  margin-bottom: 60px;
  padding: 38px 20px 48px 20px;
}
.testimonials h2 {
  color: var(--brand-pink);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px -5px rgba(54,197,240, 0.09), 0 1px 4px 0 var(--brand-yellow);
  position: relative;
  transition: box-shadow 0.13s, transform 0.14s;
  border-left: 7px solid var(--brand-pink);
}
.testimonial-card blockquote {
  margin: 0;
  font-size: 1.19rem;
  color: var(--primary);
  border: none;
  font-style: italic;
}
.testimonial-credentials {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-left: 11px;
  letter-spacing: 0.02em;
}
.testimonial-card:hover {
  box-shadow: 0 7px 24px -3px var(--brand-blue);
  transform: translateY(-2.5px) scale(1.025);
}

/* ===============
   ABOUT & LEGAL SECTIONS
   =============== */
.about, .about-company, .company-values, .ankauf-ablauf, .verkauf-highlights, .bewertung-service, .restaurierung-leistungen, .restaurierung-gruende, .legal, .contact-details, .text-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 28px;
  box-shadow: 0 7px 24px -4px rgba(55, 63, 73, 0.07), 0 2px 4px 0 rgba(183,149,94, 0.05);
}
.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--primary);
}
.text-section h3 {
  color: var(--brand-blue);
  margin: 11px 0 7px 0;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 8px;
  padding-left: 3px;
}


/* ===============
   CALLOUT + CTA SECTIONS
   =============== */
.contact-teaser, .contact-cta, .thank-you-cta, .ankauf-cta, .verkauf-cta, .bewertung-cta, .restaurierung-cta {
  background: linear-gradient(96deg, var(--brand-cyan) 30%, #fffbe9 100%);
  border-radius: 25px;
  margin-bottom: 60px;
  padding: 32px 18px 36px 18px;
}
.contact-teaser h2, .contact-cta h2, .thank-you-cta h2, .ankauf-cta h2, .verkauf-cta h2, .bewertung-cta h2, .restaurierung-cta h2 {
  color: var(--brand-pink);
  margin-bottom: 12px;
}
.contact-teaser .cta-button, .contact-cta .cta-button, .thank-you-cta .cta-button, .ankauf-cta .cta-button, .verkauf-cta .cta-button,
.bewertung-cta .cta-button, .restaurierung-cta .cta-button {
  margin-top: 12px;
}


/* ================================
   FOOTER
   ================================ */
footer {
  width: 100%;
  background: #fff;
  padding: 32px 0 20px 0;
  border-top: 4px solid var(--brand-yellow);
  box-shadow: 0 -3px 28px -7px var(--brand-blue);
  font-size: 1rem;
  margin-top: 30px;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 44px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 7px;
  align-items: center;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  border-radius: 8px;
  padding: 6px 10px;
  font-family: var(--font-body);
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand-yellow);
  color: var(--brand-pink);
}
.footer-contact p, .footer-contact a {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.46;
}
.footer-contact a {
  color: var(--brand-pink);
  text-decoration: underline; 
}

/* ================================
   RESPONSIVE: MOBILE ADAPTATION
   ================================ */
@media (max-width: 1060px) {
  .container {
    padding: 0 12px;
  }
  .features-grid, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .footer-logo, .footer-nav, .footer-contact {
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .container, .section, .features, .testimonials, .about, .about-company, .company-values, .ankauf-ablauf, .verkauf-highlights, .bewertung-service, .restaurierung-leistungen, .restaurierung-gruende, .legal, .contact-details, .contact-teaser, .contact-cta, .thank-you-cta, .ankauf-cta, .verkauf-cta, .bewertung-cta, .restaurierung-cta{
    padding: 20px 7vw !important;
    margin-bottom: 33px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .content-grid{
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-nav {
    gap: 9px;
  }
  h1 {font-size: 1.6rem;}
  h2 {font-size: 1.24rem;}
}
@media (max-width: 540px) {
  .logo img { height: 38px; }
  .footer-logo img { height: 34px; }
  .cta-button, .main-nav .cta-button { padding: 8px 18px; font-size: 0.95rem; }
  h1 {font-size: 1.13rem;}
  h2 {font-size: 1.05rem;}
}

/* ================================
   HOVER, FOCUS & MICRO-INTERACTIONS
   ================================ */
a, .cta-button, .feature-item, .testimonial-card, .mobile-menu-toggle, .mobile-menu-close, .footer-nav a, .card {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
}
button:active { outline: none; }
.cta-button:focus { box-shadow: 0 0 0 2.5px var(--brand-yellow); }
.feature-item:focus-within {
  outline: 2.5px dashed var(--brand-blue);
}

/* Add playful bounce to main CTA on load */
@keyframes btnBounce {
  0% { transform: scale(0.95) translateY(8px); }
  70% { transform: scale(1.12) translateY(-8px); }
  100% { transform: scale(1) translateY(0); }
}
.cta-button {
  animation: btnBounce 0.96s cubic-bezier(.29,1.86,.64,1.08);
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fffbe9;
  color: var(--primary);
  box-shadow: 0 -5px 22px -9px var(--brand-yellow), 0 -1px 5px 0 var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5vw 14px 5vw;
  z-index: 9999;
  border-radius: 27px 27px 0 0;
  transition: transform 0.4s cubic-bezier(.07,.68,.38,1);
  font-size: 1.05rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 55%;
  margin-right: 24px;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  background: var(--brand-blue);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.14s, color 0.14s, box-shadow 0.13s;
  box-shadow: 0 1px 8px -2px var(--brand-yellow);
}
.cookie-banner button.cookie-settings {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-banner button.reject-all {
  background: var(--brand-yellow);
  color: var(--primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 660px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 4vw;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-banner-text {
    margin-bottom: 7px;
    margin-right: 0;
  }
  .cookie-banner .cookie-banner-buttons {
    width: 100%;
    gap: 8px;
  }
}

/* =====================
   COOKIE MODAL (SETTINGS)
   ===================== */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(36,48,73, 0.19);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: cookieModalIn 0.35s;
}
.cookie-modal.show {
  display: flex;
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 36px -8px var(--brand-cyan), 0 3px 14px -2px var(--brand-yellow);
  max-width: 420px;
  width: 98vw;
  padding: 30px 22px 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: modalPulse 0.36s cubic-bezier(.57,1.17,.38,1.02);
}
@keyframes modalPulse {
  0% { transform: scale(0.8); }
  80% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.cookie-modal-header {
  font-family: var(--font-display);
  font-size: 1.26rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #e9e5dd;
  font-size: 1.08rem;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-body);
}
.cookie-category input[type="checkbox"] {
  appearance: none;
  width: 32px; height: 18px;
  position: relative;
  background: #e6e6e6;
  border-radius: 10px;
  outline: none;
  transition: background 0.15s;
  vertical-align: middle;
  margin-left: 12px;
  cursor: pointer;
}
.cookie-category input[type="checkbox"]:checked {
  background: var(--brand-cyan);
}
.cookie-category input[type="checkbox"]:disabled {
  background: #e9e5dd;
  cursor: default;
}
.cookie-toggle-switch {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 18px;
}
.cookie-toggle-switch input[type="checkbox"] {
  padding: 0;
  vertical-align: middle;
}
.cookie-toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #e6e6e6;
  border-radius: 10px;
  transition: 0.2s;
}
.cookie-toggle-switch input[type="checkbox"]:checked + .slider {
  background: var(--brand-blue);
}
.cookie-toggle-switch .slider:before {
  position: absolute;
  content: '';
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px -1px rgba(54,197,240, 0.12);
  transition: 0.2s;
}
.cookie-toggle-switch input[type="checkbox"]:checked + .slider:before {
  transform: translateX(14px);
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.cookie-modal-actions button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 18px;
  padding: 8px 18px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  background: var(--brand-blue);
  color: #fff;
  margin-bottom: 0;
  box-shadow: 0 2px 7px -2px var(--brand-cyan);
}
.cookie-modal-actions button.close {
  background: var(--brand-yellow);
  color: var(--primary);
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--brand-pink);
  color: #fff;
}

/* ================================
   ACCESSIBILITY: FOCUS STYLES
   ================================ */
a:focus, button:focus {
  outline: 2.5px solid var(--brand-pink);
  outline-offset: 2.5px;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--brand-blue);
}

/* ==========================
   UTILITIES & MISC
   ========================== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.no-select { user-select: none; }

/* ===============
   PRINT & SELECTION
   =============== */
::selection {
  background: var(--brand-yellow);
  color: var(--primary);
}

/* ==========================
   END OF CSS FILE
   ========================== */
