/* Global Değişkenler (Her yerde kullanılabilir) */
:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-color: #f3f4f6;
    --card-bg: #ffffff;
    --border-color: #d1d5db;
    --error-color: #ef4444;
    --whatsapp-color: #059669;
    --phone-color: #0891b2;
}

/* Sadece #giris içindeki özel ince ayarlar */
#giris .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15); /* Hafif mavi odak gölgesi */
    border-color: #86b7fe;
}

#giris .input-group .form-control:focus + .btn {
    border-color: #86b7fe; /* Göster butonu sınırını input ile eşleştir */
}


/* Sadece #odeme-sayfasi içini etkileyen özel stiller */
#odeme-sayfasi .credit-card-mockup {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    padding: 20px;
    border-radius: 15px;
    width: 85%;
    max-width: 380px;
    height: 210px;
    top: -144px; /* Formun üstüne taşırır */
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
}

#odeme-sayfasi .credit-card-mockup .chip {
    width: 45px;
    height: 35px;
    background: #e0e0e0;
    border-radius: 6px;
    background-image: linear-gradient(to bottom right, #e0e0e0, #bdbdbd);
}

#odeme-sayfasi .credit-card-mockup .logo {
    align-self: flex-end;
    font-size: 1.8rem;
    font-weight: bold;
    font-style: italic;
    margin-top: -35px;
}

#odeme-sayfasi .card-number-mock {
    font-size: 1.5rem;
    letter-spacing: 3px;
    font-family: monospace;
    text-align: center;
}

#odeme-sayfasi .tracking-wide {
    letter-spacing: 2px;
}

/* Mobil için küçük düzeltmeler */
@media (max-width: 768px) {
    #odeme-sayfasi .credit-card-mockup {
        position: relative !important;
        top: 0 !important;
        transform: none !important;
        left: 0 !important;
        margin: -70px auto 20px auto;
        width: 100%;
    }
}