/**
 * FT Checkout Restrictions - Styles
 *
 * @package FT_Checkout_Restrictions
 */

/* COD Limit Messages */
.ft-cod-limit-message{
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.4;
}

.ft-cod-limit-message .amount{
    white-space: nowrap;
}

.ft-cod-tooltip {
    background-color: #f0f0f0;
    color: #333;
    border-left: 3px solid #0073aa;
}

.ft-cod-warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 3px solid #ffc107;
}

.ft-cod-error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 3px solid #dc3545;
    font-weight: 500;
}

.ft-cod-exceeds-limit {
    opacity: 0.7;
}

.ft-cod-exceeds-limit input[type="radio"] {
    cursor: not-allowed;
}

/* Free Shipping Info */
.ft-free-shipping-info {
    background-color: #f8f9fa;
}

.ft-free-shipping-info td {
    padding: 12px !important;
}

.ft-free-shipping-message,
.ft-cod-warning-message{
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}

.ft-cod-limit-message--warning{
    color: #dd0000;
    background-color: #f8f9fa;
    margin-bottom: 20px;
}


.ft-cod-limit-message--default{
    background-color: #f8f9fa;
    margin-bottom: 20px;
}

.ft-free-shipping-eligible .ft-free-shipping-message {
    color: #28a745;
    font-weight: 400;
}

.ft-free-shipping-not-eligible .ft-free-shipping-message {
    color: #666;
}

/* Free Shipping Info Inline (after shipping method) */
.ft-free-shipping-info-inline {
    margin-top: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #0073aa;
}

.ft-free-shipping-info-inline.ft-free-shipping-eligible {
    background-color: #d4edda;
    border-left-color: #28a745;
}

.ft-free-shipping-info-inline.ft-free-shipping-not-eligible {
    background-color: #f8f9fa;
    border-left-color: #6c757d;
}

.ft-free-shipping-info-inline .ft-free-shipping-message {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.ft-free-shipping-info-inline.ft-free-shipping-eligible .ft-free-shipping-message {
    color: #155724;
    font-weight: 500;
}

.ft-free-shipping-info-inline.ft-free-shipping-not-eligible .ft-free-shipping-message {
    color: #495057;
}

.ft-cod-warning{
    display: block !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ft-cod-limit-message {
        font-size: 12px;
        padding: 6px 10px;
    }

    .ft-free-shipping-message {
        font-size: 12px;
    }

    .ft-free-shipping-info-inline {
        padding: 8px;
    }

    .ft-free-shipping-info-inline .ft-free-shipping-message {
        font-size: 12px;
    }
}

