/* confirmation.css */

body {
    padding: 20px;
}

.main-container {
    max-width: 800px;
}

.confirmation-section {
    background-color: var(--dark-card-bg);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.confirmation-section h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4em;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.cart-items-confirm {
    text-align: left;
}

.confirm-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.confirm-cart-item:last-child {
    border-bottom: none;
}

.confirm-item-name {
    font-size: 1.1em;
}

.confirm-item-price {
    font-size: 1em;
    font-weight: bold;
    color: #ccc;
}

.cart-total-confirm {
    font-size: 1.5em;
    font-weight: bold;
    text-align: right;
    margin-top: 20px;
    color: var(--primary-color);
}

.important-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.important-notes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #ddd;
    line-height: 1.5;
}

.important-notes li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 8px;
}

/* --- НОВЫЕ СТИЛИ ДЛЯ КНОПОК ОПЛАТЫ --- */

.payment-buttons-grid {
    display: grid;
    grid-template-columns: 1fr; /* Одна колонка на мобильных */
    gap: 15px; /* Расстояние между кнопками */
    margin-top: 10px;
}

/* Две колонки на экранах пошире */
@media (min-width: 600px) {
    .payment-buttons-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.payment-btn {
    width: 100%;
    padding: 15px 10px;
    box-sizing: border-box; /* Чтобы padding не влиял на ширину */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70px; /* Минимальная высота кнопки */
}

.btn-main-text {
    font-size: 1.1em;
    font-weight: bold;
}

.btn-sub-text {
    font-size: 0.8em;
    color: var(--grey-text);
    margin-top: 5px;
}

.payment-btn:hover .btn-sub-text {
    color: inherit;
}

/* Стили для конкретных кнопок (можно добавить иконки, если нужно) */
.telegram-btn {
    /* Можно задать свой цвет, если нужно */
}

.donatestream-btn {
    /* Можно задать свой цвет, если нужно */
}