/* ==================== HOME PAGE STYLES ==================== */

/* Equal Height Product Cards */
.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto !important;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card__image-wrapper {
    height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    overflow: hidden;
}

@media (max-width: 991px) {
    .product-card__image-wrapper {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .product-card__image-wrapper {
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

.product-card__image {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-card__body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card__price {
    margin-top: auto;
}