@import url('/www/css/index.css');

#book-hero {
  padding: 120px 20px 80px;
  position: relative;
}

.promo-banner {
  max-width: 35%;
  border-radius: 16px;
  animation: floatBanner 6s ease-in-out infinite;
}

@keyframes floatBanner {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.promo-text {
  max-width: 50%;
  width: 50%;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(1000px, 1fr));
  gap: 1rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1.1rem;
}

.feature-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.product-image {
  cursor: pointer;
  border-radius: 12px;
}

.carousel-item img {
  object-fit: contain;
  max-height: 400px;
}

@media (max-width: 768px) {
  .promo-hero {
    flex-direction: column;
  }

  .promo-banner,
  .promo-text {
    max-width: 100%;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}



body {
  background: linear-gradient(to bottom, #00193e, #67bacd);
  color: white;
  font-size: 1.15rem;
  line-height: 1.7;
}


.feature-section ul.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 1200px;
  text-align: left;
}

.feature-list li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  font-size: 1.1rem;
  line-height: 1.5;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

.feature-list li::before {
  content: "›";
  position: absolute;
  left: 12px;
  top: 16px;
  color: #ffffff;
  font-weight: bold;
}


.section-heading {

  font-size: 5rem;
  color: #c3dbe9;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.15);
  margin-bottom: 30px;
  letter-spacing: 1px;
  position: relative;

}


.content-section h2 {

  font-size: 4rem !important;
  color: #c3dbe9;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  letter-spacing: 1px;
  position: relative;

}

.content-section {

  padding: 10px 100px !important;
  margin-bottom: 100px !important;
  margin: 50px !important;

}

@keyframes pulseShadow {

  0%,
  100% {
    text-shadow: 0 0 10px #d78fff, 0 0 20px #9c27b0;
  }

  50% {
    text-shadow: 0 0 20px #ffffff, 0 0 35px #bb86fc;
  }
}












.autoren-section {
  margin-top: 60px;
}

.autoren-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.autoren-image img {
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: auto;
}

.autoren-text {
  max-width: 600px;
  color: white;
  text-align: left;
}

.autoren-text h2 {
  font-size: 2.5rem;
  color: #c3dbe9;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .autoren-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .autoren-text h2 {
    font-size: 2rem;
  }

  .autoren-text {
    padding: 0 10px;
  }
}

.price-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.price-box h2 {
  color: #c3dbe9;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.price-highlight {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}

.new-price {
  color: #60AAFF;
  font-weight: bold;
  font-size: 2.4rem;
}

.mwst-hinweis {
  display: block;
  font-size: 1rem;
  color: #bbb;
  margin-top: 0.2rem;
}

.lap-deal {
  font-size: 1.3rem;
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 1rem;
}

.rabattstaffel {
  list-style: none;
  padding: 0;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.rabattstaffel li {
  margin: 0.5rem 0;
  position: relative;
  padding-left: 1.4rem;
}

.rabattstaffel li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #60AAFF;
  font-weight: bold;
}

.versand-info {
  font-size: 1rem;
  color: #ccc;
  margin-top: 0.5rem;
}

.ebook-hinweis {
  margin-top: 0.9rem;
  font-size: 0.9rem !important;
  color: #a9bfd1;
  font-style: italic;
  text-align: center;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .price-box {
    padding: 1.5rem;
  }

  .price-box h2 {
    font-size: 2rem;
  }

  .price-highlight {
    font-size: 1.5rem;
  }

  .new-price {
    font-size: 2rem;
  }

  .lap-deal,
  .rabattstaffel li {
    font-size: 1.1rem;
  }
}



/* Responsive Anpassungen */
@media (max-width: 768px) {
  #book-hero {
    padding: 100px 10px 60px;
  }

  .promo-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .promo-banner {
    max-width: 100%;
    width: 100%;
  }

  .promo-text {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  .promo-text h1 {
    font-size: 4rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .feature-list li {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
  }

  .carousel-item img {
    max-height: 250px;
  }

  .content-section {
    padding: 0 15px !important;
    margin: 40px 0 !important;
  }

  .content-section h2 {
    font-size: 2rem !important;
  }

  .product-image {
    border-radius: 8px;
  }

  .autoren-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .autoren-image img {
    max-width: 90%;
    height: auto;
  }

  .autoren-text {
    padding: 0 15px;
  }

  .autoren-text h2 {
    font-size: 1.8rem;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}


/* MODAL-FIX wie Raptor */
.modal-dialog {
  max-width: 95vw;
  margin: auto;
}

.modal-content {
  background-color: transparent;
  border: none;
}

.modal-body {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#modalImage {
  width: auto;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  margin: auto;
  border-radius: 12px;
}


.modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}

.modal-body {
  padding: 0;
  margin-top: 100px;
}

#modalImage {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 90vh;
  border-radius: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, #6bdcfa, #2a62d2) !important;
}



.feature-carousel {
  position: relative;
  width: 100%;
  height: 3.5rem;
  margin: 2rem auto 0;
  overflow: hidden;
  font-family: 'Stoneage', sans-serif;
  font-size: clamp(1.25rem, 4vw, 2rem);
  color: #6cb5e5;
  text-shadow: 0 0 8px rgb(62 170 255 / 80%);
}



.typing-animation {
  position: relative;
  display: inline-block;
  font-family: 'Stoneage', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: bold;
  text-transform: uppercase;
  white-space: normal;
  overflow: visible;
  cursor: default;

  background: linear-gradient(90deg,
      #60AAFF 0%,
      #4080FF 30%,
      #c3dbe9 60%,
      #60AAFF 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 6px #60AAFF,
    0 0 12px #4080FF,
    0 0 24px #c3dbe9;

  clip-path: inset(100% 0 0 0);
  animation:
    reveal 0.8s ease-out forwards,
    gradientMove 8s ease infinite,
    neonPulse 3s ease-in-out infinite,
    quickGlitch 6s steps(2) infinite;
}

/* Reveal */
@keyframes reveal {
  to {
    clip-path: inset(0);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes neonPulse {

  0%,
  100% {
    text-shadow: 0 0 6px #60AAFF, 0 0 14px #c3dbe9;
  }

  50% {
    text-shadow: 0 0 12px #80ccff, 0 0 24px #4080FF;
  }
}

@keyframes quickGlitch {

  0%,
  10%,
  100% {
    transform: none;
  }

  6% {
    transform: translate(2px, -1px) skewX(2deg);
  }

  8% {
    transform: translate(-2px, 1px) skewX(-2deg);
  }
}

/* Chromatische Aberration – dezent mit nur blauen Tönen */
.typing-animation::before,
.typing-animation::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
}

.typing-animation::before {
  text-shadow: -2px 0 #67bacd;
  clip-path: inset(0 100% 0 0);
  animation: abBlue 7s infinite;
}

.typing-animation::after {
  text-shadow: 2px 0 #c3dbe9;
  clip-path: inset(0 100% 0 0);
  animation: abBlueLight 14s infinite;
}

@keyframes abBlue {

  0%,
  5%,
  100% {
    clip-path: inset(0 100% 0 0);
  }

  10%,
  15% {
    clip-path: inset(10% 0 0 0);
  }

  20%,
  25% {
    clip-path: inset(60% 0 0 0);
  }
}

@keyframes abBlueLight {

  0%,
  7%,
  100% {
    clip-path: inset(0 100% 0 0);
  }

  12%,
  18% {
    clip-path: inset(40% 0 0 0);
  }

  22%,
  28% {
    clip-path: inset(20% 0 0 0);
  }
}

/* Mobile: Fallback ohne Aberration */
@media (max-width: 768px) {
  .typing-animation {
    font-size: 2.5rem;
    animation:
      reveal 0.8s ease-out forwards,
      gradientMove 8s ease infinite,
      neonPulse 2.5s ease-in-out infinite;
    clip-path: inset(0);
  }

  .typing-animation::before,
  .typing-animation::after {
    display: none;
  }
}




.content-section h2 {
  font-size: 5rem !important;

}

.content-section p {
  font-size: 1.5rem !important;

}

@media (max-width: 768px) {
  .content-section h2 {
    font-size: 3rem !important;

  }

  .content-section p {
    font-size: 1.3rem !important;

  }
}

/* ==== Theme angle: blau, clean, wie Raptor aber kühler ==== */
:root {
  --bg: #00193e;
  --bg2: #0d3560;
  --card: rgba(255, 255, 255, .06);
  --border: rgba(255, 255, 255, .14);
  --text: #fff;
  --muted: #c3dbe9;
  --primary: #60AAFF;
  --accent: #4080FF;
}

.container-narrow {
  max-width: 1100px;
  margin-inline: auto
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25)
}

.glass {
  background: var(--card);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border)
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .9rem
}

/* ==== Hero ==== */
#book-hero {
  padding: 90px 0 40px;
  position: relative
}

.promo-hero {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between
}

.promo-banner {
  max-width: 42%;
  border-radius: 18px;
  animation: floatBanner 6s ease-in-out infinite
}

@keyframes floatBanner {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.promo-text {
  max-width: 48%
}

.kicker {
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
  font-size: .9rem
}

.display-title {
  font-family: 'Stoneage', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin: .2rem 0 1rem;
  background: linear-gradient(90deg, #60AAFF, #4080FF, #c3dbe9, #60AAFF);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 8s ease infinite, neonPulse 3s ease-in-out infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@keyframes neonPulse {

  0%,
  100% {
    text-shadow: 0 0 6px #60AAFF, 0 0 14px #c3dbe9
  }

  50% {
    text-shadow: 0 0 12px #80ccff, 0 0 24px #4080FF
  }
}

.hero-sub {
  font-size: 1.1rem;
  color: #eaf4ff;
  opacity: .96
}

.trust-strip {
  margin: 18px 0
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #6bdcfa, #2a62d2) !important;
  border: 0;
  box-shadow: 0 8px 16px rgba(64, 128, 255, .28) !important
}

.btn-outline {
  border: 1px solid var(--border);
  background: transparent;
  color: #fff
}

.btn-secondary {
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--border);
  color: #fff
}

/* Price box */
.price-box {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 14px;
  padding: 16px;
  margin-top: 18px
}

.price-title {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: .4rem;
  letter-spacing: .06em
}

.price-highlight {
  font-size: 1.6rem;
  margin-bottom: .3rem
}

.old-price {
  text-decoration: line-through;
  color: #89a7c2;
  margin-right: 8px
}

.new-price {
  color: var(--primary);
  font-weight: 800
}

.mwst-hinweis {
  display: block;
  font-size: .9rem;
  color: #a6c2d8
}

.lap-deal {
  color: #ffd66b;
  font-weight: 700;
  margin: .4rem 0
}

.rabattstaffel {
  list-style: none;
  margin: 0;
  padding: 0
}

.rabattstaffel li {
  padding-left: 1rem;
  position: relative
}

.rabattstaffel li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--primary)
}

/* Sections & headings */
.section {
  padding: 70px 0
}

.section h2 {
  font-family: 'Stoneage', system-ui, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #d7e8f7;
  text-align: center;
  margin-bottom: 1rem
}

/* USP grid */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 14px
}

.usp {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px
}

.usp i {
  font-size: 1.3rem
}

/* Kapitel-Highlights Tabelle */
.feature-table {
  border-radius: 14px;
  overflow: hidden
}

.feature-table .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  padding: 12px 14px
}

.feature-table .row:nth-child(odd) {
  background: rgba(255, 255, 255, .03)
}

.feature-table .cell.tag {
  font-weight: 700;
  opacity: .9
}

.feature-table .cell.feature {
  position: relative;
  padding-right: 26px
}

/* Tooltips (gut lesbar) */
.info {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  margin-left: .5rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--border);
  font-style: normal;
  cursor: help;
}

.info::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 0;
  transform: translateY(calc(100% + 10px));
  min-width: 260px;
  max-width: 420px;
  z-index: 10;
  pointer-events: none;
  background: #0d2a49;
  color: #eaf4ff;
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 10px 12px;
  border-radius: 10px;
  line-height: 1.35;
  font-size: .95rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
  opacity: 0;
  transition: .2s ease;
}

.info:hover::after {
  opacity: 1
}

/* For whom */
.forwho-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 10px
}

/* Autoren */
.autoren-image img {
  max-width: 360px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
}

.author-badges {
  margin-top: .6rem;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap
}

/* Carousel images */
#bookCarousel .carousel-item img {
  object-fit: contain;
  max-height: 420px;
  border-radius: 12px
}

/* FAQ */
.accordion-button {
  background: var(--card);
  color: #fff
}

.accordion-button:not(.collapsed) {
  color: #fff
}

/* CTA strip */
.cta {
  padding: 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(96, 170, 255, .2), rgba(64, 128, 255, .15))
}

/* Mobile */
@media (max-width: 992px) {
  .promo-hero {
    flex-direction: column;
    text-align: center
  }

  .promo-banner,
  .promo-text {
    max-width: 100%
  }
}

/* USP-Tiles: Titel und Text sauber untereinander */
.usp {
  align-items: flex-start;
}

.usp>i {
  flex-shrink: 0;
  margin-top: 2px;
}

.usp div {
  display: block;
}

.usp div>strong {
  display: block;
  /* nicht mehr in derselben Zeile */
  margin: 0 0 .35rem 0;
  /* Abstand zum Text */
  line-height: 1.2;
}

.usp div>small {
  display: block;
  /* eigener Block */
  margin: 0;
  line-height: 1.5;
  color: #dbe9f6;
}

/* Kapitel-Highlights ohne Popups */
.chapter-table {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.chapter-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chapter-row:last-child {
  border-bottom: none;
}

.chapter-topic {
  font-weight: 700;
  color: #eaf4ff;
  letter-spacing: 0.02em;
}

.chapter-desc {
  color: #cfe5fb;
  line-height: 1.5;
}

/* Hintergrundfarbe alternierend für Lesbarkeit */
.chapter-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.03);
}

/* Mobile Ansicht */
@media (max-width: 768px) {
  .chapter-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 16px;
  }

  .chapter-topic {
    color: #fff;
    font-size: 1.05rem;
  }

  .chapter-desc {
    font-size: 0.95rem;
  }
}


/* =======================
   FÜR WEN IST ES GEDACHT
======================= */
.forwho-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.forwho-grid .card-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.forwho-grid .card-ghost:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.forwho-grid strong {
  display: block;
  font-size: 1.25rem;
  color: #eaf4ff;
  margin-bottom: 0.4rem;
}

.forwho-grid p {
  font-size: 1rem;
  color: #cde2f7;
  opacity: 0.9;
  margin: 0;
}

/* =======================
           FAQ
======================= */
.accordion-item.glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 0.8rem;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.accordion-button {
  background: rgba(255, 255, 255, 0.08);
  color: #eaf4ff;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  box-shadow: none;
  transition: all 0.25s ease;
}

.accordion-button:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.08);
}

.accordion-body {
  background: rgba(255, 255, 255, 0.03);
  color: white;
  font-size: 1.05rem;
  padding: 1.5rem;
  line-height: 1.6;
}

/* =======================
           CTA
======================= */
.cta {
  background: linear-gradient(145deg, rgba(62, 140, 255, 0.25), rgba(10, 50, 110, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.2rem 2.8rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta:hover {
  background: linear-gradient(145deg, rgba(90, 160, 255, 0.35), rgba(15, 70, 130, 0.6));
  transform: translateY(-3px);
}

.cta h3 {
  font-size: 2rem;
  color: #e9f4ff;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.cta p {
  color: #cde2f7;
  font-size: 1.05rem;
  margin: 0;
}

.cta .btn {
  font-weight: 700;
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
}

.cta .btn-primary {
  background: linear-gradient(135deg, #67b6ff, #1a4bb8);
  border: none;
  color: #fff;
  box-shadow: 0 0 10px rgba(90, 160, 255, 0.4);
  transition: all 0.25s ease;
}

.cta .btn-primary:hover {
  background: linear-gradient(135deg, #72c3ff, #2358d1);
  box-shadow: 0 0 16px rgba(100, 175, 255, 0.6);
}

.cta .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e9f4ff;
  transition: all 0.25s ease;
}

.cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  .cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .cta h3 {
    font-size: 1.6rem;
  }
}


/* Kapitel-Note unter Tabelle */
.chapter-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1.1rem;
  color: #cde2f7;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.25s ease;
}

.chapter-note:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.chapter-note i {
  color: #6cb5ff;
  margin-right: 0.5rem;
  text-shadow: 0 0 6px rgba(108, 181, 255, 0.6);
}



/* =======================
   Weihnachts-Preisbox
======================= */
.price-box-xmas {
  position: relative;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.18),
    0 0 35px rgba(0, 106, 255, 0.25);
  border-radius: 18px;
  padding-top: 2.6rem;
  margin-top: 5%;
}

/* kleines Ribbon oben links */
.price-ribbon {
  position: absolute;
  top: -12px;
  left: 16px;
  padding: 0.3rem 0.8rem;
  background: linear-gradient(135deg, #6bdcfa, #2a62d2) !important;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.price-ribbon i {
  font-size: 0.95rem;
}

/* Preis optisch boosten */
.new-price {
  color: #6bdcfa;
  font-weight: 800;
  font-size: 2.5rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4),
    0 0 16px rgba(7, 139, 255, 0.5);
  animation: xmas-glow 2.4s ease-in-out infinite;
}

.price-netto {
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-left: 0.3rem;
  color: #ffd66b;
}

@keyframes xmas-glow {

  0%,
  100% {
    text-shadow: 0 0 8px rgb(56 57 121 / 40%), 0 0 16px rgba(7, 114, 255, 0.4);
  }

  50% {
    text-shadow: 0 0 12px rgb(67 136 215 / 80%), 0 0 28px rgba(82, 108, 255, 0.6);
  }
}

.xmas-deal {
  color: #ffe082;
}

/* Versand-Hinweis minimal anheben */
.mwst-hinweis strong {
  color: #fff;
}

/* =======================
   Lagerbestand-Leiste
======================= */
.stock-box {
  margin-top: 1.2rem;
  padding: 0.9rem 0.8rem 0.8rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.stock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #eaf4ff;
  margin-bottom: 0.4rem;
}

.stock-header i {
  color: #6bdcfa;
}

.stock-status strong {
  color: #2a62d2;
}

.stock-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
}

.stock-bar-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #6bdcfa, #2a62d2) !important;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  transition: width 0.9s ease-out;
}

.stock-hint {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #cfd8e5;
}

/* Mobile Tweak */
@media (max-width: 768px) {
  .price-box-xmas {
    padding-top: 2.2rem;
  }

  .stock-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

