.accessoires-discount {
    margin-top: 10px;
}

.discount-intro {
    margin-bottom: 2px;
}

.discount-list {
    list-style: none;
    padding: 0;
    margin: 2px 0;
}

.discount-list li {
    margin-bottom: -2px;
    font-size: 15px;
    line-height: 1.4;
}

.discount-footer {
    margin-top: 2px;
    line-height: 1.6;
}
.discount-list li strong {
    color: #334b9a; /* Blau für den Rabatttext */
}
.discount-list li:first-child strong {
    padding-left: 9px;
}
.feature {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.feature-icon-hover p {
    margin: 0;
}

.email-link {
    color: #007bff;
    text-decoration: underline;
}
/* Standarddarstellung (Desktop) */
.beanarella-sticker-wrapper {
    display: flex; /* Horizontale Anordnung */
    align-items: flex-start; /* Ausrichtung oben */
    gap: 20px; /* Abstand zwischen Sticker und Text */
}

.beanarella-sticker-logo {
    max-width: 327px; /* Maximale Breite des Stickers */
    height: auto; /* Seitenverhältnis beibehalten */
}

.beanarella-sticker-text {
    flex: 1; /* Text soll den restlichen verfügbaren Platz einnehmen */
}

/* Mobile-Ansicht */
@media (max-width: 768px) {
    .beanarella-sticker-wrapper {
        display: block; /* Vertikale Anordnung */
        text-align: center; /* Sticker zentrieren */
    }

    .beanarella-sticker-logo {
        margin-bottom: 15px; /* Abstand unter dem Sticker */
    }
}
.divider {
    border: none;
    border-top: 1px solid #e0e0e0; /* Graue Linie */
    margin: 40px 0; /* Größerer Abstand oben und unten */
}
.video-wrapper {
    position: relative;
    width: 100%; /* Breite auf 100% setzen */
    max-width: 1200px; /* Maximale Breite für große Bildschirme */
    margin: 0 auto; /* Zentrierung */
    padding-top: 56.25%; /* 16:9 Seitenverhältnis */
    margin-bottom: 30px; /* Abstand unter dem Video */
}


.video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* Spezielle Regeln nur für die Produktseite */
/* Einheitliche Schriftart und Design für die Produktseite */
.product-page,
.product-page .short-description,
.product-page .short-description p,
.product-page p {
    font-family: 'Lato', sans-serif !important; /* Moderne und klare serifenlose Schriftart */
    font-size: 18px !important; /* Gleiche Schriftgröße für den Fließtext */
    line-height: 1.8 !important; /* Einheitliche Zeilenhöhe */
    color: #333 !important; /* Dunkelgraue Farbe für bessere Lesbarkeit */
}

/* Überschriften (H2) mit Playfair Display */
.product-page h2,
.product-page .short-description h2 {
    font-family: 'Playfair Display', serif !important; /* Elegante Serifenschrift für Überschriften */
    font-size: 40px !important; /* Größe für H2 */
    font-weight: 700 !important; /* Fettdruck für eine starke visuelle Hierarchie */
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    color: #111 !important; /* Dunkles Schwarz */
}

/* Kleinere Überschriften (H3) */
.product-page h3 {
    font-family: 'Playfair Display', serif !important; /* Gleiche Schriftart wie H2 */
    font-size: 30px !important; /* Größe für H3 */
    font-weight: 600 !important;
    margin-top: 30px !important;
    margin-bottom: 15px !important;
    color: #222 !important; /* Dunkelgrau für subtile Überschriften */
}

/* Fließtext */
.product-page p,
.product-page .short-description p {
    font-family: 'Lato', sans-serif !important; /* Einheitliche serifenlose Schriftart */
    font-size: 18px !important; /* Gleiche Schriftgröße */
    line-height: 1.7 !important;
    margin-bottom: 20px !important; /* Einheitlicher Abstand zwischen Absätzen */
    color: #555 !important; /* Sanftes Grau für weniger Dominanz */
}

/* Kurzbeschreibung Überschrift */
.product-page .short-description h2 {
    font-size: 28px !important; /* Etwas kleinere H2-Größe */
    font-weight: 700 !important;
    margin-top: 10px !important;
    margin-bottom: 15px !important;
    color: #222 !important;
}

/* Preise und wichtige Informationen hervorheben */
.product-page .price {
    font-size: 24px !important; /* Große Preisangabe */
    font-weight: 700 !important;
    color: #000 !important; /* Schwarz für maximale Sichtbarkeit */
}

.product-page .availability {
    font-size: 16px !important;
    color: #28a745 !important; /* Grün für Verfügbarkeit */
    font-weight: 600 !important;
}

/* Abstände zwischen Abschnitten */
.product-page .section {
    margin-top: 40px !important; /* Großzügiger Abstand nach oben */
    margin-bottom: 40px !important; /* Großzügiger Abstand nach unten */
}
/* Gemeinsame Grundstruktur für Bild und Text */
.image-text-wrapper {
    display: flex; /* Horizontale Anordnung */
    align-items: flex-start; /* Vertikale Ausrichtung oben */
    gap: 20px; /* Abstand zwischen Bild und Text */
    margin-bottom: 30px; /* Abstand zum nächsten Block */
}

.image-text-wrapper img {
    max-width: 40%; /* Bildbreite auf 40% des Containers begrenzen */
    height: auto; /* Seitenverhältnis beibehalten */
    border-radius: 8px; /* Abgerundete Ecken für ein elegantes Erscheinungsbild */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
}

@media (max-width: 768px) {
    .image-text-wrapper {
        flex-direction: column; /* Vertikale Anordnung */
        text-align: center; /* Zentrierung von Bild und Text */
    }

    .image-text-wrapper img {
        max-width: 80%; /* Bild nimmt weniger Platz ein */
        margin: 0 auto 20px; /* Zentrierung und Abstand unter dem Bild */
    }

    .image-text-wrapper .text {
        text-align: left; /* Text bleibt linksbündig */
    }
}
/* Text links vom Bild */
.image-text-wrapper.text-left {
    flex-direction: row-reverse;
}





