/* ==========================  
   CSS RESET + BASE 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, button, input, textarea, select, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
body {
  line-height: 1.5;
  background: #FAFAF9;
  color: #1a2838;
  min-height: 100vh;
}
*, *:after, *:before {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

/* ===========================
   VARIABLES (with fallbacks)
   =========================== */
:root {
  --primary: #23425D;
  --secondary: #8EB1C7;
  --accent: #F6F5F2;
  --luxury-gold: #CDB47F;
  --light-gold: #EADCA6;
  --deep-blue: #142333;
  --off-white: #F7F7F6;
  --dark: #181b20;
}

/* ====================
   FONT FACE
   ==================== */
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--accent);
  color: var(--dark);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #4b647b;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 14px;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 11px;
}
h4 {
  font-size: 1.125rem; /* 18px */
  margin-bottom: 8px;
}
p, li, address {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--dark);
}
strong, b {
  font-weight: 700;
}

/* Subtle gold underline for display headings - luxury detail */
h1, h2.section-title {
  position: relative;
  padding-bottom: 8px;
}
h1:after, h2.section-title:after {
  content: '';
  display: block;
  margin: 12px 0 0 0;
  width: 48px;
  height: 3px;
  border-radius: 1.5px;
  background: var(--luxury-gold);
}

/* ====================
   CONTAINER LAYOUTS
   ==================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* ================
   HEADER & NAV
   ================ */
header {
  background: #fff;
  border-bottom: 1px solid #EAE0CB;
  box-shadow: 0 2px 7px 0 rgba(205,180,127,0.045);
  position: relative;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  gap: 24px;
}
header img {
  max-height: 52px;
  height: auto;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Merriweather', serif;
  font-size: 1.09rem;
  color: var(--primary);
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--luxury-gold);
}
.main-nav a.active {
  color: var(--luxury-gold);
  font-weight: 700;
  border-bottom: 2px solid var(--luxury-gold);
}
header .cta.primary {
  margin-left: 24px;
}

/* Hide hamburger by default, show on mobile */
.mobile-menu-toggle {
  display: none;
  font-size: 2.08rem;
  background: none;
  padding: 8px 18px 8px 8px;
  color: var(--primary);
  border-radius: 5px;
  border: none;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--luxury-gold);
}

/* ================
   MOBILE MENU
   ================ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 80vw;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 24px 0 rgba(34,66,93,0.16);
  z-index: 100;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.77,.2,.05,1), opacity 0.28s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin: 24px 24px 0 0;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover {
  color: var(--luxury-gold);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 32px 0 32px;
}
.mobile-nav a {
  font-family: 'Merriweather', serif;
  font-size: 1.15rem;
  color: var(--primary);
  border-bottom: 1px solid #F1EED8;
  padding-bottom: 13px;
  transition: color 0.25s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--luxury-gold);
}

/* Cover overlay when menu open */
.mobile-menu::after {
  content: '';
  display: block;
  position: fixed;
  left: 100%;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,66,93,0.28);
  z-index: -1;
  pointer-events: none;
}
.mobile-menu.open::after {
  pointer-events: auto;
}

@media (max-width: 1100px) {
  header .container {
    padding: 14px 6vw;
  }
}
@media (max-width: 880px) {
  header .container {
    padding: 12px 3vw;
    gap: 8px;
  }
  .main-nav {
    gap: 18px;
  }
  header .cta.primary {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .main-nav, header .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 16px;
    right: 19px;
    background: none;
    color: var(--primary);
  }
  .mobile-menu {
    box-shadow: 12px 0 18px -4px rgba(34,66,93,0.14);
    top: 0;
    left: 0;
  }
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  background: linear-gradient(rgba(246,245,242,0.80) 60%, #FFF 100%);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 2px 32px 0 rgba(34,66,93,0.04);
  padding: 52px 0 52px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 18px;
  max-width: 650px;
}
.hero h1 {
  font-size: 2.25rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0;
}
.hero p {
  color: var(--deep-blue);
  text-align: center;
  font-size: 1.12rem;
}
.hero .cta.primary {
  margin-top: 14px;
}

@media (max-width: 768px) {
  .hero {
    padding: 36px 0 30px 0;
    border-radius: 0 0 25px 25px;
  }
  .hero .container {
    padding: 0 7px;
  }
  .hero h1 {
    font-size: 1.55rem;
  }
  .hero .content-wrapper {
    gap: 12px;
  }
}

/* ========================
   FEATURES (Index Page)
   ======================== */
.features, .curated-lists, .personal-recommendations, .tips, .about, .vision, .reading-tips-grid, .contact, .legal, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--off-white);
  border-radius: 28px;
  box-shadow: 0px 1.5px 16px 0px rgba(34,66,93,0.04);
}
.features .container, .curated-lists .container, .personal-recommendations .container, .about .container, .vision .container, .contact .container, .legal .container {
  align-items: flex-start;
  gap: 2px;
}
.features h2, .curated-lists h2, .personal-recommendations h2, .about h2, .vision h2, .contact h2 {
  margin-bottom: 8px;
  font-size: 1.8rem;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  margin-bottom: 0;
}
.features ul li {
  background: #fff;
  border: 1.5px solid #F1EED8;
  box-shadow: 0 1.5px 11px 0 rgba(205,180,127,0.03);
  border-radius: 20px;
  flex: 1 1 220px;
  padding: 26px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  min-width: 180px;
  max-width: 270px;
  position: relative;
  transition: box-shadow 0.22s;
}
.features ul li:hover, .features ul li:focus-within {
  box-shadow: 0 6px 26px 0 rgba(205,180,127,0.10), 0 2.5px 8px 0 rgba(34,66,93,0.05);
  z-index: 2;
}
.features ul li img {
  width: 36px;
  height: 36px;
  display: block;
  margin-bottom: 2px;
}
.features ul li h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--primary);
}
.features ul li p {
  font-size: 0.97rem;
  color: var(--deep-blue);
  line-height: 1.52;
}

@media (max-width: 1080px) {
  .features ul {
    gap: 16px;
  }
}
@media (max-width: 820px) {
  .features ul {
    gap: 12px;
  }
  .features ul li {
    padding: 22px 14px 18px 14px;
    min-width: 100px;
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .features ul {
    flex-direction: column;
    gap: 20px;
  }
  .features ul li {
    align-items: flex-start;
    width: 100%;
    min-width: 87vw;
  }
}

/* Recommendations Preview (Index) */
.recommendations-preview, .tips-preview {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0px 1.5px 16px 0px rgba(34,66,93,0.036);
}
.recommendations-preview .content-wrapper ul,
.tips-preview .content-wrapper ul {
  margin-bottom: 18px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.recommendations-preview .content-wrapper li strong {
  color: var(--deep-blue);
}
.recommendations-preview .cta, .tips-preview .cta {
  margin-top: 6px;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--off-white);
  border-radius: 25px;
  box-shadow: 0 3px 15px 0 rgba(205,180,127,0.07);
}
.testimonials .content-wrapper {
  gap: 30px;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 5px solid var(--luxury-gold);
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 13px 0 rgba(34,66,93,0.04);
  max-width: 650px;
  font-size: 1.08rem;
  color: var(--dark);
  transition: box-shadow 0.2s, border-color 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 22px 0 rgba(34,66,93,0.06), 0 1.5px 9px 0 rgba(205,180,127,0.09);
  border-left: 5px solid var(--light-gold);
  z-index: 1;
}
.testimonial-card p {
  margin: 0;
  color: var(--deep-blue);
  font-size: 1rem;
  flex: 1 1 85%;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: italic;
}

@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px;
    gap: 10px;
    max-width: 97vw;
  }
}

/* ========================
   CTAs
   ======================== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Merriweather', serif;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  padding: 12px 38px;
  background: var(--off-white);
  color: var(--primary);
  border: 2px solid var(--luxury-gold);
  border-radius: 27px;
  font-weight: 700;
  margin-top: 12px;
  transition: 
    background 0.23s,
    color 0.23s,
    border-color 0.18s,
    box-shadow 0.2s;
  box-shadow: 0 2.5px 12px 0 rgba(205,180,127,0.055);
  cursor: pointer;
}
.cta.primary {
  background: var(--luxury-gold);
  color: var(--deep-blue);
  border-color: var(--luxury-gold);
  box-shadow: 0 2.5px 17px 0 rgba(205,180,127,0.12);
}
.cta:hover, .cta:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 5px 24px 0 rgba(205,180,127,0.18);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--deep-blue);
  color: var(--luxury-gold);
  border-color: var(--deep-blue);
}

.cta-section {
  margin-bottom: 60px;
  padding: 44px 20px;
  background: var(--luxury-gold);
  border-radius: 25px;
  text-align: center;
}

/* ===============================
   ABOUT, VISION, TIPS, LEGAL, etc.
   =============================== */
.about ul, .vision ul, .tips ul, .curated-lists ul, .personal-recommendations ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reading-tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
}
.reading-tips-grid > div {
  flex: 1 1 180px;
  background: #fff;
  border: 1.5px solid #F1EED8;
  border-radius: 15px;
  padding: 20px 16px;
  box-shadow: 0 1px 9px 0 rgba(34,66,93,0.04);
  margin-bottom: 20px;
}
.expert-recommendations {
  margin-top: 12px;
  color: var(--deep-blue);
}

@media (max-width: 850px) {
  .reading-tips-grid {
    gap: 10px;
  }
  .reading-tips-grid > div {
    margin-bottom: 15px;
    padding: 16px 10px;
  }
}
@media (max-width: 600px) {
  .reading-tips-grid {
    flex-direction: column;
    gap: 16px;
  }
  .reading-tips-grid > div {
    width: 100%;
    min-width: 95vw;
  }
}

/* Curated list and personal recommendation blocks */
.curated-lists .content-wrapper > div, .personal-recommendations .content-wrapper > div {
  background: #fff;
  border: 1.5px solid #F1EED8;
  border-radius: 16px;
  padding: 20px 18px;
  margin-bottom: 20px;
}
.curated-lists h3, .personal-recommendations h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

/* ========================
   REVIEWS (buchrezensionen)
   ======================== */
.reviews-list .content-wrapper > div {
  margin-bottom: 24px;
}
.review-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
  margin-top: 12px;
}
.book-review-card {
  background: #fff;
  border: 1.5px solid #EAE0CB;
  border-radius: 13px;
  box-shadow: 0px 2px 13px 0px rgba(34,66,93,0.05);
  flex: 1 1 250px;
  min-width: 210px;
  max-width: 330px;
  padding: 24px 17px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.book-review-card:hover {
  box-shadow: 0 4px 14px 0 rgba(205,180,127,0.095), 0 1px 7px 0 rgba(34,66,93,0.07);
  border-color: var(--luxury-gold);
}
.book-review-card h3 {
  font-size: 1.12rem;
  color: var(--primary);
}
.book-review-card p {
  font-size: 1rem;
  color: var(--deep-blue);
  margin-top: 7px;
}
.reviews-list select {
  font-size: 1rem;
  border: 1.5px solid var(--secondary);
  border-radius: 7px;
  padding: 5px 13px;
  outline: none;
  background: #fbfbfa;
  color: var(--primary);
  margin-left: 10px;
}
.reviews-list label {
  font-size: 1rem;
}

@media (max-width: 960px) {
  .review-highlight {
    gap: 14px;
  }
}
@media (max-width: 700px) {
  .review-highlight {
    flex-direction: column;
    gap: 18px;
  }
  .book-review-card {
    min-width: 90vw;
  }
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact .content-wrapper > div {
  background: #fff;
  border: 1.5px solid #F1EED8;
  border-radius: 14px;
  box-shadow: 0 1.5px 10px 0 rgba(34,66,93,0.03);
  padding: 24px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.trust-signals {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 6px;
}
.trust-signals span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--secondary);
  font-size: 0.93rem;
}
.trust-signals img {
  width: 24px;
  height: 24px;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #181b20;
  color: var(--light-gold);
  padding: 40px 0 16px 0;
  margin-top: 80px;
}
footer .container {
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img {
  max-height: 46px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--luxury-gold);
  font-size: 1.01rem;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff6c2;
}
footer address {
  font-size: 0.98rem;
  line-height: 1.65;
  font-style: normal;
  margin-bottom: 6px;
  color: var(--light-gold);
}
footer a {
  color: var(--luxury-gold);
  word-break: break-word;
}
footer p {
  margin-top: 24px;
  font-size: 0.97rem;
  color: #b3a268;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 0 10px;
  }
  .footer-nav {
    flex-direction: row;
    gap: 14px;
  }
}
@media (max-width: 580px) {
  footer {
    padding: 25px 0 7px 0;
  }
  footer .container {
    gap: 11px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 6px;
  }
}

/* =============================
   LEGAL SECTIONS (legal)
   ============================= */
.legal {
  background: #fffbea;
  border: 1.5px solid #F1EED8;
}
.legal a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.2s;
}
.legal a:hover, .legal a:focus {
  color: var(--luxury-gold);
}
.legal h1, .legal h2, .legal h3 {
  color: var(--deep-blue);
}

/* ========================
   THANK YOU SECTION
   ======================== */
.thank-you {
  background: var(--off-white);
}
.thank-you ul {
  margin-top: 14px;
  margin-bottom: 20px;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.thank-you h2 {
  margin-top: 24px;
}

/* ================================
   SPACING & FLEXBOX RESPONSIVENESS
   ================================ */
.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;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .container {
    padding: 0 7px;
  }
  .about ul, .vision ul, .tips ul, .curated-lists ul, .personal-recommendations ul {
    gap: 7px;
  }
  section, .section {
    padding: 30px 4vw;
  }
}

/* ================================
   COOKIE CONSENT BANNER & MODAL
   ================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 300;
  background: #fff;
  box-shadow: 0 -2px 22px 0 rgba(205,180,127,0.15);
  border-top: 3px solid var(--luxury-gold);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 32px;
  gap: 18px;
  font-size: 1rem;
  color: var(--deep-blue);
  transition: transform 0.41s cubic-bezier(.77,.2,.05,1), opacity 0.22s, bottom 0.32s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  padding: 9px 22px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid var(--luxury-gold);
  background: #fff;
  color: var(--deep-blue);
  font-weight: 600;
  margin-left: 0;
  box-shadow: 0 1.3px 9px 0 rgba(205,180,127,0.05);
  transition: background 0.19s, color 0.18s, border 0.17s, box-shadow 0.18s;
}
.cookie-banner button.primary {
  background: var(--luxury-gold);
  color: var(--deep-blue);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 11px 0 rgba(205,180,127,0.12);
}
.cookie-banner button.primary:hover, .cookie-banner button.primary:focus {
  background: var(--deep-blue);
  color: var(--luxury-gold);
  border-color: var(--deep-blue);
}

@media (max-width: 550px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 7vw 16px 4vw;
    font-size: 0.97rem;
    gap: 10px;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 9px;
    align-items: flex-end;
    margin-top: 7px;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100vw;
  height: 100vh;
  background: rgba(24,27,32,0.42);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  opacity: 1;
  transition: opacity 0.23s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -2.5px 26px 0 rgba(205,180,127,0.17);
  margin: 0 auto;
  max-width: 420px;
  width: 96vw;
  padding: 32px 18px 18px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: showCookieModal 0.5s;
}
@keyframes showCookieModal {
  from { transform: translateY(120px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 22px 0 18px 0;
}
.cookie-category {
  padding: 10px 15px;
  border-radius: 11px;
  background: #faf9f5;
  border: 1.5px solid #e3d7b9;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-category label, .cookie-category input {
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: var(--luxury-gold);
}
.cookie-category input[disabled] {
  opacity: 0.6;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 6px;
}
.cookie-modal-content .close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.7rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal-content .close-modal:hover {
  color: var(--luxury-gold);
}

/* =====================
   ANIMATIONS
   ===================== */
@media (prefers-reduced-motion: no-preference) {
  .cta, .cta.primary, .main-nav a, .mobile-menu, .mobile-nav a, .card, .features ul li, .book-review-card, .testimonial-card, .cookie-banner, .cookie-modal-content, .footer-nav a {
    transition: 
      background 0.23s,
      color 0.23s,
      border-color 0.17s,
      box-shadow 0.21s,
      transform 0.22s;
  }
}

/* =====================
   UTILITY CLASSES
   ===================== */
.hide {
  display: none !important;
}
.text-center { text-align: center; }

/* =====================
   MISC / OVERRIDES
   ===================== */
::-webkit-input-placeholder { color: #929191; opacity:1; }
::-moz-placeholder { color: #929191; opacity:1; }
:-ms-input-placeholder { color: #929191; opacity:1; }
::placeholder { color: #929191; opacity:1; }

/* =====================
   PRINT
   ===================== */
@media print {
  *, *:before, *:after { background: none !important; color: #000 !important; box-shadow: none !important; }
  header, footer, .cookie-banner, .mobile-menu, .cta.primary, .cta { display: none !important; }
  .container { width: 100% !important; max-width: 100% !important; padding: 0 !important; }
}

/*
  =============================================
  End of "PyraShield Buchwelt" LUXURY PREMIUM CSS
  =============================================
*/
