/* ================================================== */
/* СТИЛИ ДЛЯ БЛОКА ИТОГО ПЕРЕД ФИО */
/* ================================================== */

#cart-total-summary {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Мобильные стили */
@media (max-width: 768px) {
    #cart-total-summary > div {
        margin: 0.5rem 0 !important;
        padding: 0.75rem !important;
        background: #f8f9e6 !important;
        border: 1px solid #e6e8c3 !important;
        border-radius: 0.5rem !important;
    }
    
    #cart-total-amount {
        font-size: 1rem !important;
        color: #444c00 !important;
    }
}

@media (max-width: 414px) {
    #cart-total-summary > div {
        margin: 0.375rem 0 !important;
        padding: 0.5rem !important;
        font-size: 0.8125rem !important;
    }
    
    #cart-total-amount {
        font-size: 0.9375rem !important;
    }
}