.best-offers__slider .swiper-slide {
    height: auto;
}

.product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 40px 40px 45px;
    border-radius: 35px;
    background-color: var(--white);
    /*box-shadow: 0 21px 30px rgba(0, 0, 0, 0.1);*/
    box-shadow: 0 7px 21px rgb(0 0 0 / 11%);
    /*min-height: 445px;*/
    justify-content: space-between;
}

@media (max-width: 768px) {
    .product-card {
        padding: 28px 16px 24px 16px;
        /*min-height: 360px;*/
    }
}

.product-card__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 375px) {
    .product-card__info {
        flex-direction: column-reverse;
        align-items: center;
    }
}

.product-card__title {
    font-size: 25px;
    line-height: 1.5;
    font-weight: 900;
    color: var(--black);
}

@media (max-width: 768px) {
    .product-card__title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .product-card__title {
        font-size: 16px;
    }
}

.product-card__logo {
    width: 150px;
    height: 50px;
    margin-left: 10px;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 768px) {
    .product-card__logo {
        width: 125px;
    }
}

@media (max-width: 576px) {
    .product-card__logo {
        width: 90px
    }
}

@media (max-width: 375px) {
    .product-card__logo {
        width: 100%;
        height: 75px;
        margin-left: 0;
    }
}

.product-card__list {
    list-style: none;
    margin-top: 30px;
}

.product-card__list li {
    display: flex;
    align-items: center;
}

.product-card__list li + li {
    margin-top: 8px;
}

.product-card__list-icon {
    width: 30px;
    height: 30px;
    margin-right: 14px;
}

.product-card__list-text {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 300;
    color: var(--black);
}

@media (max-width: 768px) {
    .product-card__list-text {
        font-size: 15px;
    }
    .product-card__list-icon {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }
}

@media (max-width: 460px) {
    .product-card__list-text {
        font-size: 14px;
    }
    .product-card__list li + li {
        margin-top: 6px;
    }
}

.product-card__list-text--bold {
    font-weight: 800;
}

.product-card__list-text--danger {
    color: var(--red);
}

.product-card__buttons {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    margin-top: 45px;
}

@media (max-width: 460px) {
    .product-card__buttons {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        margin-top: 20px;
    }
}

.product-card__button {
    font-size: 16px;
}
