/* Genel Body Stili */
body {
    padding-top: 70px; /* Sabit navbar yüksekliği kadar boşluk bırakın (genellikle 56px + biraz marj) */
    position: relative; /* Footer'daki absolute konumlandırma için */
    min-height: 100vh; /* İçerik az olsa bile footer alta yapışsın */
    /* padding-bottom footer yüksekliği kadar olmalı, dinamik olabilir */
    padding-bottom: 120px; /* Footer ve boşluk için */
}

.content {
     /* Bu dive özel padding gerekmez, body paddingini kullanıyoruz */
}


/* Navbar Stili */
.navbar {
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08); /* Hafif gölge */
}

/* Ürün Kartları Stili */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.card-img-top {
    height: 200px; /* Görsel yüksekliğini sabitle */
    object-fit: cover; /* Görselin oranını bozmadan alanı doldur */
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-text {
    flex-grow: 1; /* Açıklama alanı tüm boşluğu kaplasın */
}

.btn-block {
    width: 100%;
}

/* SEO Makalesi Alanı */
.seo-article {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    border-radius: 5px;
}

.seo-article h2 {
    color: #007bff;
    margin-bottom: 15px;
}

/* Footer Stili */
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* height: 100px; */ /* Dinamik yüksekliğe izin ver */
    background-color: #f8f9fa;
    color: #333;
}

footer .container {
    /* Footer içeriği için padding */
    padding-top: 20px;
    padding-bottom: 20px;
}

footer .text-center {
    /* Alt copyright barı */
     padding: 10px 0;
}


/* WhatsApp Butonu Stili */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; /* Diğer elementlerin üzerinde olması için */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white; /* Hover'da renk değişimi olmasın */
    text-decoration: none; /* Alt çizgi olmasın */
}

.whatsapp-button img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Dil Seçici Konumu (Navbar içinde sağ üst - Bootstrap classları yeterli) */
/* .navbar .dropdown-menu {
    right: 0;
    left: auto;
} */


/* Sepet Sayfası Stili */
.table img {
    max-width: 50px;
    height: auto;
}

/* Form Grupları İçin Alt Boşluk */
.form-group {
    margin-bottom: 15px;
}

/* Ürün Detay Sayfası Stili */
.img-fluid {
    max-width: 100%;
    height: auto;
}