/**
 * eBay Template Master CSS
 * Version: 3.0.0
 * Letzte Aktualisierung: 2026-02-05
 *
 * Enthält alle wiederverwendbaren Module für eBay-Produktbeschreibungen
 * Basierend auf Amazon A+ Content Struktur mit Varianten-Unterstützung
 *
 * WICHTIG: Diese Version ist CSS-ONLY (kein JavaScript erforderlich)
 *
 * ============================================
 * MODULE OVERVIEW - Verfügbare Module:
 * ============================================
 *
 * Modul 1  - Single Image & Text (.premium-aplus-module-1-image-text)
 * Modul 2  - Full Background (.premium-aplus-module-2-*)
 *            - fullbackground-text: Bild mit Text-Overlay
 *            - fullbackground-image: Nur Vollbild
 * Modul 3  - Four Column Images (.premium-aplus-module-3-four-column-images)
 * Modul 4  - Two Column Images (.premium-aplus-module-4-two-column-images)
 * Modul 10 - Hotspot (.premium-aplus-module-10-*)
 *            - hotspot-text-image: Mit Text unter dem Bild
 *            - hotspot-plain-image: Nur Bild mit Hotspots
 * Modul 11 - FAQ (.premium-aplus-module-11-faq)
 * Modul 12 - Navigation Carousel (.premium-aplus-module-12-*)
 *            - nav-carousel: Standard Karussell
 *            - regimen-carousel: Regimen-Stil
 * Modul 13 - Carousel (.premium-aplus-module-13-carousel)
 * Modul 15 - Text (.premium-aplus-module-15-text)
 * Modul 16 - Tech Specs (.premium-aplus-module-16-tech-specs)
 *
 * ============================================
 */

/* ============================================
   RESET & BASE STYLES
   ============================================ */

.ebay-template * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ebay-template {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

.ebay-template img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   MODUL 1: SINGLE IMAGE & TEXT
   ============================================ */

.premium-aplus-module-1-image-text {
    width: 100%;
    margin-bottom: 0;
}

.aplus-display-table {
    display: flex;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.aplus-text-section {
    flex: 1;
    padding: 20px;
}

.aplus-image-section {
    flex: 1;
}

.aplus-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.aplus-topic {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #FF6B00;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.aplus-heading {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.aplus-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Mobile & Tablet: Stack vertikal, Bild IMMER oben */
@media (max-width: 1024px) {
    .aplus-display-table {
        flex-direction: column;
        gap: 15px;
    }

    .aplus-text-section {
        padding: 10px 0;
        text-align: left;
    }

    .aplus-topic,
    .aplus-heading,
    .aplus-description {
        text-align: left;
    }

    /* Wenn Bild rechts: Reihenfolge umkehren damit Bild oben */
    .aplus-display-table.image-right {
        flex-direction: column-reverse;
    }
}

/* ============================================
   MODUL 2: FULL BACKGROUND IMAGE MIT TEXT
   Varianten: fullbackground-text, fullbackground-image
   ============================================ */

.premium-aplus-module-2-fullbackground-text,
.premium-aplus-module-2-fullbackground-image {
    width: 100%;
    margin-bottom: 0;
}

.premium-background-wrapper {
    position: relative;
    width: 100%;
}

.background-image {
    width: 100%;
}

.background-image picture {
    display: block;
    width: 100%;
}

.background-image img {
    width: 100%;
    height: auto;
    display: block;
}

.premium-intro-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    padding: 20px;
}

.premium-intro-wrapper.left {
    left: 5%;
}

.premium-intro-wrapper.right {
    right: 5%;
}

.premium-intro-content {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: inherit;
}

/* Desktop: Grau-transparent */
@media (min-width: 1025px) {
    .premium-intro-content {
        background: rgba(128, 128, 128, 0.85);
    }
}

.premium-intro-content .aplus-topic {
    display: block;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: inherit;
}

.premium-intro-content .aplus-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
    color: inherit;
}

.premium-intro-content .aplus-description {
    font-size: 14px;
    line-height: 1.6;
    color: inherit;
}

.premium-intro-content .aplus-description strong {
    font-weight: bold;
    color: inherit;
}

.premium-intro-content .aplus-description em {
    font-style: italic;
    color: inherit;
}

.premium-intro-content .aplus-description u {
    text-decoration: underline;
    color: inherit;
}

.premium-intro-content .aplus-description ul {
    margin: 10px 0;
    padding-left: 20px;
    color: inherit;
}

.premium-intro-content .aplus-description ol,
.premium-intro-content .aplus-description ul.custom-numbered-list {
    margin: 10px 0;
    padding-left: 20px;
    list-style: none;
    color: inherit;
}

.premium-intro-content .aplus-description li {
    margin: 5px 0;
    color: inherit;
}

/* Tablet & Mobile: Fester Hintergrund für Kontrast */
@media (max-width: 1024px) {
    .premium-intro-content.text-white {
        background: #000000;  /* Schwarzer Hintergrund für weiße Schrift */
    }

    .premium-intro-content.text-black {
        background: #FFFFFF;  /* Weißer Hintergrund für schwarze/benutzerdefinierte Schrift */
    }
}

/* Mobile: Textbox volle Breite, unten */
@media (max-width: 767px) {
    .premium-intro-wrapper {
        position: static;
        transform: none;
        width: 100%;
        padding: 0;
    }

    .premium-intro-content {
        border-radius: 0;
        box-shadow: none;
    }
}

/* ============================================
   MODUL 3: FOUR COLUMN IMAGES
   ============================================ */

.premium-aplus-module-3-four-column-images {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.premium-aplus-module-3-four-column-images .column {
    flex: 1 1 calc(25% - 10px);
    min-width: 200px;
}

/* TODO: Weitere Styles für Modul 3 */

/* ============================================
   MODUL 4: TWO COLUMN IMAGES
   ============================================ */

.premium-aplus-module-4-two-column-images {
    width: 100%;
    margin-bottom: 0;
}

.premium-module-4-heading {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #2c3e50;
}

.premium-aplus-two-column {
    display: flex;
    gap: 30px;
    width: 100%;
}

.premium-aplus-two-column .column {
    flex: 1;
}

.premium-aplus-two-column .column img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.premium-aplus-two-column .column-heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
}

.premium-aplus-two-column .column-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    padding-left: 15px;
}

/* ============================================
   MODUL 10: HOTSPOT (CSS-ONLY)
   Varianten: hotspot-text-image, hotspot-plain-image
   Desktop: Hover-Tooltips
   Mobile: Akkordeon unter dem Bild
   ============================================ */

.premium-aplus-module-10-hotspot-text-image,
.premium-aplus-module-10-hotspot-plain-image,
.premium-aplus-module-10-hotspot-with-heading {
    width: 100%;
    margin-bottom: 0;
}

/* Text-Section für hotspot-with-heading */
.hotspot-text-section {
    padding: 30px 40px;
    background: #f9f9f9;
    border-bottom: 2px solid #ddd;
}

.hotspot-heading {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    /* text-align wird inline gesetzt */
}

.hotspot-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    /* text-align kommt aus dem Rich-Text-Editor */
}

.hotspot-description strong {
    font-weight: bold;
    color: inherit;
}

.hotspot-description em {
    font-style: italic;
    color: inherit;
}

.hotspot-description u {
    text-decoration: underline;
    color: inherit;
}

.hotspot-description ul {
    margin: 10px 0;
    padding-left: 20px;
    text-align: left;
}

.hotspot-description ol,
.hotspot-description ul.custom-numbered-list {
    margin: 10px 0;
    padding-left: 20px;
    list-style: none;
    text-align: left;
}

.hotspot-description li {
    margin: 5px 0;
    color: inherit;
}

.hotspot-container {
    position: relative;
    width: 100%;
    display: block;
}

.hotspot-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Desktop & Mobile: Hotspot Points with Hover */
.hotspot-point {
    position: absolute;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hotspot-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: var(--hotspot-color, #FF6B00);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.hotspot-point:hover::before {
    transform: translate(-50%, -50%) scale(1.2);
}

/* Nummer im Kreis */
.hotspot-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    z-index: 1;
    pointer-events: none;
}

/* Pulse Animation */
.hotspot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--hotspot-color, #FF6B00);
    border-radius: 50%;
    animation: hotspot-pulse 2s infinite;
    pointer-events: none;
}

@keyframes hotspot-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Desktop: Tooltip on Hover */
.hotspot-tooltip {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 250px;
    max-width: 350px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hotspot-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(0, 0, 0, 0.9);
}

.hotspot-point:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 55px;
}

.hotspot-tooltip h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #fff;
}

.hotspot-tooltip p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    color: #f0f0f0;
}

/* Mobile: Akkordeon-Fallback unter dem Bild */
.hotspot-accordion {
    display: none;
    margin-top: 20px;
}

.hotspot-accordion-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.hotspot-accordion-item input[type="checkbox"] {
    display: none;
}

.hotspot-accordion-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f5f5f5;
    cursor: pointer;
    font-weight: bold;
    position: relative;
}

.hotspot-accordion-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--hotspot-color, #FF6B00);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.hotspot-accordion-label::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform 0.3s;
    margin-left: auto;
}

.hotspot-accordion-item input[type="checkbox"]:checked + .hotspot-accordion-label::after {
    content: '−';
}

.hotspot-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.hotspot-accordion-item input[type="checkbox"]:checked ~ .hotspot-accordion-content {
    max-height: 500px;
    padding: 15px;
}

.hotspot-accordion-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #FF6B00;
}

.hotspot-accordion-content p {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

/* ============================================
   MODUL 11: FAQ (CSS-ONLY ACCORDION)
   ============================================ */

.premium-aplus-module-11-faq {
    width: 100%;
    margin-bottom: 0;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-question {
    display: block;
    padding: 15px;
    background: #f5f5f5;
    cursor: pointer;
    font-weight: bold;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.faq-item input[type="checkbox"]:checked + .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
    max-height: 500px;
    padding: 15px;
}

/* ============================================
   MODUL 12: NAVIGATION CAROUSEL (CSS-ONLY)
   Varianten: nav-carousel, regimen-carousel
   Desktop + Mobile Bilder, Text-Overlay, Navigation Bar
   ============================================ */

.premium-aplus-module-12-nav-carousel,
.premium-aplus-module-12-regimen-carousel {
    width: 100%;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

/* Hide radio buttons */
.premium-aplus-module-12-nav-carousel input[type="radio"],
.premium-aplus-module-12-regimen-carousel input[type="radio"] {
    display: none;
}

/* Navigation Bar (halbtransparent, oben) */
.nav-carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(128, 128, 128, 0.85);
    position: relative;
    z-index: 5;
}

.nav-button {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Active button state */
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(1):checked ~ .nav-carousel-navigation .nav-button:nth-of-type(1),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(2):checked ~ .nav-carousel-navigation .nav-button:nth-of-type(2),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(3):checked ~ .nav-carousel-navigation .nav-button:nth-of-type(3),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(1):checked ~ .nav-carousel-navigation .nav-button:nth-of-type(1),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(2):checked ~ .nav-carousel-navigation .nav-button:nth-of-type(2),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(3):checked ~ .nav-carousel-navigation .nav-button:nth-of-type(3) {
    background: rgba(222, 121, 33, 0.9);
    border-color: rgba(222, 121, 33, 1);
}

/* Carousel Container */
.nav-carousel-container {
    display: flex;
    transition: none;  /* Kein Übergang - direkter Sprung (verhindert "Zurückspulen") */
    position: relative;
    width: 100%;
}

.nav-carousel-slide {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;  /* Wichtig: verhindert überstehende Inhalte */
}

.nav-carousel-slide picture {
    display: block;
    width: 100%;
}

.nav-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Text-Overlay (hellgrau-transparent, 50% width, left oder right) */
.nav-carousel-text-overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    padding: 30px;
    background: rgba(211, 211, 211, 0.9);
    z-index: 2;
}

.nav-carousel-text-overlay.left {
    left: 0;
}

.nav-carousel-text-overlay.right {
    right: 0;
}

.overlay-heading {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.overlay-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.overlay-description strong {
    font-weight: bold;
    color: inherit;
}

.overlay-description em {
    font-style: italic;
    color: inherit;
}

.overlay-description u {
    text-decoration: underline;
    color: inherit;
}

.overlay-description ul {
    margin: 10px 0;
    padding-left: 20px;
    text-align: left;
}

.overlay-description ol,
.overlay-description ul.custom-numbered-list {
    margin: 10px 0;
    padding-left: 20px;
    list-style: none;
    text-align: left;
}

.overlay-description li {
    margin: 5px 0;
    color: inherit;
}

/* Carousel Wrapper mit Pfeilen */
.nav-carousel-wrapper {
    position: relative;
    overflow: hidden;  /* Verhindert überstehende Bilder */
    width: 100%;
}

/* Pfeil-Buttons */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-arrow-left {
    left: 0px;
    align-items: flex-start;
}

.carousel-arrow-right {
    right: 0px;
    align-items: flex-end;
}

.arrow-btn {
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    color: var(--arrow-color, #FF6B00);
    font-size: 80px;
    font-weight: 900;
    display: none;  /* Versteckt, wird per Radio-Button angezeigt */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    user-select: none;
    text-shadow:
        2px 2px 4px rgba(0,0,0,0.5),
        -2px -2px 4px rgba(0,0,0,0.5),
        2px -2px 4px rgba(0,0,0,0.5),
        -2px 2px 4px rgba(0,0,0,0.5);
}

.arrow-btn:hover {
    transform: scale(1.15);
    filter: brightness(1.2);
}

/* Zeige nur den relevanten Pfeil-Button für den aktiven Slide */
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(1):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(1),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(1):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(1),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(2):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(2),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(2):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(2),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(3):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(3),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(3):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(3),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(4):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(4),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(4):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(4),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(5):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(5),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(5):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(5),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(6):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(6),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(6):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(6),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(7):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(7),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(7):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(7),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(8):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(8),
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(8):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(8),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(1):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(1),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(1):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(1),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(2):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(2),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(2):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(2),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(3):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(3),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(3):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(3),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(4):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(4),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(4):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(4),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(5):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(5),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(5):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(5),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(6):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(6),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(6):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(6),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(7):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(7),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(7):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(7),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(8):checked ~ .nav-carousel-wrapper .carousel-arrow-left .arrow-btn:nth-of-type(8),
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(8):checked ~ .nav-carousel-wrapper .carousel-arrow-right .arrow-btn:nth-of-type(8) {
    display: flex;
}

/* Radio button transform for slide switching */
.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(1):checked ~ .nav-carousel-wrapper .nav-carousel-container,
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(1):checked ~ .nav-carousel-wrapper .nav-carousel-container {
    transform: translateX(0%);
}

.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(2):checked ~ .nav-carousel-wrapper .nav-carousel-container,
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(2):checked ~ .nav-carousel-wrapper .nav-carousel-container {
    transform: translateX(-100%);
}

.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(3):checked ~ .nav-carousel-wrapper .nav-carousel-container,
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(3):checked ~ .nav-carousel-wrapper .nav-carousel-container {
    transform: translateX(-200%);
}

.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(4):checked ~ .nav-carousel-wrapper .nav-carousel-container,
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(4):checked ~ .nav-carousel-wrapper .nav-carousel-container {
    transform: translateX(-300%);
}

.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(5):checked ~ .nav-carousel-wrapper .nav-carousel-container,
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(5):checked ~ .nav-carousel-wrapper .nav-carousel-container {
    transform: translateX(-400%);
}

.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(6):checked ~ .nav-carousel-wrapper .nav-carousel-container,
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(6):checked ~ .nav-carousel-wrapper .nav-carousel-container {
    transform: translateX(-500%);
}

.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(7):checked ~ .nav-carousel-wrapper .nav-carousel-container,
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(7):checked ~ .nav-carousel-wrapper .nav-carousel-container {
    transform: translateX(-600%);
}

.premium-aplus-module-12-nav-carousel input[type="radio"]:nth-of-type(8):checked ~ .nav-carousel-wrapper .nav-carousel-container,
.premium-aplus-module-12-regimen-carousel input[type="radio"]:nth-of-type(8):checked ~ .nav-carousel-wrapper .nav-carousel-container {
    transform: translateX(-700%);
}

/* ============================================
   MODUL 13: CAROUSEL / SLIDER (CSS-ONLY)
   Bildkarussells mit Radio-Button Navigation
   ============================================ */

.premium-aplus-module-13-carousel {
    width: 100%;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

/* Hide radio buttons */
.premium-aplus-module-13-carousel input[type="radio"] {
    display: none;
}

/* Carousel Container */
.carousel-container {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Radio Button Navigation Styles */
.carousel-nav {
    text-align: center;
    padding: 15px 0;
}

.carousel-nav label {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #000;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-nav label:hover {
    background: #ffa500;
}

/* Active state for radio buttons */
.premium-aplus-module-13-carousel input[type="radio"]:nth-of-type(1):checked ~ .carousel-container {
    transform: translateX(0%);
}

.premium-aplus-module-13-carousel input[type="radio"]:nth-of-type(2):checked ~ .carousel-container {
    transform: translateX(-100%);
}

.premium-aplus-module-13-carousel input[type="radio"]:nth-of-type(3):checked ~ .carousel-container {
    transform: translateX(-200%);
}

.premium-aplus-module-13-carousel input[type="radio"]:nth-of-type(4):checked ~ .carousel-container {
    transform: translateX(-300%);
}

.premium-aplus-module-13-carousel input[type="radio"]:nth-of-type(5):checked ~ .carousel-container {
    transform: translateX(-400%);
}

.premium-aplus-module-13-carousel input[type="radio"]:nth-of-type(6):checked ~ .carousel-container {
    transform: translateX(-500%);
}

/* Active dot styling */
.premium-aplus-module-13-carousel input[type="radio"]:nth-of-type(1):checked ~ .carousel-nav label:nth-of-type(1),
.premium-aplus-module-13-carousel input[type="radio"]:nth-of-type(2):checked ~ .carousel-nav label:nth-of-type(2),
.premium-aplus-module-13-carousel input[type="radio"]:nth-of-type(3):checked ~ .carousel-nav label:nth-of-type(3),
.premium-aplus-module-13-carousel input[type="radio"]:nth-of-type(4):checked ~ .carousel-nav label:nth-of-type(4),
.premium-aplus-module-13-carousel input[type="radio"]:nth-of-type(5):checked ~ .carousel-nav label:nth-of-type(5),
.premium-aplus-module-13-carousel input[type="radio"]:nth-of-type(6):checked ~ .carousel-nav label:nth-of-type(6) {
    background: #DE7921;
}

/* ============================================
   MODUL 15: TEXT ONLY
   Mehrere Textblöcke mit individuellen Titeln und Formatierung
   ============================================ */

.premium-aplus-module-15-text {
    width: 100%;
    margin-bottom: 0;
}

.premium-aplus-module-15-text .text-block {
    margin-bottom: 30px;
}

.premium-aplus-module-15-text .text-block:last-child {
    margin-bottom: 0;
}

.premium-aplus-module-15-text .text-content {
    line-height: 1.8;
}

.premium-aplus-module-15-text .text-content p {
    margin-bottom: 10px;
}

.premium-aplus-module-15-text .text-content ul,
.premium-aplus-module-15-text .text-content ol {
    margin: 10px 0;
    padding-left: 60px;
}

.premium-aplus-module-15-text .text-content li {
    margin-bottom: 5px;
    padding-left: 10px;
}

/* Responsive auf Mobile */
@media (max-width: 767px) {
    .premium-aplus-module-15-text {
        padding: 20px 15px !important;
    }

    .premium-aplus-module-15-text h2 {
        font-size: 18px !important;
    }

    .premium-aplus-module-15-text .text-block {
        margin-bottom: 20px;
    }
}

/* ============================================
   MODUL 16: TECH SPECS
   ============================================ */

.premium-aplus-module-16-tech-specs {
    width: 100%;
    margin-bottom: 20px;
}

.tech-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.tech-specs-table th,
.tech-specs-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.tech-specs-table th {
    background: #f5f5f5;
    font-weight: bold;
}

/* TODO: Weitere Styles für Modul 16 */

/* ============================================
   RESPONSIVE: TABLET
   ============================================ */

@media (min-width: 768px) and (max-width: 1024px) {
    .hotspot-tooltip {
        display: none !important;  /* Auch auf Tablet keine Tooltips */
    }

    .hotspot-pulse {
        display: none;
    }

    .hotspot-accordion {
        display: block !important;
    }

    /* Hotspot-Points mittelgroß auf Tablet */
    .hotspot-point::before {
        width: 24px;
        height: 24px;
        border-width: 2px;
    }

    .hotspot-number {
        font-size: 11px;
    }

    .hotspot-point {
        width: 32px;
        height: 32px;
    }

    .premium-aplus-module-3-four-column-images .column {
        flex: 1 1 calc(50% - 10px);
    }

    /* Nav Carousel auf Tablet */
    .nav-carousel-navigation {
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px 15px;
    }

    .nav-button {
        padding: 8px 15px;
        font-size: 13px;
    }

    .nav-carousel-text-overlay {
        width: 60%;
        padding: 20px;
    }

    .overlay-heading {
        font-size: 24px;
    }

    .overlay-description {
        font-size: 14px;
    }

    /* Pfeil-Buttons auf Tablet kleiner */
    .arrow-btn {
        font-size: 60px !important;
    }

    .carousel-arrow-left {
        left: 0px !important;
    }

    .carousel-arrow-right {
        right: 0px !important;
    }
}

/* ============================================
   RESPONSIVE: DESKTOP
   ============================================ */

@media (min-width: 1025px) {
    .premium-aplus-module-1-image-text,
    .premium-aplus-module-2-fullbackground-text,
    .premium-aplus-module-2-fullbackground-image,
    .premium-aplus-module-3-four-column-images,
    .premium-aplus-module-4-two-column-images,
    .premium-aplus-module-10-hotspot-text-image,
    .premium-aplus-module-10-hotspot-plain-image,
    .premium-aplus-module-10-hotspot-with-heading,
    .premium-aplus-module-11-faq,
    .premium-aplus-module-12-nav-carousel,
    .premium-aplus-module-12-regimen-carousel,
    .premium-aplus-module-13-carousel,
    .premium-aplus-module-15-text,
    .premium-aplus-module-16-tech-specs {
        margin-bottom: 0;
    }
}

/* ============================================
   RESPONSIVE: MOBILE
   ============================================ */

@media (max-width: 767px) {
    .premium-aplus-module-1-image-text,
    .premium-aplus-module-2-fullbackground-text,
    .premium-aplus-module-2-fullbackground-image,
    .premium-aplus-module-3-four-column-images,
    .premium-aplus-module-4-two-column-images,
    .premium-aplus-module-10-hotspot-text-image,
    .premium-aplus-module-10-hotspot-plain-image,
    .premium-aplus-module-10-hotspot-with-heading,
    .premium-aplus-module-11-faq,
    .premium-aplus-module-12-nav-carousel,
    .premium-aplus-module-12-regimen-carousel,
    .premium-aplus-module-13-carousel,
    .premium-aplus-module-15-text,
    .premium-aplus-module-16-tech-specs {
        margin-bottom: 0;
    }

    /* Hotspot-Text-Section auf Mobile */
    .hotspot-text-section {
        padding: 20px 15px;
    }

    .hotspot-heading {
        font-size: 22px;
    }

    .hotspot-description {
        font-size: 14px;
    }

    .carousel-nav {
        padding: 10px 0;
    }

    .carousel-nav label {
        width: 12px;
        height: 12px;
        margin: 0 4px;
    }

    /* Mobile: Hotspot-Kreise bleiben sichtbar, nur Tooltips verstecken */
    .hotspot-tooltip {
        display: none !important;
    }

    .hotspot-pulse {
        display: none;  /* Pulse-Animation auf Mobile deaktivieren */
    }

    .hotspot-accordion {
        display: block !important;
    }

    /* Hotspot-Points deutlich kleiner auf Mobile */
    .hotspot-point::before {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }

    .hotspot-number {
        font-size: 10px;
    }

    .hotspot-point {
        width: 28px;
        height: 28px;
    }

    .premium-aplus-module-3-four-column-images {
        flex-direction: column;
    }

    .premium-aplus-module-3-four-column-images .column {
        flex: 1 1 100%;
    }

    .premium-aplus-two-column {
        flex-direction: column;
        gap: 20px;
    }

    .premium-aplus-two-column .column-text {
        padding-left: 0;
    }

    /* Nav Carousel auf Mobile */
    .nav-carousel-navigation {
        display: none !important;  /* Navigationsleiste auf Mobile komplett ausblenden */
    }

    .nav-carousel-text-overlay {
        position: static;
        transform: none;
        width: 100%;
        padding: 20px 15px;
    }

    .overlay-heading {
        font-size: 20px;
    }

    .overlay-description {
        font-size: 14px;
    }

    /* Pfeil-Buttons auf Mobile noch kleiner */
    .arrow-btn {
        font-size: 50px !important;
    }

    .carousel-arrow-left {
        left: 0px !important;
    }

    .carousel-arrow-right {
        right: 0px !important;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* ============================================
   END OF CSS
   ============================================ */
