/* ---------------------------------------------------------
  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,
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #FBF7F3;
  color: #355F4B;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  transition: color 0.15s;
}
a:focus {
  outline: 2px solid #98cbb9;
  outline-offset: 2px;
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #355F4B;
  font-weight: 700;
}
p, li, span, strong, label, input, button, textarea {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
}

/* ---------------------------------------------------------
  VARIABLES: MODERN PASTEL PALETTE
---------------------------------------------------------- */
:root {
  --primary: #355F4B;
  --secondary: #BBA99B;
  --accent: #F0F4F0;
  --pastel-pink: #F3D9D8;
  --pastel-mint: #D9F2EA;
  --pastel-blue: #D8E6F3;
  --pastel-yellow: #FFF6D8;
  --pastel-purple: #E7D8F3;
  --white: #fff;
  --offwhite: #FBF7F3;
  --text-light: #5D6762;
  --bg-card: #F0F4F0;
  --shadow: 0 2px 12px rgba(181,166,189,0.09);
  --radius: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition: all 0.23s cubic-bezier(.37,1,.56,.98);
}

/* ---------------------------------------------------------
  TYPOGRAPHY
---------------------------------------------------------- */
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--primary);
  background: var(--offwhite);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--primary);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--primary);
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.18rem;
  margin-bottom: 4px;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}
p, ul, ol {
  font-size: 1rem;
  color: var(--text-light);
}
strong {
  font-weight: 700;
}
a {
  color: var(--primary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
a:hover { color: var(--secondary); }

/* ---------------------------------------------------------
  GENERAL LAYOUT + CONTAINER
---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* ---------------------------------------------------------
  HEADER & NAVIGATION
---------------------------------------------------------- */
header {
  background: linear-gradient(90deg, #F3D9D8 0%, #D9F2EA 100%);
  border-bottom: 0.5px solid #E7D8F3;
  box-shadow: 0 1px 10px rgba(120,120,155,0.03);
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-mint);
  color: var(--primary);
}
.cta-btn.primary {
  padding: 10px 26px;
  background-color: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  margin-left: 28px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(53,95,75,0.08);
  transition: var(--transition);
  outline: none;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cta-btn {
  padding: 10px 22px;
  background: var(--pastel-mint);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(53,95,75,0.07);
  margin-top: 12px;
  margin-bottom: 4px;
  transition: var(--transition);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: #fff;
}

/* ---------------------------------------------------------
  MOBILE BURGER MENU
---------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  margin-left: 24px;
  cursor: pointer;
  z-index: 40;
  transition: color 0.15s;
  padding: 4px 10px;
}
.mobile-menu-toggle:focus { color: var(--secondary); outline: 2px solid var(--secondary); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #F3D9D8 10%, #D8E6F3 100%);
  z-index: 150;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.37,1,.56,.98);
  box-shadow: 0 4px 32px rgba(181,166,189,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
  animation: slideInMenu 0.38s cubic-bezier(.37,1,.56,.98);
}
@keyframes slideInMenu {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0%); }
}
.mobile-menu-close {
  font-size: 2.3rem;
  background: none;
  border: none;
  color: var(--primary);
  align-self: flex-end;
  margin: 18px 22px 6px 0;
  cursor: pointer;
  z-index: 160;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}
.mobile-menu-close:focus { color: var(--secondary); outline: 2px solid var(--secondary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12px 38px;
  gap: 24px;
  margin-top: 18px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--primary);
  padding: 11px 4px 11px 0px;
  border-radius: var(--radius-sm);
  transition: background 0.13s, color 0.13s;
  min-width: 170px;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-mint);
  color: var(--secondary);
}

/* ---------------------------------------------------------
  HERO SECTION (Startseite)
-----------------------------------------------------------*/
.hero {
  min-height: 380px;
  display: flex;
  align-items: center;
  background: linear-gradient(100deg, #F3D9D8 0px, #D9F2EA 72%, #D8E6F3 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 7px 38px 0 rgba(218,199,255,0.13);
  margin-bottom: 50px;
  padding-top: 35px;
  padding-bottom: 32px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 2.7rem;
  font-weight: 800;
  text-shadow: 0 2px 7px rgba(218,185,215,0.06);
}
.hero .subheadline {
  font-size: 1.19rem;
  font-weight: 400;
  max-width: 440px;
  margin: 0 0 18px 0;
  color: var(--primary);
}

/* ---------------------------------------------------------
  FEATURES SECTION
-----------------------------------------------------------*/
.features {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  background: var(--pastel-mint);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow);
  padding: 40px 0 40px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  justify-content: space-between;
}
.feature-grid li {
  flex: 1 1 210px;
  background: var(--bg-card);
  padding: 26px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.feature-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
}
.feature-grid p {
  color: var(--primary);
  font-size: 1.07rem;
}

/* ---------------------------------------------------------
  ABOUT, VALUES, TEAM
-----------------------------------------------------------*/
.about {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 0;
  box-shadow: var(--shadow);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.values-list, .core-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.values-list li, .core-values li {
  padding-left: 1.2em;
  position: relative;
}
.values-list li:before, .core-values li:before {
  content: '\2022';
  color: var(--secondary);
  font-size: 1.15em;
  position: absolute;
  left: 0;
}

.team-intro {
  background: var(--pastel-blue);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  margin-top: 18px;
  box-shadow: var(--shadow);
}

/* ---------------------------------------------------------
  CARD CONTAINER & CARDS
-----------------------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--bg-card);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 18px;
  min-width: 230px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* ---------------------------------------------------------
  CONTENT GRID (e.g., mehrspaltig)
-----------------------------------------------------------*/
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* ---------------------------------------------------------
  TEXT-IMAGE SECTIONS
-----------------------------------------------------------*/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-image-section .text-section {
  flex: 2;
}
.text-image-section img, .text-image-section .image {
  max-width: 420px;
  flex: 1 1 220px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------------------------------------------------------
  TESTIMONIALS
-----------------------------------------------------------*/
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: var(--pastel-yellow);
  color: #222;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(235,177,222,0.13);
  margin-bottom: 20px;
  font-size: 1.05rem;
  transition: box-shadow 0.17s;
}
.testimonial-card p {
  color: #141b15;
  font-size: 1.13rem;
  font-style: italic;
}
.testimonial-card span {
  color: #5D6762;
  font-size: 1rem;
}
.star-rating {
  font-size: 1.3rem;
  color: #EBB1DE;
  margin-top: 2px;
  letter-spacing: 1.5px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 34px rgba(180,160,230,0.13);
}

/* ---------------------------------------------------------
  FEATURE, SERVICE + ITEM COMPONENTS
-----------------------------------------------------------*/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--pastel-blue);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin: 12px 0;
}
 
/* SECTION: SERVICES */
.services-overview, .services-list {
  background: var(--pastel-mint);
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: var(--shadow);
  padding: 40px 0;
}
.service-list, .services-list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.service-list li, .services-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  box-shadow: var(--shadow);
  font-size: 1.05rem;
  margin-bottom: 12px;
  justify-content: space-between;
}
.service-list li strong,
.services-list li strong {
  min-width: 190px;
  color: var(--primary);
}
.service-list li span,
.services-list li span {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1rem;
  margin-left: auto;
}
.service-icon img {
  height: 32px;
  width: 32px;
}

/* HOW IT WORKS */
.step-guide {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
  margin: 10px 0 16px 1.2em;
}
.step-guide li {
  list-style: decimal;
  color: var(--primary);
  margin-left: 0.5em;
}

.faq-excerpt {
  margin-top: 24px;
  background: var(--pastel-purple);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  box-shadow: var(--shadow);
}

/* -------------------------------------------
  NEWSLETTER, CTA BLOCKS
----------------------------------------------*/
.newsletter, .cta, .catalog-cta, .service-highlight {
  background: var(--pastel-blue);
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: var(--shadow);
  padding: 40px 0;
}
.newsletter .cta-btn, .catalog-cta .cta-btn, .service-highlight .cta-btn {
  margin-top: 12px;
}

/* -------------------------------------------
  KATALOG & LISTING SECTIONS
----------------------------------------------*/
.category-list ul, .filter-options ul, .featured-items-grid, .inspiration-list, .next-steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.category-list ul li, .filter-options ul li, .featured-items-grid li, .inspiration-list li, .next-steps-list li {
  background: #fff;
  padding: 13px 17px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--primary);
  box-shadow: var(--shadow);
  min-width: 180px;
  margin-bottom: 16px;
}
.quick-info-tag {
  background: var(--pastel-mint);
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 2px 12px;
  margin-left: 7px;
  font-size: .92rem;
  font-weight: 500;
}

.searchbar {
  margin: 24px 0 16px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.searchbar input {
  width: 250px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid #E7D8F3;
  font-size: 1.05rem;
  background: #fff;
  color: var(--primary);
  outline: none;
  pointer-events: none;
  opacity: 0.7;
}
.filter-options {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.filter-options span {
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
}
.featured-items-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}
.featured-items-grid li {
  background: var(--pastel-yellow);
  color: var(--primary);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  min-width: 210px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  transition: box-shadow 0.18s;
}
.featured-items-grid li:hover {
  box-shadow: 0 7px 24px rgba(235,177,222,0.17);
}

/* GIFT IDEAS / INSPIRATION TAGS */
.occasion-tags, .preferences-options {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.occasion-tags span {
  background: var(--pastel-pink);
  color: var(--primary);
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  box-shadow: var(--shadow);
}

/* ---------------------------------------------
  FORM/INPUTS
----------------------------------------------*/
input, textarea, select {
  background: var(--accent);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid #E7D8F3;
  font-size: 1rem;
  margin-bottom: 10px;
  outline: none;
  transition: border 0.15s;
  color: var(--primary);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
}
label {
  font-size: 1rem;
  margin-bottom: 4px;
}

/* ---------------------------------------------
  FOOTER
----------------------------------------------*/
footer {
  background: linear-gradient(90deg, #F0F4F0 10%, #E7D8F3 100%);
  border-top: 1px solid #f0e8ea;
  font-size: 0.97rem;
  margin-top: 70px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  padding: 34px 20px;
  gap: 48px;
  justify-content: space-between;
}
.footer-logo img {
  width: 72px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: var(--primary);
  padding: 7px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav a:hover {
  color: var(--secondary);
}
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact a {
  text-decoration: underline;
  color: var(--secondary);
  transition: color 0.14s;
}
.footer-contact a:hover { color: var(--primary); }

/* --------------------------------------
  THANK YOU PAGE
---------------------------------------*/
.thank-you .container {
  align-items: center;
  justify-content: center;
}
.next-steps {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 14px 0;
}

/* -------------------------------------
  LEGAL / DATENSCHUTZ / GDPR INFO BLOCKS
--------------------------------------*/
.legal {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: var(--shadow);
  padding: 40px 0;
}
.legal .text-section h2, .legal .text-section h3, .legal .text-section h4 {
  margin-top: 18px;
  color: var(--primary);
}
.legal .cookie-info-list li {
  margin-bottom: 9px;
}

/* -------------------------------------
  RESPONSIVE DESIGN
--------------------------------------*/
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
    padding: 0 8vw;
  }
  footer .container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .main-nav,
  .cta-btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 10px;
    max-width: 98vw;
  }
  .feature-grid, .category-list ul, .filter-options ul, .featured-items-grid, .card-container, .inspiration-list, .next-steps-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card, .card {
    min-width: unset;
    padding: 18px 10px;
  }
  .about, .services-overview, .newsletter, .cta, .catalog-cta, .service-highlight, .legal {
    padding: 26px 0;
  }
  .section {
    margin-bottom: 40px;
    padding: 24px 8px;
  }
  .footer-logo img {
    width: 60px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  h1 {
    font-size: 1.67rem;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.25rem;
  }
  .hero .subheadline {
    font-size: .98rem;
    max-width: 99%;
  }
  .container, .content-wrapper, .section {
    padding-left: 2vw !important;
    padding-right: 2vw !important;
  }
}

/* --------------------------------------
  INTERACTIONS: TRANSITIONS & HOVER
--------------------------------------*/
.cta-btn, .cta-btn.primary, .main-nav a, .footer-nav a, .mobile-nav a, .card, .testimonial-card, .featured-items-grid li, .feature-grid li {
  transition: var(--transition);
}
.card:hover, .feature-grid li:hover, .featured-items-grid li:hover {
  box-shadow: 0 8px 28px rgba(227,206,255,0.13);
  transform: translateY(-2px) scale(1.012);
}
.cta-btn:active, .cta-btn.primary:active {
  transform: scale(0.96);
}

/* --------------------------------------
  COOKIE CONSENT BANNER & MODAL
--------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 98vw;
  max-width: 480px;
  background: linear-gradient(90deg,#FFF6D8 10%,#D9F2EA 100%);
  color: var(--primary);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -3px 24px rgba(200,188,255,0.09);
  padding: 26px 20px 20px 20px;
  z-index: 1400;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
  animation: fadeinBanner 0.6s;
}
@keyframes fadeinBanner {
  0% { opacity: 0; transform: translateY(35px) translateX(-50%);} 
  100% { opacity: 1; transform: translateY(0) translateX(-50%);} 
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 4px;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  background: var(--pastel-mint);
  color: var(--primary);
  box-shadow: 0 1px 5px rgba(220,188,255,0.04);
  transition: var(--transition);
}
.cookie-accept {
  background: var(--primary);
  color: #fff;
}
.cookie-accept:hover,
.cookie-accept:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-reject {
  background: var(--pastel-pink);
  color: var(--primary);
}
.cookie-reject:hover,
.cookie-reject:focus {
  background: var(--secondary);
  color: #fff;
}
.cookie-settings {
  background: var(--pastel-yellow);
  color: var(--primary);
}
.cookie-settings:hover,
.cookie-settings:focus {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 560px){
  .cookie-banner {
    max-width: 99vw;
    padding: 12px 6px 12px 6px;
  }
  .cookie-banner-actions { gap: 5px; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-bg {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(120,110,140,0.23);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinBg 0.3s;
}
@keyframes fadeinBg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(80,90,120,0.13);
  padding: 36px 24px 26px 24px;
  width: 98vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  z-index: 1510;
  animation: fadeinModal 0.4s;
}
@keyframes fadeinModal {
  from { opacity: 0; transform: translateY(36px);} to {opacity:1; transform: translateY(0);}
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--pastel-blue);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 1rem;
  color: var(--primary);
}
.cookie-modal-category .always-on {
  font-size: 0.97rem;
  color: #7a8086;
  font-style: italic;
  margin-left: 4px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  margin-bottom: -10px;
}

/* Toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
  margin-left: 12px;
}
.switch input[type='checkbox'] {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--pastel-pink);
  border-radius: 30px;
  transition: background 0.17s;
}
.switch input:checked + .slider {
  background: var(--primary);
}
.slider:before {
  content: '';
  position: absolute;
  left: 3px;
  bottom: 3px;
  height: 16px;
  width: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
}
.switch input:checked + .slider:before {
  transform: translateX(16px);
}

/* Close btn */
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 12px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 51;
  transition: color 0.1s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--secondary);
}

/* --------------------------------------------------------
  MISC
---------------------------------------------------------- */
::-webkit-scrollbar { width: 10px; background: var(--accent); }
::-webkit-scrollbar-thumb { background: #ece4ec; border-radius: 18px; }
::-webkit-scrollbar-thumb:hover { background: #ddd2de; }

::selection {
  background: var(--pastel-mint);
  color: var(--primary);
}

hr {
  border: none;
  height: 1px;
  background: #f0e8ea;
  margin: 24px 0;
}
