/* VERSTECKE DIE BEWERTUNGSSEKTION KOMPLETT */

/* Verstecke die Section VOR dem Footer (das ist die Bewertungssektion) */
footer:nth-last-child(2) {
    display: none !important;
}

main > section:last-of-type {
    display: none !important;
}

/* Verstecke Section mit py-20 bg-gray-50 (typisch für Bewertungssektion) */
section[class*="py-20"][class*="bg-gray-50"] {
    display: none !important;
}

section[class*="py-16"][class*="bg-gray"] {
    display: none !important;
}

/* Verstecke ALLE Bewertungssektionen */
section:has(img[alt*="Google"]),
section:has([alt="Google"]),
section:has(.google-review),
section:has([class*="review"]),
section:has([class*="testimonial"]),
section:has([src*="google"]),
div:has(img[alt*="Google"]),
div:has([src*="google-logo"]),
div:has([src*="google-review"]) {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

/* Verstecke alles was "Google" im Bild hat */
img[alt*="Google"],
img[src*="google-logo"],
img[src*="google-review"] {
    display: none !important;
}

/* Verstecke Parent-Container von Google-Bildern */
*:has(> img[alt*="Google"]) {
    display: none !important;
}

/* Verstecke Carousel/Slider Elemente (Bewertungs-Carousel) */
div[class*="carousel"],
div[class*="slider"],
div[class*="swiper"] {
    display: none !important;
}
