/* Ödeme sayfası özel stilleri */

/* Bilgi bölümü */
.info-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    border: 2px solid #0080bc;
    box-shadow: 0 4px 15px rgba(0, 128, 188, 0.1);
}

.info-title {
    font-size: 20px;
    color: #0080bc;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

.info-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

/* Tutar Giriş Formu */
.amount-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #0080bc;
    box-shadow: 0 4px 15px rgba(0, 128, 188, 0.1);
}

.amount-form h3 {
    color: #0080bc;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

.amount-input-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.amount-input {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-sizing: border-box;
    width: 200px;
    text-align: center;
}

.amount-input:focus {
    outline: none;
    border-color: #0080bc;
    box-shadow: 0 0 0 3px rgba(0, 128, 188, 0.1);
}

.currency-symbol {
    font-size: 18px;
    font-weight: bold;
    color: #0080bc;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

.min-amount-info {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

/* Devam Et Butonu */
.continue-btn {
    background: linear-gradient(135deg, #0080bc 0%, #0099d9 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px auto;
    display: block;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 200px;
}

.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 188, 0.3);
}

/* Seçim başlığı */
.selection-title {
    font-size: 24px;
    color: #0080bc;
    font-weight: 600;
    text-align: center;
    margin: 40px 0 30px 0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

/* Ödeme Açıklaması */
.payment-info {
    background: #e6f4ff;
    border: 1px solid #0080bc;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0 30px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #0080bc;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

/* Ödeme Formu Stilleri */
.payment-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #0080bc;
    box-shadow: 0 4px 15px rgba(0, 128, 188, 0.1);
}

/* Son kullanma tarihi stilleri */
.expiry-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.expiry-input {
    flex: 1;
    text-align: center;
}

.expiry-separator {
    font-size: 18px;
    font-weight: bold;
    color: #0080bc;
}

/* Ödeme tutarı */
.payment-amount {
    background: #e6f4ff;
    border: 2px solid #0080bc;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amount-label {
    font-size: 16px;
    font-weight: 600;
    color: #0080bc;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

.amount-value {
    font-size: 20px;
    font-weight: 700;
    color: #0080bc;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

/* Ödeme butonu */
.payment-btn {
    background: linear-gradient(135deg, #0080bc 0%, #0099d9 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px auto;
    display: block;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 188, 0.3);
}

/* Loading Ekranı */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

.loading-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0080bc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 18px;
    color: #0080bc;
    font-weight: 600;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    margin-bottom: 10px;
}

.loading-subtext {
    font-size: 14px;
    color: #666;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.5;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .info-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .info-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .info-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .amount-form {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .amount-input-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .amount-input {
        width: 100%;
        max-width: 250px;
    }
    
    .continue-btn {
        padding: 12px 30px;
        font-size: 14px;
        margin: 15px auto;
        width: 100%;
        max-width: 250px;
    }
    
    .selection-title {
        font-size: 20px;
        margin: 30px 0 20px 0;
    }
    
    /* Ödeme açıklaması mobil */
    .payment-info {
        padding: 12px 15px;
        margin: 15px 0 20px 0;
        font-size: 14px;
    }
    
    /* Ödeme formu mobil */
    .payment-form-container {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .payment-amount {
        padding: 15px;
        margin: 20px 0;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .amount-label, .amount-value {
        font-size: 16px;
    }
    
    .payment-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    /* Loading ekranı mobil */
    .loading-container {
        padding: 30px 20px;
        max-width: 350px;
    }
    
    .loading-spinner {
        width: 50px;
        height: 50px;
    }
    
    .loading-text {
        font-size: 16px;
    }
    
    .loading-subtext {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 15px;
    }
    
    .info-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .info-text {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .amount-form {
        padding: 15px;
    }
    
    .amount-form h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .amount-input {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .currency-symbol {
        font-size: 16px;
    }
    
    .min-amount-info {
        font-size: 12px;
    }
    
    .continue-btn {
        padding: 10px 25px;
        font-size: 13px;
        margin: 10px auto;
    }
    
    .selection-title {
        font-size: 18px;
        margin: 20px 0 15px 0;
    }
    
    /* Küçük telefon ödeme açıklaması */
    .payment-info {
        padding: 10px 12px;
        margin: 12px 0 15px 0;
        font-size: 13px;
    }
    
    /* Küçük telefon ödeme formu */
    .payment-form-container {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .expiry-inputs {
        gap: 8px;
    }
    
    .expiry-separator {
        font-size: 16px;
    }
    
    .payment-amount {
        padding: 12px;
        margin: 15px 0;
    }
    
    .amount-label, .amount-value {
        font-size: 14px;
    }
    
    .payment-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Loading ekranı küçük telefon */
    .loading-container {
        padding: 25px 15px;
        max-width: 300px;
    }
    
    .loading-spinner {
        width: 45px;
        height: 45px;
    }
    
    .loading-text {
        font-size: 15px;
    }
    
    .loading-subtext {
        font-size: 12px;
    }
}
