/* ------------------------------------------- Carousel Listview ---------------------------------------------------- */

.highlight {
    height:450px;
}


/* ------------------------------------------- LISTVIEW ------------------------------------------------------------- */



.product-image {
    position: relative;
}
.product-image-container {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.ribbon {
    background-color: #dc3545!important;
    position: absolute;
    top: 10px;
    left: -11px;
    z-index: 999;
    display: inline-block;
    font-family: "HK Grotesk",sans-serif;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .3em;
    padding: 3px 15px 5px;
    color: #fff;
    text-align: center;
}

/* ----- OVERLAY ---------------------------------------------------------------------------------------------------- */
.product-hover-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.2);
    opacity: 0;
    transition: opacity .3s;
}
.product:hover .product-hover-overlay {
    opacity: 1;
}
.product-hover-overlay .product-hover-overlay-link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.product-hover-overlay .product-hover-overlay-buttons {
    z-index: 3;
}
.product-hover-overlay .btn.btn-buy {
    width: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-left: .5rem;
    margin-right: .5rem;
}


/* ----- OVERLAY MIT TEXT ------------------------------------------------------------------------------------------- */
.product-hover-overlay.additional {
    position: absolute; /* oder relative – je nach bestehendem Layout */
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertikale Mitte */
    align-items: center;     /* horizontale Mitte */
}

.product-hover-overlay.additional .product-hover-overlay-content {
    z-index: 2;
}

.product-hover-overlay.additional .product-hover-note {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.2;
    opacity: 0.9;
}

@media (max-width: 576px) {
    .product-hover-overlay.additional .product-hover-note {
        font-size: 0.7rem;
    }
}

/* ------------------------------------------- Highlights ----------------------------------------------------------- */
.img-headliner {
    min-height:80vh;
}
