﻿/* Заголовок */
.checkout-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Форма */
.checkout-form {
    background: #f9fbfd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Карточка товару */
.tire-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
    background: #fff;
}

    .tire-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
    }

/* Картинка */
.card-img-wrapper {
    flex: 0 0 260px;
    overflow: hidden;
    border-radius: 10px;
}

.tire-image {
    width: 100%;
    transition: transform 0.3s;
}

    .tire-image:hover {
        transform: scale(1.05);
    }

/* Назва */
.tire-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Кнопка акцентна */
.btn-accent {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s;
    text-align: center;
}

    .btn-accent:hover {
        background: linear-gradient(135deg, #20c997, #28a745);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(-2px);
        color: #fff;
    }
