/* images */
.bv24-hover-image a {
    border-radius: 18px 18px 0px 0px;
    color: #990052  !important;
}

img.bv24-main-image {
    transition: all 700ms ease-in-out;

    /* Add a transition for smooth scaling */
}

@media (hover: hover) {
    img.bv24-main-image:hover {
        transform: translateX(5px);
        /* Enlarge the image by 10% on hover */
    }

}



.product-item .price-box {
    margin: 10px 0 10px !important;
}


/* Produktbox & Details */
.product-item-link {
    font-size: 1.7rem !important;
    color: #333 !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-item-name {
    font-size: 1.7rem !important;
    font-weight: bold !important;

}



.product-item-details .price-box {
    margin-top: auto !important;
}


.product-item-inner {
    clip: auto !important;
}

.product-item-details {
    display: flex;
    flex-direction: column;
    transition: all 700ms ease-in-out;
    padding: 15px 15px 15px 15px !important;
    height: 220px;


}

@media (hover: hover) {
    .product-item:hover .product-item-details {
        transform: scale(1.01);
    }
}


.bv24-producttype {
    color: #990052 !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;

}

@media (hover: hover) {

    .product-item a:hover {
        text-decoration: none !important;

    }
}

.product-attributes-details {
    margin: 5px 0;
    font-size: 1.5rem;
}


/* Hover Image */
.bv24-hover-image {
    position: relative;
    display: block;
    overflow: hidden;
}

.bv24-hover-image .bv24-main-image,
.bv24-hover-image .bv24-hover-img {
    aspect-ratio: 4/3;
    width: 100%;
    object-fit: cover;
    display: block;
}


@media (hover: hover) {
    .product-item:hover img.bv24-main-image {
        transform: scale(1.1);
        /* Enlarge the image by 10% on hover */
    }
}



.bv24-hover-image .bv24-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: all 700ms ease-in-out;
}

@media (hover: hover) {
    .bv24-hover-image:hover .bv24-hover-img {
        opacity: 1;
    }
}

@media (hover: none),
(pointer: coarse) {
    .bv24-hover-image:hover .bv24-hover-img {
        display: none;
    }
}




/* Add to Links */

.product-item .action.towishlist {
    color: #990052 !important;
}


.bv24-addtolinks {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    padding: 2px 2px;
    opacity: 0;
    pointer-events: none;
    transition: all 700ms ease-in-out;
}

@media (hover: hover) {
    .bv24-hover-image:hover .bv24-addtolinks {
        opacity: 1;
        pointer-events: auto;
    }
}




/*swiper product boxes */

.wat-product-slider ol {
    padding-top: 10px;
}



.product-item-info {
    width: 100% !important;
    height: 100%;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 2px 4px 12px #00000014;
    transition: all .3s cubic-bezier(0, 0, .5, 1);
}

.product-item-info:hover {
    transform: scale(1.01) !important;
    box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.15) !important;
    padding: 0 !important;
    border: none !important;
    margin: 0 !important;
}

.bv24-hover-image{
    border-radius: 18px 18px 0px 0px    !important;
}


/* ============================================
   Muster Badge
   ============================================ */

.product-sample-badge {
    position: absolute;
    top: 10px;
    left: 0px;
    z-index: 10;
    background: #990052;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: slideInBadge 0.5s ease-out;
}

@keyframes slideInBadge {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Hover Effect */
.product-sample-badge span {
    display: inline-block;
}

@media (hover: hover) {
    .bv24-hover-image:hover .product-sample-badge {
        transform: scale(1.05);
        transition: all 0.3s ease;
    }
}

