

.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.footer {
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    /* Üst gölge eklendi */
    margin-top: 20px;
}

.footer .quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer .quick-links a {
    text-decoration: none;
    color: #000000;
    margin: 10px 20px;
    transition: color 0.3s ease-in-out;
}

.footer .quick-links a:hover {
    color: #555;
}

.footer .address,
.footer .tags,
.footer .copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

/* Satın Al Butonu */
.btn-buy {
    background-color: #49fcd4;
    /* Arka plan rengi */
    color: black;
    /* Yazı rengi */
    padding: 10px 20px;
    /* İç boşluk */
    text-decoration: none;
    /* Alt çizgiyi kaldır */
    border-radius: 5px;
    /* Köşeleri yuvarla */
    display: inline-block;
    /* Buton gibi görünmesi için */
}

/* Hover durumu: Fareyle üzerine gelince */
.btn-buy:hover {
    background-color: #00FF2C;
    /* Üzerine gelindiğinde arka plan rengi */
    color: #fff;
    /* Yazı rengini beyaz yap */
}

/* Satın Al Butonu */
.btn-buy1 {
    background-color: #49fcd4;
    /* Arka plan rengi */
    color: black;
    /* Yazı rengi */
    padding: 10px 20px;
    /* İç boşluk */
    text-decoration: none;
    /* Alt çizgiyi kaldır */
    border-radius: 5px;
    /* Köşeleri yuvarla */
    display: inline-block;
    /* Buton gibi görünmesi için */
}

/* Hover durumu: Fareyle üzerine gelince */
.btn-buy1:hover {
    background-color: #009fe3;
    /* Üzerine gelindiğinde arka plan rengi */
    color: #fff;
    /* Yazı rengini beyaz yap */
}

/* Satın Al Butonu */
.btn-buy2 {
    background-color: #f3f3f3;
    /* Arka plan rengi */
    color: black;
    /* Yazı rengi */
    padding: 10px 20px;
    /* İç boşluk */
    text-decoration: none;
    /* Alt çizgiyi kaldır */
    border-radius: 5px;
    /* Köşeleri yuvarla */
    display: inline-block;
    /* Buton gibi görünmesi için */
}

/* Hover durumu: Fareyle üzerine gelince */
.btn-buy2:hover {
    background-color: #efeded;
    /* Üzerine gelindiğinde arka plan rengi */
    color: #000000;
    /* Yazı rengini beyaz yap */
}

.ucretsiz {
    display: inline-block;
    padding: 8px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.ucretsiz:hover {
    background-color: #0056b3;
}

.teklif {
    display: inline-block;
    padding: 8px 15px;
    background-color: #FFAE00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.teklif:hover {
    background-color: #FFCE00;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    /* Flexbox kullanarak yan yana hizalama */
}

.product-container {
    margin-right: 20px;
    /* Ürün resminin sağında boşluk */
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    text-align: center;
    color: #333;
    width: 100%;
    /* Başlığın genişliğini artır */
}

.section {
    margin-bottom: 15px;
    width: 100%;
    /* Tüm bölümlerin genişliğini artır */
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
}

input,
select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 15px;
    background-color: #5c67f2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #4e58d6;
}

.kvkk,
.sozlesmeler {
    margin: 15px 0;
}

.kvkk label,
.sozlesmeler label {
    font-size: 12px;
    color: #333;
}

.product-image {
    width: 350px;
    /* Genişliği değiştirin */
    height: 800px;
    /* Yüksekliği otomatik ayarlar */
    margin-bottom: 15px;
}

.price {
    font-size: 16px;
    color: #f44336;
    margin-bottom: 15px;
    font-weight: bold;
}

.iban-container {
    margin-top: 20px;
    /* IBAN bölümüne üstten boşluk */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.iban {
    display: flex;
    justify-content: space-between;
    /* IBAN alanı ve kopyala butonunu yan yana hizalama */
    align-items: center;
}

.iban-input {
    border: none;
    background: none;
    width: 80%;
    cursor: text;
    outline: none;
    /* Fokusu kaldır */
}

.copy-button {
    padding: 5px 10px;
    background-color: #5c67f2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.copy-button:hover {
    background-color: #4e58d6;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    /* Diğer içeriklerin üstünde görünmesi için */
}

.spinner {
    border: 8px solid #f3f3f3;
    /* Light grey */
    border-top: 8px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Modalın arka planı (flu) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Arka plan flu efekti */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal kutu içeriği */
.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 100%;
    position: relative;
}

/* Kapatma butonu (ikon) */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}