/**
 * COD24 Dokan Frontend Styles
 * Version: 1.0.0
 */

/* Vendor Shipping Section Styles */
.cod24-vendor-shipping-wrapper {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.cod24-vendor-shipping-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cod24-vendor-shipping-item:last-child {
    margin-bottom: 0;
}

.cod24-vendor-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073aa;
}

.cod24-shipping-methods {
    margin-top: 10px;
}

.cod24-shipping-method {
    padding: 10px;
    margin-bottom: 8px;
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cod24-shipping-method:hover {
    background: #f0f0f0;
    border-color: #0073aa;
}

.cod24-shipping-method input[type="radio"] {
    margin-left: 10px;
    margin-right: 0;
}

.cod24-shipping-method label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin: 0;
    width: 100%;
}

.cod24-method-name {
    font-weight: 600;
    color: #333;
}

.cod24-method-price {
    color: #0073aa;
    font-weight: bold;
}

.cod24-shipping-method.selected {
    background: #e8f4f8;
    border-color: #0073aa;
    border-width: 2px;
}

.cod24-vendor-shipping-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #ddd;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
}

.cod24-vendor-shipping-total span {
    color: #0073aa;
}

/* RTL Support */
body.rtl .cod24-shipping-method input[type="radio"] {
    margin-right: 10px;
    margin-left: 0;
}

body.rtl .cod24-vendor-shipping-total {
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    .cod24-vendor-shipping-wrapper {
        padding: 10px;
    }
    
    .cod24-vendor-shipping-item {
        padding: 10px;
    }
    
    .cod24-shipping-method label {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cod24-method-price {
        margin-top: 5px;
    }
}

/* Checkout Page Specific */
#order_review .cod24-vendor-shipping-wrapper {
    margin: 15px 0;
}

/* Loading State */
.cod24-shipping-loading {
    opacity: 0.6;
    pointer-events: none;
}

.cod24-shipping-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0073aa;
    border-radius: 50%;
    animation: cod24-spin 1s linear infinite;
}

@keyframes cod24-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error State */
.cod24-shipping-error {
    color: #a00;
    padding: 10px;
    background: #ffebee;
    border: 1px solid #f44336;
    border-radius: 3px;
    margin: 10px 0;
}

/* Success Message */
.cod24-shipping-success {
    color: #2e7d32;
    padding: 10px;
    background: #e8f5e9;
    border: 1px solid #4caf50;
    border-radius: 3px;
    margin: 10px 0;
}