/* صفحة طرق الدفع */
.payment-container .glass-card {
    max-width: 550px;
    padding: 32px 28px;
}

/* رأس الصفحة */
.payment-header {
    margin-bottom: 28px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--text-primary);
}

.back-link svg {
    width: 18px;
    height: 18px;
}

.payment-title-section {
    text-align: center;
}

.payment-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.payment-icon svg {
    width: 28px;
    height: 28px;
    color: #10b981;
}

/* بطاقات طرق الدفع */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.payment-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-4px);
}

.payment-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-card-icon svg {
    width: 22px;
    height: 22px;
}

/* ألوان مختلفة لكل طريقة دفع */
.payment-card-icon.bank-transfer {
    background: rgba(16, 185, 129, 0.15);
}
.payment-card-icon.bank-transfer svg {
    color: #10b981;
}

.payment-card-icon.cashplus {
    background: rgba(245, 158, 11, 0.15);
}
.payment-card-icon.cashplus svg {
    color: #f59e0b;
}

.payment-card-icon.western-union {
    background: rgba(234, 179, 8, 0.15);
}
.payment-card-icon.western-union svg {
    color: #eab308;
}

.payment-card-icon.bank-card {
    background: rgba(59, 130, 246, 0.15);
}
.payment-card-icon.bank-card svg {
    color: #3b82f6;
}

.payment-card-icon.paypal {
    background: rgba(99, 102, 241, 0.15);
}
.payment-card-icon.paypal svg {
    color: #6366f1;
}

/* محتوى البطاقة */
.payment-card-content {
    flex: 1;
}

.payment-card-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label-ar {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.label-fr {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    direction: ltr;
    font-family: sans-serif;
}

/* ملاحظة أسفل الصفحة */
.payment-note {
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.payment-note .note-ar {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.payment-note .note-fr {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: sans-serif;
    direction: ltr;
    margin-bottom: 12px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    color: #f59e0b;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(245, 158, 11, 0.25);
    transform: translateY(-2px);
}

.contact-link svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 480px) {
    .payment-container .glass-card {
        padding: 24px 18px;
    }

    .payment-card {
        padding: 12px 14px;
    }

    .payment-card-labels {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .label-fr {
        direction: rtl;
    }
}