/* VAT Display Styles for Cart Mobile */

.total-section-left .subtotal-after-discount {
    padding: 8px 0;
    border-top: 1px solid #ddd;
    margin: 5px 0;
    background-color: #fff3cd;
    border-radius: 4px;
    padding: 12px 15px;
    font-weight: 600;
}

.total-section-left .subtotal-after-discount span:first-child {
    color: #856404;
}

.total-section-left .subtotal-after-discount .subtotal_after_discount {
    color: #856404;
    font-weight: bold;
}

.total-section-left .vat-row {
    padding: 8px 0;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
    margin: 5px 0;
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 12px 15px;
}

.total-section-left .vat-row span:first-child {
    font-weight: 600;
    color: #e74c3c;
}

.total-section-left .vat-row .vat-percentage {
    font-weight: bold;
    color: #e74c3c;
}

.total-section-left .vat-row .vat-amount {
    font-weight: bold;
    color: #e74c3c;
    font-size: 1.05em;
}

.total-section-left .total-row.final {
    border-top: 2px solid #2c3e50;
    padding-top: 12px;
    margin-top: 8px;
    font-size: 1.1em;
    font-weight: bold;
}

.total-section-left .total-row.final .total_final {
    color: #2c3e50;
    font-size: 1.2em;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .total-section-left .subtotal-after-discount {
        padding: 10px 12px;
        margin: 8px 0;
    }
    
    .total-section-left .subtotal-after-discount span {
        font-size: 0.95em;
    }
    
    .total-section-left .vat-row {
        padding: 10px 12px;
        margin: 8px 0;
    }
    
    .total-section-left .vat-row span {
        font-size: 0.95em;
    }
    
    .total-section-left .total-row.final {
        padding-top: 15px;
        margin-top: 10px;
    }
} 