/* 1. Gesamte Webseite von Blau auf Lila drehen */
html {
    filter: hue-rotate(50deg) !important;
}

/* 2. Produktbilder & Thumbnails schützen (Originalfarben wiederherstellen) */
img, 
picture, 
video,
[class*="product"] img,
[class*="card"] img {
    filter: hue-rotate(-50deg) !important;
}

/* 3. Grünes "Verified"-Badge schützen */
[class*="verified"],
[class*="green"],
.text-green-500,
.bg-green-500 {
    filter: hue-rotate(-50deg) !important;
}

/* 4. Zweiten Button ("Learn More") im Hero-Bereich ausblenden */
[class*="hero"] a:nth-of-type(2),
[class*="hero"] button:nth-of-type(2),
.hero a:nth-of-type(2) {
    display: none !important;
}