/* assets/css/payment.css */
.payment-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.payment-option {
    flex: 1 0 calc(33.33% - 12px);
    min-width: 160px;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1e293b;
}
.payment-option:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}
.payment-option.active {
    border-color: #0a3d82;
    background: #e0edff;
    box-shadow: 0 0 0 3px rgba(10,61,130,0.15);
}
.payment-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.payment-option .icon {
    font-size: 24px;
    width: 32px;
    text-align: center;
}
.payment-option .label {
    font-size: 14px;
}
.payment-option .badge {
    font-size: 10px;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 30px;
    margin-left: auto;
    color: #64748b;
}
.payment-option .badge.cod-blocked {
    background: #fee2e2;
    color: #991b1b;
}

#paymentLoader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(4px);
}
#paymentLoader .spinner {
    border: 4px solid #f3f4f6;
    border-top: 4px solid #0a3d82;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#paymentLoader p {
    color: white;
    font-weight: 600;
    margin-top: 16px;
}