
/* Payment Methods Section */
.payment-methods-container {
    background-color: white;
    border-radius: 0.75rem;
    margin-top: 0.5rem;
    padding: 1.5rem;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.payment-methods-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.payment-methods-title {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
}

.payment-methods-subtitle {
    color: #666;
    font-size: 0.875rem;
    margin: 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.payment-item {
    background-color: #f8f9fa;
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-item img {
    max-height: 45px;
    width: auto;
    display: block;
}

.payment-info-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-radius: 0.75rem;
    padding: 1rem;
    border-left: 4px solid #667eea;
    margin-top: 1.5rem;
}

.payment-info-text {
    color: #667eea;
    font-weight: 600;
    font-size: 0.8125rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
