.tvpc-card {
    margin: 24px 0 0;
    border: 1px solid #e4e4e4;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.tvpc-card__content {
    padding: 22px;
}

.tvpc-card__eyebrow {
    display: inline-block;
    margin: 0 0 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .65;
}

.tvpc-card__title {
    margin: 0 0 9px;
    font-size: 22px;
    line-height: 1.25;
}

.tvpc-card__intro {
    margin: 0 0 16px;
}

.tvpc-card__advice {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 0 0 14px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #f6f6f6;
}

.tvpc-card__promo {
    margin: 0 0 16px;
    font-weight: 600;
}

.tvpc-card__button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    text-align: center;
}

@media (max-width: 767px) {
    .tvpc-card__content {
        padding: 18px;
    }

    .tvpc-card__button {
        width: 100%;
    }
}


.tvpc-card__promo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 0 16px;
    padding: 14px 16px;
    border: 1px solid #ececec;
    border-radius: 10px;
    background: #fafafa;
}

.tvpc-card__promo-label {
    display: inline-block;
    width: fit-content;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.tvpc-card__button.disabled {
    opacity: .72;
    pointer-events: none;
}


.tvpc-card__product {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin: 0 0 16px;
    padding: 16px;
    border-radius: 12px;
    background: #f6f6f6;
}

.tvpc-card__product-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    padding: 8px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.tvpc-card__product-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 76px;
    max-height: 76px;
    object-fit: contain;
}

.tvpc-card__product-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.tvpc-card__product-name {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.tvpc-card__product-advice {
    font-size: 15px;
    line-height: 1.4;
}

.tvpc-card__product-price {
    font-size: 14px;
    line-height: 1.4;
    opacity: .78;
}

.tvpc-card__product-price del {
    opacity: .55;
}

.tvpc-card__product-price ins {
    text-decoration: none;
}

@media (max-width: 767px) {
    .tvpc-card__product {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
        padding: 14px;
    }

    .tvpc-card__product-media {
        width: 72px;
        height: 72px;
        padding: 6px;
    }

    .tvpc-card__product-image {
        max-width: 60px;
        max-height: 60px;
    }

    .tvpc-card__product-name {
        font-size: 16px;
    }
}
