/* Genel Stil Ayarlamaları */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

html,
body {
    height: 100%;
}

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

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

a {
    text-decoration: none;
}
.h1, h1 {
    font-size: calc(1rem + 1.5vw);
}
.bg-custom {
    background-color: #e31d75 !important;
}

.br-0 {
    border-radius: 0 !important;
}

/* Tüm inputların focus mavi çerçevesini kaldır */
input:focus,
select:focus,
textarea:focus,
.form-control:focus,
/* Bootstrap form kontrolleri için özel */
.btn:focus,
/* Eğer butonlarda da kaldırmak isterseniz */
.form-select:focus,
/* Eğer select kutularında da kaldırmak isterseniz */
.input-group-text:focus {
    /* Input group eklentileri için */
    outline: none !important;
    /* Tarayıcının varsayılan focus outline'ını kaldırır */
    box-shadow: none !important;
    /* Bootstrap'in focus anındaki kutu gölgesini kaldırır */
}

/* Header / Navigasyon Stilleri */
.navbar-custom {
    background-color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
}

.navbar-custom .navbar-brand img {
    height: 100px;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
    /* Alt çizgi için bu gerekli */
}

.navbar-custom .nav-link:hover {
    color: rgb(227, 29, 117) !important;
    box-shadow: none !important;
}

/* Normal menü bağlantıları için alt çizgi efekti */
.navbar-custom .nav-item:not(.dropdown) .nav-link::after {
    /* Sadece dropdown olmayan linkleri hedefle */
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: rgb(227, 29, 117);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.navbar-custom .nav-item:not(.dropdown) .nav-link:hover::after {
    /* Sadece dropdown olmayan linkleri hedefle */
    width: 100%;
}

/* Dropdown menü bağlantıları için alt çizgi efektini kaldır */
.navbar-custom .dropdown-menu .dropdown-item::after {
    display: none;
    /* Dropdown item'larındaki alt çizgiyi kapatır */
}

.navbar-custom .btn-custom {
    background-color: rgb(227, 29, 117);
    color: white;
    border-radius: 50px;
    padding: 8px 15px;
    /* Padding'i biraz küçültelim */
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    /* Metnin tek satırda kalmasını sağlar */
    overflow: hidden;
    /* Taşan kısmı gizler */
    text-overflow: ellipsis;
    /* Taşan kısmın sonuna "..." ekler */
    display: inline-block;
    /* Gerekirse diğer elementlerle yan yana durmasını sağlar */
}

.navbar-custom .btn-custom:hover {
    background-color: rgb(171, 22, 89);
    color: white !important;
}

.navbar-toggler {
    border: none;
    filter: invert(1);
    /* Hamburger ikonunu beyaz yapar */
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Dil seçeneği dropdown okunu düzeltme */
.navbar-custom .nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.navbar-custom .nav-link.dropdown-toggle .bi-globe {
    margin-right: 5px;
    /* Ok ile metin arasına boşluk */
}

.navbar-custom .nav-link.dropdown-toggle:hover,
.navbar-custom .nav-link.dropdown-toggle:focus {
    /* Mavi çizgiyi ve varsayılan focus/hover efektlerini kaldır */
    outline: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    /* Emin olmak için */
    border-color: transparent !important;
    /* Emin olmak için */
    background-color: transparent !important;
    /* Arka plan rengi değişiyorsa */
}

/* Sadece "Ürünler" gibi dropdown başlıkları için özel */
.navbar-custom .nav-item.dropdown .nav-link {
    /* varsayılanda alt çizgi olmasın */
    border-bottom: none !important;
}

.navbar-custom .nav-item.dropdown .nav-link:hover,
.navbar-custom .nav-item.dropdown .nav-link:focus {
    /* Üzerine gelindiğinde veya odaklanıldığında alt çizgiyi ve gölgeyi kaldır */
    outline: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    background-color: transparent !important;
    /* Gerekirse */
    color: rgb(227, 29, 117) !important;
    /* Hover rengini koru */
}

/* Eğer yine de bir çizgi varsa, genel .nav-link hover etkisine de ekleyebiliriz */
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:focus {
    outline: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    /* Genel nav-link'ler için de ekleyelim */
}

/* Genel Dropdown Menüler için Ortak Konumlandırma */
.navbar-nav .dropdown-menu {
    /* Menünün ana navbar'ın altına hizalanması için */
    top: 100% !important;
    /* Bu, dropdown'ı parent elementinin (nav-item) altına değil,
                             navbar'ın kendi yüksekliğinin altına hizalar. */
    margin-top: 0;
    /* Üstteki boşluğu sıfırla */
    border-radius: 0 0 8px 8px;
    /* Alt köşeleri yuvarla */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    /* Gölge efekti */
    border: none;
    border-top: 2px solid rgb(227, 29, 117);
    /* Pembe üst çizgi */
}

/* Mega Menüye Özgü Genişlik Ayarı (zaten vardı ama tekrar teyit edelim) */
.navbar-nav .nav-item.position-static .dropdown-menu.mega-menu {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    /* Tarayıcı genişliğine yayılmasını sağlar */
    padding: 20px;
}

/* Normal (Mega Olmayan) Dropdownlar için Özellikler */
.navbar-nav .dropdown-menu:not(.mega-menu) {
    /* Varsayılan boyutlarında kalsınlar, genişlemesinler */
    min-width: 10rem;
    /* Bootstrap varsayılanı veya istediğiniz min genişlik */
    left: auto !important;
    /* Sol veya sağa hizalamayı sıfırla, Bootstrap'in defaultunu kullan */
    right: auto !important;
    /* Sağdaki menüler için sağa hizalama */
    /* Diğer stil ayarları (padding vb.) yukarıdaki .dropdown-menu genel kuralından gelir */
}

/* Küçük ekranlarda menülerin düzgün görünmesi için (Mobil görünüm) */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        position: static !important;
        /* Mobil'de statik davranış */
        width: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        margin-top: 10px !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
    }

    .navbar-nav .nav-item.position-static .dropdown-menu.mega-menu {
        padding: 10px;
        /* Mobil'de mega menü padding'ini ayarla */
    }

    .navbar-nav .mega-menu .dropdown-item img {
        width: 32px;
        height: 32px;
    }
}

/* Mega Menu için özel stiller - Sadece Ürünler dropdown'ı */
/* Bootstrap 5'in position-static özelliği sayesinde dropdown-menu varsayılan olarak zaten
   ana menü öğesinin hemen altında konumlanır. Sadece genişliği ayarlayacağız. */
.navbar-nav .nav-item.position-static .dropdown-menu.mega-menu {
    left: 0;
    /* Sol kenara hizala */
    right: 0;
    /* Sağ kenara hizala */
    width: 100%;
    /* Ekranın tam genişliğini kullan */
    margin-top: 0;
    /* Üstteki menü ile birleşmesini sağlar */
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: none;
    border-top: 2px solid rgb(227, 29, 117);
    border-radius: 0 0 8px 8px;
    /* Alt köşeleri yuvarla */
}

/* Mega menü içindeki dropdown item'lar için stil */
.navbar-nav .mega-menu .dropdown-item {
    padding: 10px;
    /* İç boşluğu ayarla */
    font-size: 1.1rem;
    /* Yazı boyutunu biraz büyüt */
    color: #333;
    /* Varsayılan metin rengi */
    border-radius: 6px;
    /* Köşeleri hafif yuvarlak */
    transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-nav .mega-menu .dropdown-item:hover,
.navbar-nav .mega-menu .dropdown-item:focus {
    background-color: #f0f0f0;
    /* Hover rengi */
    color: rgb(227, 29, 117);
    /* Hover'da metin rengi */
}

/* Resim ve metin hizalaması */
.navbar-nav .mega-menu .dropdown-item img {
    flex-shrink: 0;
    /* Resmin küçülmesini engelle */
}

.navbar-nav .mega-menu .dropdown-item span {
    flex-grow: 1;
    /* Metnin kalan alanı doldurmasını sağlar */
}

/* Küçük ekranlarda menünün düzgün görünmesi için (Mobil görünüm) */
@media (max-width: 991.98px) {

    /* Bootstrap'in md breakpoint'i */
    .navbar-nav .nav-item.position-static .dropdown-menu.mega-menu {
        position: static;
        /* Mobil'de statik davranış */
        width: auto;
        left: auto;
        right: auto;
        padding: 10px;
        box-shadow: none;
        border: none;
        border-radius: 0;
        border-top: none;
        /* Mobil'de üst çizgiyi kaldır */
    }

    .navbar-nav .mega-menu .dropdown-item {
        padding: 8px 12px;
        font-size: 1rem;
    }

    .navbar-nav .mega-menu .dropdown-item img {
        width: 32px;
        /* Mobil'de resim boyutunu küçült */
        height: 32px;
    }
}

@media (min-width: 996px) and (max-width: 1200px) {
    .navbar-custom .navbar-brand img {
        height: 70px;
    }

    .navbar-custom .nav-link {
        font-size: 13px;
    }
}

/* mobil sepet stilleri */
.my-mobile-menu {
    display: flex;
}

/* Hero Section Stilleri */
.hero-section {
    position: relative;
    height: 70vh;
    background-color: #f8f9fa;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 1s ease-out forwards;
    animation-delay: 1s;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 1s ease-out forwards;
    animation-delay: 1.4s;
}

/* "Üye Girişi Yapın" butonu stili */
.hero-content .btn-login-modal {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 1s ease-out forwards;
    animation-delay: 2.1s;
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.hero-content .btn-login-modal:hover {
    background-color: rgb(227, 29, 117);
    color: #fff;
    border-color: rgb(227, 29, 117);
    transform: translateY(-2px);
}

/* Footer Stilleri */
footer {
    background-color: #222;
    color: #bbb;
    padding: 40px 0;
    font-size: 0.9rem;
    margin-bottom: -30px;
}

footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

footer .social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #000;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .navbar-custom .nav-link {
        margin: 5px 0;
        text-align: center;
    }

    .navbar-custom .btn-custom {
        width: 80%;
        margin: 15px auto;
        display: block;
    }

    .navbar-custom .nav-item.ms-lg-3 {
        margin-left: 0 !important;
    }

    .navbar-custom .navbar-brand {
        margin-right: auto;
    }

    /* Mobil menüde dropdown linklerinin alt çizgi hover efekti olmasın */
    .navbar-custom .navbar-nav .nav-item.dropdown .nav-link::after {
        display: inline-block;
        /* Bootstrap'in kendi oku için geri getir */
        width: auto;
        /* Genişliği sıfırla */
        height: auto;
        /* Yüksekliği sıfırla */
        background: none;
        /* Arka planı sıfırla */
        bottom: auto;
        /* Konumu sıfırla */
        left: auto;
        /* Konumu sıfırla */
        content: "";
        /* İçeriği sıfırla, Bootstrap'in kendi okunu kullanacak */
    }
}

/* Animasyonlu Ürün Resimleri için stiller */
.intro-product-wrapper {
    position: absolute;
    top: 25%;
    left: 0;
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    z-index: 2;
}

.intro-product-img {
    max-height: 100%;
    width: auto;
    position: relative;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    margin: 0;
}

.intro-product-img.show {
    opacity: 1;
    transform: translateX(0);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 1;
}

/* Animasyon Keyframes */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    /* Mevcut kurallarınız */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    /* Genel intro-product-wrapper ve intro-product-img stilleriniz (medya sorgularının dışında) */
    .intro-product-wrapper {
        position: absolute;
        top: 25%;
        left: 0;
        width: 100%;
        height: 50%;
        /* Masaüstü için yeterli yükseklik */
        display: flex;
        justify-content: center;
        align-items: flex-end;
        /* Görselleri dikeyde alta hizala */
        overflow: hidden;
        /* Taşmayı gizle */
        z-index: 2;
        flex-wrap: wrap;
        /* Görsellerin alt satıra geçmesini sağlar - ÇOK ÖNEMLİ */
        align-content: flex-end;
        /* Birden fazla satır olduğunda satırları alta hizala */
    }

    .intro-product-img {
        max-height: 100%;
        width: auto;
        /* Genişliği orantılı ayarla */
        position: relative;
        opacity: 0;
        transform: translateX(-100px);
        transition: opacity 1s ease-out, transform 1s ease-out;
        margin: 0;
        /* Varsayılan marginleri sıfırla */
    }

    .intro-product-img.show {
        opacity: 1;
        transform: translateX(0);
    }

    /* responsive düzenlemeler - mobil */
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
        /* Başlık font boyutunu biraz küçült */
    }

    .hero-content p {
        font-size: 1.1rem;
        /* Paragraf font boyutunu biraz küçült */
    }

    .intro-product-wrapper {
        top: 10%;
        /* Hero içeriğinin yüksekliğine göre ayarlayın */
        height: 80%;
        /* 4 görselin dikeyde sığması için yüksekliği artırın */
        align-items: center;
        /* Görselleri dikeyde ortala */
        align-content: center;
        /* Eğer iki satır olursa içeriği ortala */
        padding: 0 5%;
        /* Kenarlardan biraz boşluk bırakarak sığmalarına yardımcı olun */
        box-sizing: border-box;
        /* Padding'in genişliği etkilemesini engelle */
    }

    .intro-product-img {
        max-width: 48%;
        /* Her bir görselin %48 genişlikte olmasını sağlayarak yan yana 2 tane sığdır */
        flex-basis: 48%;
        /* Flex öğesinin temel boyutunu belirle */
        height: auto;
        /* Yüksekliği orantılı ayarla */
        margin: 1%;
        /* Görseller arasında boşluk bırak */
        object-fit: contain;
        /* Görselin oranlarını koruyarak sığdır */
    }
    .my-minibutton-set {
        font-size: 12px;
        padding: 0.3rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.5rem;
        /* Daha küçük mobil ekranlar için başlık font boyutu */
    }

    .hero-content p {
        font-size: 0.9rem;
        /* Daha küçük mobil ekranlar için paragraf font boyutu */
    }

    .intro-product-wrapper {
        top: 20%;
        /* Konumu daha küçük ekranlar için ayarla */
        height: 80%;
        /* Yüksekliği ayarla */
        padding: 0 2%;
        /* Daha az boşluk */
    }

    .intro-product-img {
        max-width: 49%;
        /* Daha küçük ekranlar için görselleri biraz daha büyüt veya küçült */
        flex-basis: 49%;
        /* Flex öğesinin temel boyutunu belirle */
        margin: 0.5%;
        /* Görseller arasında daha az boşluk */
    }

    .navbar-custom .navbar-brand img {
        height: 50px;
    }

    .navbar-custom .navbar-brand img {
        height: 50px;
    }
}

/* kategoriler sayfası stili */
/* custom.css veya style.css dosyanıza taşınması önerilir */
.page-header {
    background-color: #f8f9fa;
    /* Açık gri arka plan */
    padding: 40px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #343a40;
    font-weight: 700;
}

.product-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.product-img-container {
    height: auto;
    /* Görsel kutusu için sabit yükseklik */
    overflow: hidden;
    /* Taşmayı engelle */
    display: flex;
    align-items: center;
    /* Dikeyde ortala */
    justify-content: center;
    /* Yatayda ortala */
}

.card-img-top-custom {
    width: 80%;
    height: auto;
    /* Kapsayıcıyı doldur */
    object-fit: contain;
    /* Resmi kutuya sığdır, kırpma */
    padding: 0;
    /* Görsel etrafında boşluk bırakabiliriz */
}

.product-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    padding: 0.9rem;
}

.product-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    min-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta-info {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-meta-info p {
    margin-bottom: 5px;
}

.product-meta-info i {
    margin-right: 8px;
    color: #495057;
}

.btn-product-detail {
    margin-top: auto;
}

.alert-info-custom {
    padding: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Kategori ve Etiket Filtreleme Sayfası Stilleri */
.sidebar-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    /* Kenar yuvarlaması için */
}

.sidebar-header {
    background-color: #e31d75 !important;
    padding: 1rem 1.25rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Etiket Listesi */
.tag-list .list-group-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
    padding: 0.75rem 1.25rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.tag-list .list-group-item:last-child {
    border-bottom: none;
}

.tag-list .list-group-item a {
    color: #495057;
    /* Varsayılan metin rengi */
    text-decoration: none;
    display: block;
    /* Tüm alanı tıklanabilir yap */
    font-weight: 500;
}

.tag-list .list-group-item:hover {
    background-color: #d1d0d0;
}

.tag-list .list-group-item:hover a {
    color: #000;
}

.tag-list .list-group-item.active {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    margin: 0;
    padding-left: 1rem;
    padding-right: 1rem;
}

.tag-list .list-group-item.active a {
    color: #fff;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
}

.sidebar-body {
    padding: 1rem;
}

.sidebar-category-item {
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-out;
    border: 1px solid #e9ecef;
    /* Hafif bir kenarlık */
    font-size: 0.95rem;
}

.sidebar-category-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.adet-secimi-grubu {
    display: flex;
    align-items: center;
    max-width: 150px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    overflow: hidden;
}

.adet-secimi-grubu .btn {
    border: none;
    border-radius: 0;
    padding: .375rem .75rem;
    height: calc(1.5em + .75rem + 2px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
}

.adet-secimi-grubu .btn:focus {
    box-shadow: none;
}

.adet-secimi-grubu input[type="number"] {
    border: none;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    width: 60px;
    padding: .375rem .75rem;
    height: calc(1.5em + .75rem + 2px);
    flex-grow: 1;
    background: #f1f1f1;
    border-radius: 0;
}

.adet-secimi-grubu .btn:hover {
    background-color: #000;
}

/* Custom CSS */
.modal-backdrop.fade.show {
    opacity: 0.9;
    /* Arka planı daha karanlık yapmak için */
    background-color: #000;
    /* Tamamen siyah bir arka plan için */
}

/* İsteğe bağlı: Butonun yüklenme durumunu göstermek için */
#threesixtyButton.loading {
    pointer-events: none;
    /* Tıklamayı engelle */
    opacity: 0.7;
    /* Yüklenirken hafif soluk görünüm */
}

#threesixtyModal .modal-content {
    width: auto;
    margin: auto;
}

#threesixtyModal .modal-header {
    display: block;
    border-radius: 0;
}

#threesixtyModal .modal-header .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

@media (max-width:600px) {
    .sidebar-category-item img {
        width: 30px;
        height: 30px;
    }

    .sidebar-category-item span {
        font-size: 12px;
    }

    .page-header {
        padding: 0;
        margin: 0;
    }

    .page-header h1 {
        font-size: 1.7rem;
        margin-top: 10px;
    }

    .page-header .lead {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .card-img-top-custom {
        width: 70%;
        height: auto;
        object-fit: contain;
        padding: 0;
    }

    .product-card-body {
        height: auto;
        padding: 0.3rem;
    }

    .product-card-title {
        font-size: 0.7rem;
        margin-bottom: 0;
        min-height: 28px;
    }

    .product-img-container {
        height: auto;
    }

    .kategori-sayfa-row {
        padding-right: .25rem !important;
        padding-left: .25rem !important;
    }

    .kategori-sayfa-row>.col {
        padding-left: 6px;
        padding-right: 6px;
        margin-top: 10px;
    }
    .all-ctgbuton {
        font-size: 0.85rem;
    }

}

/* Örnek: Sayfalama düğmelerini biraz daha büyük ve belirgin yapabiliriz */
.pagination .page-item .page-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    /* Bootstrap primary color */
    border-color: #007bff;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.product-tag-badge {
    border: 1px solid #0dcaf0;
    color: #212529 !important;
    background-color: transparent;
    padding: 0.4rem 0.8rem;
    font-weight: normal;
    border-radius: 0.25rem;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    font-size: 13px;
}

.product-tag-badge:hover {
    background-color: #0dcaf0;
    color: white !important;
}

.product-tag-badge.active {
    background-color: #0dcaf0;
    color: white !important;
    font-weight: 600;
}

.kategori-tag-badge {
    border: 1px solid #000;
    color: #212529 !important;
    background-color: transparent;
    padding: 0.3rem 0.7rem;
    font-weight: normal;
    border-radius: 0.25rem;
    margin-left: 0.25rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
}

.kategori-tag-badge:hover {
    background-color: #000;
    color: white !important;
}

.kategori-tag-badge.active {
    background-color: #000;
    color: white !important;
    font-weight: 600;
}

.sidebar-category-item:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-category-item img {
    border-radius: 5px;
}

.sidebar-category-item.active-category-item {
    background-color: #d5d3d4
}

.badge.border.border-info {
    border-color: #0dcaf0 !important;
}

.badge.active-filter-tag {
    background-color: #0dcaf0;
    color: white !important;
    border-color: #0dcaf0 !important;
    font-weight: 600;
}

.category-section {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
}

@media (max-width: 600px) {
    .category-section {
        box-shadow: none;
        padding: inherit;
    }
}

.search-divo p {
    margin-bottom: 0;
    font-size: 13px;
}

.sp-image {
    object-fit: contain;
    /* Görselin taşmaması için */
    width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
}

/* Genel Buton Konteyneri */
.fixed-contact-buttons {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Butonlar arasına boşluk bırakır */
    z-index: 999;
}

/* Tekil Buton Stilleri */
.contact-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Yuvarlak buton şekli */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Hafif bir gölge ekler */
    transition: all 0.3s ease;
    /* Tüm geçişlere yumuşaklık ekler */
}

/* WhatsApp Butonu */
.contact-button.whatsapp {
    background-color: #25D366;
    /* WhatsApp yeşili */
}

/* Telefon Butonu */
.contact-button.phone {
    background-color: #007bff;
    /* Mavi, Bootstrap'in birincil rengi */
}

/* Buton İkonları */
.contact-button a {
    color: #fff;
    font-size: 28px;
    line-height: 1;
    /* İkonu dikeyde ortalar */
    text-decoration: none;
    display: flex;
    /* İkonu ortalamak için flex kullanırız */
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Hover Animasyonu */
.contact-button:hover {
    transform: scale(1.1);
    /* Butonun boyutu biraz büyür */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Gölge efekti artar */
}

@media screen and (max-width: 768px) {
    .product-gallery-section {
        padding: 0 10px;
    }

    .sp-thumbnails {
        margin-top: 10px;
    }

    #cartIconLink .bg-danger {
        left: auto !important;
        top: 50% !important;
        right: 30%;
    }

    .fixed-contact-buttons {
        gap: 8px;
        right: 5px;
        bottom: 5px;
    }

    .contact-button {
        width: 45px;
        height: 45px;
    }

    .contact-button a {
        font-size: 20px;
    }
}

@media (min-width: 769px) and (max-width: 996px) {
    #cartIconLink .bg-danger {
        left: auto !important;
        top: 50% !important;
        right: 40%;
    }
}

/* Custom CSS - public_html/site/css/style.css veya benzeri ana CSS dosyanız */
.offcanvas .btn-close:focus,
.offcanvas .btn-close:active,
.offcanvas .btn-close {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    /* Bu satır border'ı kaldırır */
}

.delete-cart-item {
    background-color: #e1e0e0;
    border-radius: 0;
    font-size: 0.8rem;
}

#userDropdown .bi {
    font-size: 1.5rem;
    line-height: 1;
}

.contact-page iframe {
    width: 100%;
    height: auto;
    min-height: 300px;
}

.sp-next-arrow:after,
.sp-next-arrow:before,
.sp-previous-arrow:after,
.sp-previous-arrow:before {
    background-color: #000;
}
.slick-slide img {
    display: block;
    width: 80%;
    margin: auto;
}