/* PaketSatis16Theme - Payment Methods Styling */
.payment-methods-section {
    margin-top: 2rem;
    padding: 1.5rem 0;
}

.payment-methods-section h3 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.payment-method-card {
    position: relative;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.payment-method-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.15);
    transform: translateY(-2px);
}

.payment-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-method-card input[type="radio"]:checked+label {
    color: #007bff;
}

.payment-method-card input[type="radio"]:checked~.payment-method-card,
.payment-method-card:has(input[type="radio"]:checked) {
    border-color: #007bff;
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.2);
}

.payment-method-card label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    margin: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    gap: 0.5rem;
}

.payment-method-card i {
    font-size: 2rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.payment-method-card input[type="radio"]:checked+label i {
    color: #007bff;
}

.payment-method-card span {
    font-weight: 600;
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.3;
}

.payment-method-card small {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
    background: rgba(108, 117, 125, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    margin-top: 0.25rem;
}

.payment-method-card input[type="radio"]:checked+label small {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .payment-method-card {
        padding: 1rem;
    }

    .payment-method-card i {
        font-size: 1.5rem;
    }

    .payment-method-card span {
        font-size: 0.85rem;
    }

    .payment-methods-section h3 {
        font-size: 1.2rem;
        text-align: center;
    }
}

/* Animation for selection */
.payment-method-card {
    animation: fadeIn 0.5s ease-in-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus states for accessibility */
.payment-method-card input[type="radio"]:focus+label {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}
.divider{
    display: none;
}