/** Shopify CDN: Minification failed

Line 66:0 Unexpected "}"

**/
/* ==============================================
   Tweede afbeelding altijd zichtbaar in productrasters
   Geldt voor: collecties, subcollecties, zoekresultaten,
   homepage productblokken — NIET op de productdetailpagina.
   CSS versie: v2-display-none-mobile
   ============================================== */

/* ── EERSTE AFBEELDING: altijd volledig verborgen ──────────────────────────
   Op mobiel (< 990px) rendeert Dawn beide afbeeldingen als normale block-level
   elementen naast elkaar. display: none verwijdert de eerste afbeelding
   volledig uit de layout op ALLE schermformaten, inclusief mobiel.
   Op desktop overschrijft dit ook de hover-regels van het thema. */
.media--hover-effect > img:first-child:not(:only-child),
.card-wrapper .media--hover-effect > img:first-child:not(:only-child),
.card-wrapper:hover .media--hover-effect > img:first-child:not(:only-child),
.card-wrapper:focus-within .media--hover-effect > img:first-child:not(:only-child),
.card .media--hover-effect > img:first-child:not(:only-child),
.card:hover .media--hover-effect > img:first-child:not(:only-child),
.card__inner .media--hover-effect > img:first-child:not(:only-child),
.card__inner:hover .media--hover-effect > img:first-child:not(:only-child),
.product-card-wrapper .media--hover-effect > img:first-child:not(:only-child),
.product-card-wrapper:hover .media--hover-effect > img:first-child:not(:only-child) {
  display: none !important;
}

/* ── TWEEDE AFBEELDING: altijd zichtbaar ───────────────────────────────────
   Op mobiel is de tweede afbeelding al zichtbaar als normaal block-element.
   Op desktop overschrijven we de opacity: 0 die het thema standaard instelt
   en de hover-animaties die het thema toepast. */
.media--hover-effect > img + img,
.card-wrapper .media--hover-effect > img + img,
.card-wrapper:hover .media--hover-effect > img + img,
.card-wrapper:focus-within .media--hover-effect > img + img,
.card .media--hover-effect > img + img,
.card:hover .media--hover-effect > img + img,
.card__inner .media--hover-effect > img + img,
.card__inner:hover .media--hover-effect > img + img,
.product-card-wrapper .media--hover-effect > img + img,
.product-card-wrapper:hover .media--hover-effect > img + img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
  transform: none !important;
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (max-width: 989px) {
    .product__media-list .media--hover-effect > img + img,
      .product__media-item .media--hover-effect > img + img,
        .product__media-list img + img,
          .product__media-item img + img,
            media-gallery img + img,
              .product img + img {
                  display: none !important;
                      position: absolute !important;
                          visibility: hidden !important;
                            }
                            }
}