/* Additional styles for Shiprocket shipping options */
.shipping-option {
    display: flex;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.shipping-option.active {
    border-color: #c0392b;
    background: #f0f4ff;
}

.shipping-option input {
    margin-right: 15px;
}

.option-details {
    flex: 1;
}

.option-details strong {
    display: block;
    font-size: 16px;
}

.option-details .price {
    font-weight: bold;
    color: #c0392b;
    margin-left: 10px;
}

.option-details small {
    font-size: 12px;
    color: #666;
    margin-left: 10px;
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 8px;
}

.badge.cheapest {
    background: #28a745;
    color: white;
}

.badge.fastest {
    background: #ffc107;
    color: #333;
}

.badge.cod {
    background: #17a2b8;
    color: white;
}

.delivery-success {
    background: #d4edda;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
}

.delivery-error {
    background: #f8d7da;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
}

.loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.free-delivery {
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
}
/* Fallback info styles */
.delivery-success small i.fa-database {
    color: #f57c00;
}

.delivery-success small i.fa-rocket {
    color: #28a745;
}

.delivery-error a {
    color: #721c24;
    text-decoration: underline;
}

.delivery-error a:hover {
    color: #dc3545;
}