.shipping-section {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}

.shipping-section h4 {
    margin-bottom: 10px;
    color: #333;
    font-size: 0.95em;
}

.shipping-option {
    transition: all 0.2s ease;
}

.shipping-option.shipping-selected {
    background-color: #e7f3ff;
    border-radius: 4px;
}

.shipping-option label {
    margin: 0 !important;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px !important;
}

.shipping-option label:hover {
    background-color: #f0f8ff;
}

.shipping-option input[type="radio"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.shipping-rates-container {
    max-height: 400px;
    overflow-y: auto;
}

#shipping-loading {
    padding: 40px;
    color: #6c757d;
}

#shipping-loading i {
    color: #007bff;
}

#shipping-error {
    margin-top: 10px;
}

/* Success text color */
.shipping-option .text-success {
    color: #28a745 !important;
}

/* Selected shipping display */
.selected-shipping-display {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px;
    background: #f8f9fa;
    margin-top: 10px;
}

.shipping-options-list {
    max-height: 500px;
    overflow-y: auto;
}

.shipping-option-item {
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
}

.shipping-option-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.shipping-option-item.selected {
    border-color: #007bff;
    background: #e7f3ff;
}

@media (max-width: 768px) {
    .shipping-option label {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .shipping-option .text-end {
        margin-top: 10px;
        text-align: left !important;
    }
}

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

.shipping-option {
    animation: fadeIn 0.3s ease;
}

.shipping-option.shipping-selected label {
    border-color: #007bff !important;
    border-width: 2px;
}

.biteship-shipping-section {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}

.biteship-shipping-option {
    transition: all 0.2s ease;
}

.biteship-shipping-option.biteship-selected {
    background-color: #e7f3ff;
    border-radius: 4px;
}

.biteship-shipping-rates-container {
    max-height: 400px;
    overflow-y: auto;
}
