/**
 * Стили для upsale блока
 */

.upsale-block-wrapper {
    width: 100%;
    margin: 60px 0;
    padding: 0;
}

.upsale-block-title {
    font-family: Helvetica Neue !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1f2937;
    text-align: center;
    margin: 0 0 40px 0 !important;
    line-height: 1.2 !important;
}

.upsale-block-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    justify-content: space-between;
}

/* Карточка товара */
.upsale-product-card {
    font-family: Helvetica Neue;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    padding: 30px;
    background: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.upsale-product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Левая часть - изображение */
.upsale-product-image {
    position: relative;
    flex: 0 0 45%;
    max-width: 200px;
}

.upsale-product-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.upsale-product-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Бейдж скидки */
.upsale-product-badge {
    font-family: Helvetica Neue;
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    color: #8E0808;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
    border: 1px solid #8E0808;
}

/* Правая часть - контент */
.upsale-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 0;
}

.upsale-product-title {
    font-family: Helvetica Neue !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1f2937;
    margin: 0 !important;
    line-height: 1.3 !important;
}

/* Цены */
.upsale-product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
}

.upsale-product-price-old {
    font-size: 16px;
    color: #888888 !important;
    text-decoration: line-through;
    font-weight: 400 !important;
}

.upsale-product-price-new {
    font-size: 18px;
    color: #1f2937;
    font-weight: 700;
}

.upsale-product-price-current {
    font-size: 18px;
    color: #1f2937;
    font-weight: 700;
}

/* Форма корзины */
.upsale-product-card form.cart {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Кнопка */
.upsale-product-button {
    display: block;
    background: #fff;
    color: #8E0808 !important;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #8E0808;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    cursor: pointer;
    font-family: Helvetica Neue;
    margin: 0;
}

.upsale-product-button:hover:not(:disabled) {
    background: #8E0808;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(142, 8, 8, 0.3);
}

.upsale-product-button:active:not(:disabled) {
    transform: translateY(0);
}

.upsale-product-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .upsale-product-card {
        flex: 0 0 calc(33.333% - 20px);
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .upsale-block-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .upsale-product-card {
        flex-direction: column;
        min-width: 100%;
        max-width: 100%;
        gap: 20px;
    }

    .upsale-product-image {
        flex: 1;
        max-width: 100%;
    }

    .upsale-product-image img {
        transform: none;
    }

    .upsale-product-title {
        font-size: 20px !important;
    }

    .upsale-product-button {
        width: 100%;
    }

    .upsale-block-title {
        font-size: 24px !important;
    }
}

@media (max-width: 480px) {
    .upsale-product-card {
        padding: 20px;
    }

    .upsale-product-title {
        font-size: 18px !important;
    }

    .upsale-product-price-new,
    .upsale-product-price-current {
        font-size: 16px;
    }

    .upsale-product-button {
        padding: 10px 25px;
        font-size: 12px;
    }

    .upsale-block-title {
        font-size: 22px !important;
    }
}

