/* RESET & BASE --------------------------- */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #E6EEF0;
  background: #23292D;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

:root {
  --color-primary: #19505B;
  --color-secondary: #C0D8DA;
  --color-accent: #F2B500;
  --color-text: #E6EEF0;
  --color-bg: #23292D;
  --color-surface: #22282C;
  --color-metal: #879BA3;
  --color-shadow: rgba(30,40,48,0.11);
  --color-surface-light: #30373D;
  --color-contrast-light: #fafbfc;
  --color-contrast-dark: #171B1D;
  --border-radius: 14px;
  --shadow-1: 0 2px 16px 0 rgba(16,24,32,0.15);
  --shadow-card: 0 6px 26px 0 rgba(25, 60, 70, 0.08), 0 2px 6px 0 rgba(20, 36, 42, 0.120);
  --font-display: 'Montserrat', 'Arial Black', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --transition: 0.18s cubic-bezier(.47,.13,.41,.89);
}

img { max-width: 100%; height: auto; border: 0; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--color-secondary); }
strong { font-weight: 600; }

/* TYPOGRAPHY & HEADING SCALE -------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: #F2F5F6;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 { font-size: 2.7rem; line-height: 1.12; margin-bottom: 14px; }
@media (max-width: 768px){ h1 { font-size: 2.1rem; } }
h2 { font-size: 2rem; line-height: 1.18; margin-bottom: 10px; }
@media (max-width: 768px){ h2 { font-size: 1.45rem; } }
h3 { font-size: 1.24rem; line-height: 1.24; margin-bottom: 6px; }
h4 { font-size: 1.05rem; margin-bottom: 5px; }
h5 { font-size: 0.92rem; }
.subheadline {
  color: var(--color-secondary);
  font-size: 1.18rem;
  font-family: var(--font-body);
  margin-bottom: 20px;
  letter-spacing: .02em;
}
p, ul, ol, li { font-size: 1rem; margin-bottom: 0; }

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
}

/* HEADER / NAVIGATION --------------------- */
header {
  background: var(--color-surface-light);
  border-bottom: 1.5px solid #232a2d;
  box-shadow: 0 2px 10px 0 rgba(25,29,34,0.08);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container{
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  height: 54px;
  margin-right: 32px;
}
.logo img {
  height: 42px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #e0ecf4;
  padding: 6px 10px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  position: relative;
  border-radius: 4px;
  transition: background var(--transition) color var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  background: var(--color-metal);
  color: #161d22;
}
.main-nav .cta.primary {
  background: var(--color-accent);
  color: #272a2d !important;
  border-radius: 7px;
  font-weight: 700;
  box-shadow: 0 2px 10px 0 rgba(242,181,0,0.09);
  padding: 11px 21px 11px 21px;
  margin-left: 10px;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 1.07rem;
  transition: background 0.15s, color 0.15s, transform 0.17s;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #F7CB2F;
  color: #222722;
  transform: translateY(-2px) scale(1.04);
}

/* MOBILE MENU ----------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--color-accent);
  font-size: 2rem;
  border: none;
  margin-left: 20px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 103;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #fff;
}
.mobile-menu {
  display: none;
}
@media (max-width: 1000px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(98deg, #22292c 90%, #2d363c 100%);
    z-index: 1200;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 0 0;
    transform: translateX(-100vw);
    opacity: 0;
    pointer-events: none;
    transition: transform .42s cubic-bezier(.47,.13,.41,.89), opacity .24s;
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu-close {
    color: #fff;
    font-size: 2.1rem;
    background: none;
    border: none;
    padding: 22px 25px 7px 0;
    align-self: flex-end;
    cursor: pointer;
    z-index: 1301;
    transition: color 0.17s;
  }
  .mobile-menu-close:hover { color: var(--color-accent); }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    align-items: flex-start;
    padding: 30px 36px 36px 32px;
  }
  .mobile-nav a {
    color: #f3f8fa;
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: 13px 0 10px 0;
    width: 100%;
    border-radius: 4px;
    transition: background 0.18s, color 0.18s;
  }
  .mobile-nav a:hover, .mobile-nav a.active {
    background: var(--color-metal);
    color: #181D22;
  }
}
@media (max-width: 500px) {
  .mobile-nav {
    padding-left: 13px;
    padding-right: 13px;
  }
}

/* HERO / SECTIONS / CARDS ----------------- */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 75%, #232a2d 100%);
  border-bottom: 1px solid #1f3139;
  color: #F2F5F6;
  padding: 56px 0 44px 0;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 11px;
  padding-top: 8px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .hero {
    padding: 32px 0 32px 0;
  }
}

/* FEATURES & CARDS ------------------------ */
.features, .features.destinations, .features.open-hours, .features.ratgeber {
  background: var(--color-surface);
  border-radius: var(--border-radius);
  margin-bottom: 40px;
  box-shadow: var(--shadow-1);
}
.features .content-wrapper, .features.destinations .content-wrapper, .features.open-hours .content-wrapper, .features.ratgeber .content-wrapper  {
  gap: 26px;
}
.feature-grid, .destination-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature, .destination {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-surface-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 28px 20px 23px 20px;
  min-width: 248px;
  flex: 1 1 230px;
  min-height: 185px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-metal);
  transition: box-shadow .18s, border-color .18s;
}
.feature:hover, .destination:hover {
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 6px 32px 0 rgba(242,181,0,0.13);
}
.feature img, .destination img {
  width: 38px;
  height: 38px;
  margin-bottom: 9px;
  filter: grayscale(0.13) contrast(1.06);
}
.feature h3, .destination h3 {
  margin-bottom: 4px; color:var(--color-accent);
}

/* Alternate for UL icon cards */
.features ul, .features.open-hours ul, .features.ratgeber ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-left: 0;
  margin-bottom: 0;
}
.features ul li, .features.open-hours ul li, .features.ratgeber ul li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #e2ecee;
  font-size: 1.09rem;
  margin-bottom: 0;
}
.features ul img {
  width: 23px;
  height: 23px;
  margin-right: 8px;
  margin-bottom: 2px;
  flex-shrink: 0;
  filter: grayscale(0.12) brightness(1.13);
}

/* CARDS AND CARD CONTAINERS --------------- */
.card-container, .card-grid, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.card, .testimonial-card, .destination {
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TESTIMONIALS ---------------------------- */
.testimonials, .testimonial-slider, .testimonial-grid {
  background: var(--color-surface-light);
}
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 18px 24px;
  background: var(--color-contrast-light);
  color: #1c2330;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 18px 0 rgba(40,60,80,0.11);
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 415px;
  min-height: 136px;
  border-left: 4px solid var(--color-metal);
  transition: box-shadow .16s, border-color .15s;
}
.testimonial-card:hover {
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 10px 33px 0 rgba(25,80,91,0.12);
}
.testimonial-card p {
  font-style: italic;
  color: #232d38;
  font-size: 1.06rem;
  margin-bottom: 7px;
}
.testimonial-meta {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.99rem;
  letter-spacing: .011em;
}
@media (max-width: 900px){
  .testimonial-slider,.testimonial-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* SERVICES ------------------------------- */
.services, .services.tour-service, .services.destinations {
  background: var(--color-surface);
  border-radius: var(--border-radius);
  margin-bottom: 40px;
  box-shadow: var(--shadow-1);
}
.services .content-wrapper, .services.tour-service .content-wrapper, .services.destinations .content-wrapper {
  gap: 22px;
}
.services ol, .services.destinations ol {
  list-style: decimal inside;
  margin-bottom: 22px;
  color: var(--color-secondary);
  padding-left: 0;
  padding-top: 6px;
}
.services ol li {
  margin-bottom: 5px;
  font-size: 1.07rem;
  letter-spacing: .02em;
}

/* CONTACT/ADDRESS SECTION ----------------- */
.contact {
  background: var(--color-surface-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-1);
  margin-bottom: 44px;
}
.contact .contact-information, .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.contact .contact-item, .footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8edf0;
  font-size: 1rem;
  margin-bottom: 0;
}
.contact .map-address {
  margin-top: 18px;
}
.contact .map-address h3 {
  font-size: 1.12rem;
  color: var(--color-accent);
  margin-bottom: 4px;
}

/* FOOTER ---------------------------------- */
footer {
  background: #181C20;
  border-top: 2.5px solid #22292D;
  padding: 38px 0 17px 0;
  color: #C0D8DA;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: center;
}
.footer-nav, .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: #B0C7C9;
  margin-right: 6px;
  font-size: 1rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .018em;
  transition: color .17s;
  padding: 2px 7px;
  border-radius: 4px;
}
.footer-nav a:hover {
  color: var(--color-accent);
  background: var(--color-surface-light);
}
.footer-contact .contact-item img {
  width: 20px;
  height: 20px;
  opacity: 0.80;
}
.footer-branding {
  color: #788588;
  font-size: 0.97rem;
  margin-top: 11px;
}

@media (max-width: 800px) {
  .footer-contact, .footer-nav {
    flex-direction: column;
    gap: 12.5px;
    align-items: flex-start;
  }
  footer .container { padding: 0 10px; }
}

/* BUTTONS (CTA) --------------------------- */
.cta {
  background: var(--color-accent);
  color: #1b232c;
  font-family: var(--font-display);
  font-size: 1.13rem;
  padding: 13px 28px;
  border-radius: 32px;
  border: none;
  font-weight: 700;
  letter-spacing: .014em;
  box-shadow: 0 2px 10px 0 rgba(242,181,0,0.07);
  cursor: pointer;
  transition: background .17s, color .16s, box-shadow .12s, transform .16s;
  text-transform: none;
  margin-top: 12px;
  display: inline-block;
}
.cta:hover, .cta:focus {
  background: #fed563;
  color: #181C20;
  box-shadow: 0 8px 32px 0 rgba(242,181,0,0.18);
  transform: translateY(-2px) scale(1.03);
}

/* CONTENT GRID & FLEX UTILS --------------- */
.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;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid, .destination-grid, .testimonial-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* FAQ, LIST STYLES, MISC ------------------ */
.guides-teaser ul, .faq-snippet ul {
  padding-left: 0;
}
.guides-teaser li {
  font-size: 1.04rem;
  margin-bottom: 1px;
}
.faq-snippet {
  background: var(--color-surface);
  border-radius: 9px;
  padding: 8px 14px 12px 14px;
  margin-top: 13px;
  color: var(--color-accent);
}
.faq-snippet h3 {
  margin-bottom: 6px;
}
.next-steps ul {
  padding-left: 0;
  margin-top: 7px;
}
.next-steps li {
  list-style-type: disc !important;
  padding-left: 15px;
  margin-left: 8px;
  color: var(--color-metal);
}

/* LEGAL SECTION --------------------------- */
.legal {
  background: var(--color-surface-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-1);
  padding: 38px 20px;
  margin-bottom: 44px;
}
.legal h1, .legal h2, .legal h3 { color: var(--color-accent); }
.legal h2 { font-size: 1.4rem; margin-top: 22px; }
.legal h3 { font-size: 1.14rem; margin-top: 14px; }
.legal p, .legal li { color: var(--color-secondary); font-size: 1.01rem; }
.legal ul { padding-left: 19px; margin-top: 8px; }

/* CONFIRMATION (THANK YOU) PAGE ----------- */
.confirmation {
  background: var(--color-surface-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-1);
  padding: 45px 0 44px 0;
  margin-bottom: 42px;
  text-align: left;
}
.confirmation .thank-you-message {
  color: var(--color-secondary);
  font-size: 1.18rem;
  margin: 22px 0 12px 0;
}
.confirmation .next-steps h2 {
  color: var(--color-accent);
  font-size: 1.30rem;
  margin-bottom: 7px;
}
.confirmation .cta {
  margin-top: 20px;
}

/* SPACING PATTERNS ------------------------ */
.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; }

/* MISC & OVERRIDES ------------------------ */
::-webkit-input-placeholder { color: #9baec2; }
::-moz-placeholder { color: #9baec2; }
:-ms-input-placeholder { color: #9baec2; }
::placeholder { color: #9baec2; }

/* SCROLLBAR (modern-industrial steel style) */
body::-webkit-scrollbar {
  width: 10px;
  background: #232a2d;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(95deg, #879BA3 65%, #232A2D 100%);
  border-radius: 8px;
}

/* TRANSITIONS, HOVER/FOCUS MICRO-ACTIONS --- */
button, .cta, a, .mobile-menu-close, .mobile-menu-toggle {
  outline: none;
  transition: background 0.14s, color 0.14s, box-shadow 0.11s, border-color 0.16s, transform 0.13s;
}
button:focus, .cta:focus, a:focus {
  box-shadow: 0 0 0 2px var(--color-accent);
}

/* RESPONSIVE QUERIES (FLEX ONLY) ----------- */
@media (max-width: 1000px) {
  .feature-grid, .destination-grid, .card-container, .footer-contact, .footer-nav, .testimonial-slider, .testimonial-grid {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
    gap: 14px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .feature, .destination {
    min-width: 85vw;
    padding: 18px 13px 18px 13px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: 100%;
    padding: 14px 9px 13px 13px;
  }
  .services, .features, .legal, .contact, .confirmation {
    padding: 18px 3px 18px 3px;
  }
}
@media (max-width: 440px) {
  .hero h1, h1 { font-size: 1.22rem; }
  .cta { font-size: 0.99rem; padding: 10px 12px; }
}

/* COOKIE CONSENT BANNER ------------------- */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2000;
  min-height: 72px;
  width: 100vw;
  background: linear-gradient(105deg, #232A2E 86%, #444F56 100%);
  color: #ECEEF2;
  font-size: 1rem;
  box-shadow: 0 -3px 24px rgba(21,23,24,0.07);
  border-top: 3px solid var(--color-primary);
  padding: 20px 38px 18px 24px;
  animation: slideinbanner 0.49s var(--transition) 1;
}
@keyframes slideinbanner {
  from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-buttons {
  display: flex;
  gap: 15px;
}
.cookie-banner button {
  background: none;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 4px;
  padding: 8px 19px;
  font-size: 1rem;
  color: var(--color-accent);
  cursor: pointer;
  transition: background 0.12s, color 0.13s, box-shadow 0.11s, border-color 0.13s;
}
.cookie-banner button.accept {
  background: var(--color-accent);
  color: #222929;
  border-radius: 22px;
  font-weight: 800;
  box-shadow: 0 2px 10px 0 rgba(242,181,0,0.07);
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #fed563;
  color: #181C20;
}
.cookie-banner button.reject {
  color: #aaa;
  background: #2a323a;
  font-weight: 600;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #192328;
  color: #fff;
}
.cookie-banner button.settings {
  color: var(--color-accent);
  border-bottom: 2px dashed var(--color-accent);
  background: none;
  border-radius: 0;
  padding: 8px 7px;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  color: #fff;
  border-color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 19px 9px 12px 11px;
  }
  .cookie-banner-buttons {
    gap: 10px;
  }
}

/* COOKIE MODAL ---------------------------- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,32,36,0.73);
  align-items: center;
  justify-content: center;
  animation: modalin 0.32s cubic-bezier(.47,.13,.41,.89);
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes modalin {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #202930;
  color: #F3F7F9;
  border-radius: 13px;
  box-shadow: 0 7px 42px 0 rgba(25,80,91,0.21);
  padding: 33px 26px 28px 26px;
  max-width: 98vw;
  width: 390px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--color-accent);
  font-size: 1.26rem;
  margin-bottom: 13px;
  font-family: var(--font-display);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  background: #242f36;
  border-radius: 7px;
  padding: 14px 13px;
  font-size: 0.98rem;
}
.cookie-category .always-on {
  color: #b5bebe;
  font-size: 0.92rem;
}

.cookie-category label.switch {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  appearance: none;
  width: 32px;
  height: 18px;
  background: #3e4b53;
  border-radius: 9px;
  position: relative;
  outline: none;
  transition: background .15s;
}
.cookie-category input[type="checkbox"]:checked {
  background: var(--color-accent);
}
.cookie-category input[type="checkbox"]:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  background: #fafafa;
  border-radius: 50%;
  transition: left .15s;
  box-shadow: 0 1px 1px rgba(0,0,0,0.06);
}
.cookie-category input[type="checkbox"]:checked:before {
  left: 16px;
  background: #fff8e3;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 7px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 17px; top: 14px;
  background: none;
  border: none;
  color: #b0babe;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color .12s;
}
.cookie-modal .close-modal:hover{ color: var(--color-accent); }
.cookie-modal .accept { background: var(--color-accent); color: #181c20; }
.cookie-modal .accept:hover{ background: #fed563; }
.cookie-modal .reject { background: #2c3338; color: #eba713; }
.cookie-modal .reject:hover{ background: #434f53; }

@media (max-width: 500px) {
  .cookie-modal {
    width: 98vw;
    padding: 18px 5px;
    gap: 10px;
  }
  .cookie-modal-actions { gap: 6px; }
}

/* PRINT CLEANUP */
@media print{
  .cookie-banner, .cookie-modal-overlay, header, footer { display: none !important; }
}
