/* Genel Ayarlar */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Form Container */
.form-container {
    margin: 0 auto;
    max-width: 500px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 50px;
    animation: slideInUp 0.5s ease-out;
}

/* Başlık ve Metin */
h3 {
    text-align: center;
    font-size: 17px;
    font-weight: 900; /* Daha kalın */
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase; /* Büyük harfler ile daha belirgin yapar */
}


h2, p {
    text-align: center;
    color: #555;
}

/* Form Yapısı */
form {
    display: flex;
    flex-direction: column;
}

/* Input & Textarea */
input[type="text"], input[type="email"], textarea, select {
    padding: 14px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Button */
button {
    padding: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* Alt Fotoğraflar */
.bottom-images {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.bottom-images img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Fotoğraf Ortalama */
.container img {
    display: block;
    margin: 0 auto;
}

/* Responsive İmajlar */
.responsive-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 20px auto;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .form-container {
        width: 90%;
        padding: 20px;
    }

    .bottom-images img {
        width: 80px;
        height: 80px;
    }

    .responsive-img {
        max-width: 100%;
    }

    /* WhatsApp Butonu */
    .whatsapp-button {
        left: 15px;
        bottom: 15px;
        z-index: 1000;
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .whatsapp-button img {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .whatsapp-text {
        font-size: 14px;
        font-weight: bold;
        color: #25D366;
        margin-left: 10px;
        opacity: 0;
        transform: translateX(-20px);
        white-space: nowrap;
        animation: slideIn 0.5s forwards;
        animation-delay: 2s;
    }

    .whatsapp-button:hover img {
        transform: scale(1.1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Genel radio buton stilleri */
.product-card input[type="radio"] {
    margin-right: 15px;
    width: 40px; /* Genişliği artırdım */
    height: 40px; /* Yüksekliği artırdım */
    border: 3px solid #ddd; /* Dış sınır biraz daha kalın */
    border-radius: 50%; /* Tam yuvarlak yapmak için 50% kullanıyoruz */
    background-color: #fff; /* Başlangıçta beyaz arka plan */
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-sizing: border-box; /* Boyutların doğru hesaplanmasını sağlar */
}

/* Seçili durumda içi dolu mavi görünüm */
.product-card input[type="radio"]:checked {
    background-color: #007bff; /* İç dolgu tamamen mavi */
    border: 3px solid #007bff; /* Dış sınır mavi */
    box-shadow: none; /* Parlama kaldırıldı */
}

/* Hover efekti */
.product-card input[type="radio"]:hover {
    border-color: #007bff; /* Hover'da mavi vurgusu */
}

/* Kutu düzeni */
.product-card {
    border-radius: 10px; /* Kutu kenarlarını biraz daha yuvarladım */
    padding: 20px; /* Kutu içi padding biraz artırıldı */
    margin: 15px 0; /* Kutu arasındaki mesafe artırıldı */
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover kutu efekti */
.product-card:hover {
    background-color: #f7f7f7; /* Hover'da kutunun arka planı */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Label stili */
.product-card label {
    font-size: 24px; /* Yazı tipi büyütüldü */
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .product-card input[type="radio"] {
        width: 36px; /* Mobilde biraz daha büyük radio butonu */
        height: 36px; /* Mobilde boyut uyumu */
    }

    .product-card label {
        font-size: 20px; /* Mobilde biraz daha küçük yazı */
    }
}

/* Radio butonunu sıkıştırmamak için container özellikleri */
.product-selection, .payment-options {
    display: flex;
    flex-direction: column;
    width: 100%; /* Genişliği yüzde 100 yapmak, sıkıştırmayı engeller */
    align-items: flex-start; /* Flexbox'ı daha esnek hale getirmek */
    box-sizing: border-box; /* Kapsayıcı boyutunun içeriği doğru şekilde hesaba katmasını sağlar */
}

.product-card, .radio-group {
    border: 1px solid #ddd;
    border-radius: 8px; /* Kutu kenarlarını biraz daha yuvarladım */
    padding: 15px; /* Kutu içi padding biraz artırıldı */
    margin: 15px 0; /* Kutu arasındaki mesafe artırıldı */
    display: flex;
    align-items: center;
    min-width: 30px; /* Minimum genişlik artırıldı */
    min-height: 30px; /* Minimum yükseklik artırıldı */
    box-sizing: border-box; /* Kapsayıcı boyutları doğru hesaba katar */
}

/* Radio buton stilleri */
.product-card input[type="radio"], .radio-group input[type="radio"] {
    margin-right: 12px; /* Sağdaki boşluk biraz daha artırıldı */
    width: 36px; /* Sabit genişlik büyütüldü */
    height: 36px; /* Sabit yükseklik büyütüldü */
    outline: none;
    border: 3px solid #007bff; /* Dış çizgi mavi ve biraz daha kalın */
    border-radius: 50%; /* Tam yuvarlak yapmak için 50% kullanıyoruz */
    position: relative;
    box-sizing: border-box; /* Boyutların doğru şekilde hesaplanmasını sağlar */
}

/* Seçili durumda tamamen mavi olacak */
.product-card input[type="radio"]:checked, .radio-group input[type="radio"]:checked {
    background-color: #007bff; /* İç dolgu tamamen mavi */
    border: 3px solid #007bff; /* Dış sınır mavi ve daha kalın */
}


 .custom-checkbox {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            border: 3px solid #ccc;
            border-radius: 10px;
            font-size: 1.2em; /* Metin boyutu */
        }

        .custom-checkbox input[type="checkbox"] {
            margin-right: 10px;
            transform: scale(1.5); /* Checkbox boyutu */
        }