/* Products Swiper */
.products-swiper {
    overflow: hidden;
}
.products-swiper .swiper-header {
    display: flex;
    justify-content: space-between;
    height: 65px;
    margin: 0;
}
.products-swiper .swiper-buttons {
    height: 65px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.products-swiper .swiper-buttons:has(.swiper-button-prev.swiper-button-disabled):has(.swiper-button-next.swiper-button-disabled) {
    display: none;
}
.products-swiper .swiper-buttons > * {
    position: static;
    display: inline-block;
}
.products-swiper .card {
    overflow: hidden;
    max-width: 187px;
    min-width: 157px;
    /*margin: 0 0px 0 0;*/
}
.products-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.products-swiper .p-card {

}
.products-swiper .p-card-img {
    display: flex;
    height: 250px;
    /*justify-content: center;*/
    align-items: center;
    overflow: hidden;
}
.products-swiper .p-card-img img {
    max-width: 100%;
    max-height: 250px;
}
.products-swiper .p-card-footer {
    margin-top: 12px;
}
.products-swiper .p-card-title {
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}
.products-swiper .p-card-title a {
    color: #000;
}
.products-swiper .p-card-author {
    font-size: 12px;
    font-weight: 300;
    margin-top: 5px;
}

@media (max-width: 575.98px) {
    .products-swiper .swiper-buttons {
        display: none;
    }
    .products-swiper .p-card {
        margin: 0 6px;
    }
    .products-swiper .p-card-img {
        display: flex;
        height: 210px;
        /*justify-content: center;*/
        align-items: center;
        overflow: hidden;
    }
    .products-swiper .p-card-img img {
        max-width: 100%;
        max-height: 210px;
    }
    .products-swiper .swiper-header {
        height: auto;
    }

    .products-swiper .p-card-title {
        font-size: 11px;
        font-weight: 500;
    }

    .products-swiper .p-card-author {
        font-size: 9px;
        margin-top: 3px;
    }
}