/* Root */
.product-cards {
    position: relative;
    z-index: 1;
}

/* Product Card */
.product-card {
    margin: 0 auto;
    padding: 25px 20px;
    height: 100%;
    position: relative;
    border: 1px solid #F0F0F0;
    border-radius: 25px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.product-card__badge {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    display: flex;
}

.product-card__badge img:not(:first-child) {
    left: -10px;
    position: relative;
}

.product-card__image {
    aspect-ratio: 290 / 200;
    margin: 0 auto 15px;
}

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

h3.product-card__title {
    font-size: 18px;
    color: #4B4790;
    text-align: center;
    font-weight: 800;
    margin: 0 0 15px;
}

.product-card__info {
    border-top: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card__ratings ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.product-card__ratings ul li {
    padding: 0;
    margin: 0;
    color: #EE6618;
    font-size: 16px;
}

.product-card__ratings ul li:before {
    display: none;
}

.product-card__ratings p {
    font-size: 15px;
    color: #005140;
    font-weight: 300;
}

.product-card__price {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.product-card__price > span {
    font-size: 15px;
    color: #005140;
    font-weight: 300;
}

.product-card__price strong {
    font-size: 25px;
    color: #00807F;
    font-weight: 800;
}

.product-card .btn-group {
    margin: 15px 0 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-card .btn-icon {
    padding: 19px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.product-card .btn-icon:after {
    content: "\e908";
    position: relative;
    top: unset;
    transform: unset;
    right: unset;
    font-size: 18px;
}

@media (min-width: 768px) {
    .product-card__image {
        aspect-ratio: 275 / 200;
    }

    /* Slider */
    .product-card-slider .slick-list {
        overflow: unset;
    }
}

@media (min-width: 920px) {
    .product-card .btn-group {
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 10px;
    }

    .product-card .btn-icon {
        padding: 19px 28px 19px 37px;
        width: auto;
    }

    .product-card .btn-tertiary {
        padding-right: 26px;
    }
}

@media (min-width: 920px) and (max-width: 1365px) {
    .product-card .btn-group {
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    /* Product Card */
    .product-card__image {
        aspect-ratio: 350 / 255;
    }

    h3.product-card__title {
        font-size: 22px;
        line-height: 1.3em;
    }

    .product-card__badge {
        left: 25px;
        top: 25px;
        width: 50px;
        height: 50px;
    }

    .product-card .btn-tertiary:after {
        font-size: 18px;
        transition: all ease-in-out 0.3s;
    }

    .product-card .btn-tertiary:hover {
        color: #4D47B3;
    }

    .product-card .btn-tertiary:hover:after {
        font-size: 32px;
        right: -18px;
    }

    /* Slider */
    .product-card-slide .product-card {
        width: 28.69692533vw;
    }
}

/* 1600px */
@media (min-width: 1600px) {
    /* Product Card */
    .product-card {
        padding: 34px;
    }

    .product-card__image {
        aspect-ratio: 355 / 255;
    }

    .product-card .btn-group {
        justify-content: space-between;
    }

    .product-card .btn-icon {
        padding: 20px 27px 20px 35px;
    }

    /* Slider */
    .product-card-slide .product-card {
        width: 22.08333333vw;
    }
}

@media (min-width: 1600px) and (max-width: 1920px) {
    .product-card .btn-group {
        justify-content: center;
    }
}