.bewertungen-carousel {
    max-width: 1200px;
    margin: 0 auto;
}

.bewertungen-carousel .rating-badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* wichtig für mobiles Layout */
    margin-bottom: 20px;
}

.bewertungen-carousel .rating-badge {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 6px 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: sans-serif;
    max-width: 100%;
    gap: 8px;
    flex: 1 1 auto;
}

.bewertungen-carousel .badge-logo {
    height: 20px;
    width: 20px;
}

.bewertungen-carousel .badge-label {
    font-weight: 600;
    color: #333;
    margin-right: 6px;
}

.bewertungen-carousel .badge-score {
    font-weight: bold;
    color: #000;
}

.bewertungen-carousel .badge-stars {
    color: #f5a623;
    font-size: 14px;
    margin-left: 4px;
    letter-spacing: 1px;
}

/* ✅ Responsive: ab 768px wird gestapelt */
@media (max-width: 768px) {
    .bewertungen-carousel .rating-badge-container {
        flex-direction: column;
        align-items: stretch;
    }

    .bewertungen-carousel .rating-badge {
        justify-content: flex-start;
        width: 100%;
    }
}

.bewertungen-carousel .bewertungen-swiper {
    position: unset;
}

.bewertungen-carousel .swiper-slide {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.bewertungen-carousel .swiper-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.bewertungen-carousel .badge {
    font-weight: bold;
    font-size: 15px;
    color: #000;
    margin-bottom: 10px;
}

.bewertungen-carousel .review-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}

.bewertungen-carousel .reviewer {
    font-weight: 600;
    font-size: 14px;
    color: #111;
}

.bewertungen-carousel .stars i {
    color: #f5a623;
    margin-right: 2px;
    font-size: 14px;
}


.bewertungen-carousel .eicon-star.empty {
    color: #ccc; /* Farbe für leere Sterne */
}

.bewertungen-carousel .swiper-pagination {
    margin-top: 20px;
    text-align: center;
}

.bewertungen-carousel .swiper-pagination-bullet {
    background: #aaa;
    opacity: 0.5;
    transition: all 0.2s;
}

.bewertungen-carousel .swiper-pagination-bullet-active {
    background: #007BFF;
    opacity: 1;
}

.bewertungen-carousel .swiper-button-next,
.bewertungen-carousel .swiper-button-prev {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    color: #007BFF;
    font-size: 20px;
    z-index: 10;
    width: auto;
    height: auto;
    background: none;
}

.bewertungen-carousel .swiper-button-next {
    right: 0px; /* Abstand rechts außerhalb */
}

.bewertungen-carousel .swiper-button-prev {
    left: 0px; /* Abstand links außerhalb */
}
.bewertungen-carousel .swiper-button-next:after, .bewertungen-carousel .swiper-button-prev:after {
    color: #3A5A7A;
}