/* Unified product card – used on search, home, related products, etc. */

.new-wrapper .product.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 0;
    height: 100%;
    padding: 0.75rem;
    border: 1px solid #e8edf3;
    border-radius: 8px;
    background: #fff;
}

.new-wrapper .product.product-card::after {
    display: none;
}

.new-wrapper .bs-product-list--cols-5 .product-card-col--5 {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (min-width: 576px) {
    .new-wrapper .bs-product-list--cols-5 .product-card-col--5 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 992px) {
    .new-wrapper .bs-product-list--cols-5 .product-card-col--5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.new-wrapper .product-card__media {
    position: relative;
    margin-bottom: 0.75rem;
}

.new-wrapper .product-card__image-link {
    display: block;
    /* border: 1px solid #e8edf3; */
    border-radius: 6px;
    background: #fff;

    /* aspect-ratio: 1; */
    overflow: hidden;
}

.new-wrapper .product-card__image-link .product-image {
    margin: 0;
    height: 159px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
}

.new-wrapper .product-card__image-link .product-image img {
    object-fit: contain;
    object-position: center;
    height: 100%;
    width: 100%;
    max-height: 159px;
}

.new-wrapper .product-card__image-link .product-image .justlazy-spinner {
    flex-shrink: 0;
    width: 4em;
    height: 4em;
    left: auto;
    position: relative;
}

.new-wrapper .product-card__outclick {
    position: absolute;
    right: 0rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #dfe7f1;
    border-radius: 6px;
    background: #fff;
    color: #0f273a;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.new-wrapper .product-card__outclick:hover {
    color: unset;
}

.new-wrapper .product-card__sale {
    position: absolute;
    z-index: 2;
    font-size: 16px;
    background: #ffc100 !important;
    font-weight: 700;
    font-family: "Montserrat", Arial, sans-serif;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    line-height: 1.4;
}

.new-wrapper .product-card__reviews {
    min-height: 1.25rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.75rem;
    color: #6b7c8f;
}

.new-wrapper .product-card__reviews--empty {
    visibility: hidden;
}

.new-wrapper .product-card__star {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.new-wrapper .product-card__review-count {
    margin-left: 0.15rem;
    font-family: "Nunito", Arial, sans-serif;
}

.new-wrapper .product-card .product-merk {
    text-transform: uppercase;
    margin-bottom: 0.15rem;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: #6b7c8f;
}

.new-wrapper .product-card .product-title {
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #0f273a;
}

.new-wrapper .product-card__prices {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: 5px;
    padding-top: 5px;
}

.new-wrapper .product-card__price {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ff0019;
}

.new-wrapper .product-card .product-button-wrapper {
    margin-top: auto;
}