/**
 * UPS Shipping Checkout Styles
 */

/* Free Shipping Progress Bar */
.ups-free-shipping-bar {
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-align: center;
}

.ups-free-shipping-message {
    margin: 0 0 12px 0;
    font-size: var(--text-l);
    font-weight: 600;
    color: #333;
}

.ups-free-shipping-message .woocommerce-Price-amount {
    color: #0073aa;
}

.ups-free-shipping-achieved {
    color: #28a745 !important;
}

.ups-free-shipping-achieved::before {
    content: '✓ ';
}

.ups-progress-container {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.ups-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0073aa 0%, #005a87 100%);
    border-radius: 6px;
    transition: width 0.5s ease;
    min-width: 0;
}

.ups-free-shipping-bar .ups-progress-bar[style*="width: 100%"] {
    background: linear-gradient(90deg, #28a745 0%, #218838 100%);
}

.ups-free-shipping-threshold {
    margin: 0;
    font-size: var(--text-xs);
    color: #666;
}

/* Delivery Estimate */
.ups-delivery-estimate {
    display: block;
    font-size: var(--text-xs);
    color: #666;
    margin: 4px 0 0 24px;
    padding-left: 21px;
    padding-bottom: 15px;
}

/* Responsive */
@media (max-width: 600px) {
    .ups-free-shipping-bar {
        padding: 15px;
    }

    .ups-free-shipping-message {
        font-size: var(--text-s);
    }
}
