.s2-account-balance {
    height: 100%;
    background: none;
    padding: 0;
    border: none;
    color: #e80e0e;
}

.nm-right-menu ul li[aria-label="Личный кабинет"] {
    display: flex !important;
    gap: 10px;
}

/* Контейнер для блока с бонусами */
.woocommerce-mini-cart__total.total-discount-bonuses {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8edf2;
}

/* Заголовок блока */
.s2-bonus-header {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

/* Контейнер для поля ввода */
.s2-bonus-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Поле ввода бонусов */
.s2-bonus-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    background: #ffffff;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.s2-bonus-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.s2-bonus-input::placeholder {
    color: #95a5a6;
}

/* Подсказка с балансом */
.s2-balance-hint {
    font-size: 13px;
    color: #7f8c8d;
}

/* Итоговая скидка */
.s2-total-discount-wrapper {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px dashed #e8edf2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s2-total-discount-label {
    font-size: 15px;
    font-weight: 600;
    color: #34495e;
}

.s2-total-discount-value {
    font-size: 20px;
    font-weight: 700;
    color: #e74c3c;
}

/* Начисление кешбэка */
.s2-cashback-earn-wrapper {
    margin-top: 10px;
    padding: 12px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-radius: 8px;
    border: 1px solid #c8e6c9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s2-cashback-earn-label {
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
}

.s2-cashback-earn-value {
    font-size: 18px;
    font-weight: 700;
    color: #27ae60;
}

/* Предупреждения */
.s2-discount-warnings {
    margin-top: 10px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    font-size: 13px;
    color: #c62828;
    line-height: 1.5;
}

.s2-discount-warnings div {
    margin: 5px 0;
}

/* Анимация появления */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.total-discount-bonuses {
    animation: slideIn 0.3s ease-out;
}