       /* Üst Bildirim Bandı */
        .ust-bildirim-bandi {
            background: #F6B1AA;
            color: #fff;
            font-size: 13px;
            font-weight: 500;
            overflow: hidden;
            white-space: nowrap;
            padding: 10px 0;
        }

        .bandi-icerik {
            display: inline-block;
            padding-left: 100%;
            animation: kaydir 35s linear infinite;
        }

        .bandi-metni {
            display: inline-block;
            padding: 0 50px;
        }

        @keyframes kaydir {
            0% {
                transform: translate3d(0, 0, 0);
            }
            100% {
                transform: translate3d(-50%, 0, 0);
            }
        }

        /* Ana Navigasyon */
        .ana-nav {
            background: #fff;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #f0f0f0;
            position: relative;
        }

        .sol-menu {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .hamburger-menu {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .hamburger-menu svg {
            width: 24px;
            height: 24px;
            stroke: #000;
            stroke-width: 2;
        }

        .menu-dugme {
            background: none;
            border: none;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            color: #000;
            position: relative;
        }

        .menu-dugme:hover {
            opacity: 0.7;
        }

        .menu-dugme.acik::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 0;
            right: 0;
            height: 2px;
            background: #000;
        }

        .logo {
            position: absolute;
            left: 48%;
            transform: translateX(-50%);
        }

        .logo-metin {
            font-size: 32px;
            font-weight: bold;
            color: #000;
            text-decoration: none;
            max-width: 300px;
        }

        .sag-menu {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .yeni-urunler-dugme {
            background: none;
            border: none;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .dil-secici {
            background: none;
            border: none;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
        }

        .ikon-dugme {
            background: none;
            border: none;
            cursor: pointer;
            position: relative;
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ikon-dugme svg {
            width: 22px;
            height: 22px;
            stroke: #000;
            fill: none;
            stroke-width: 1.5;
        }

        .sepet-sayac {
            position: absolute;
            top: -5px;
            right: -8px;
            background: #000;
            color: #fff;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        /* Kategori Menüsü */
        .kategori-menusu {
            display: none;
            position: relative;
            top: 14%;
            left: 0;
            right: 0;
            background: #fff;
            border-bottom: 1px solid #f0f0f0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            z-index: 1000;
            padding: 40px;
        }

        .kategori-menusu.acik {
            display: block;
        }

        .kategori-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .kategori-kolon h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #000;
        }

        .kategori-liste {
            list-style: none;
        }

        .kategori-liste li {
            margin-bottom: 10px;
        }

        .kategori-liste a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .kategori-liste a:hover {
            color: #000;
        }

        /* Mobil Kategori Menüsü */
        .mobil-kategori-basligi {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
            font-weight: 600;
        }

        .mobil-kategori-basligi svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s;
        }

        .mobil-kategori-basligi.acik svg {
            transform: rotate(180deg);
        }

        .mobil-alt-kategoriler {
            display: none;
            padding-left: 15px;
        }

        .mobil-alt-kategoriler.acik {
            display: block;
        }

        .mobil-alt-kategoriler a {
            display: block;
            padding: 10px 0;
            color: #666;
            text-decoration: none;
            font-size: 15px;
        }

        /* Arama Paneli */
        .arama-paneli {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            align-items: flex-start;
            justify-content: center;
            padding-top: 100px;
        }

        .arama-paneli.acik {
            display: flex;
        }

        .arama-kutusu {
            background: #fff;
            width: 90%;
            max-width: 800px;
            padding: 30px;
            border-radius: 8px;
            position: relative;
        }

        .arama-kapat {
            position: absolute;
            top: 2px;
            right: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .arama-kapat svg {
            width: 20px;
            height: 20px;
            stroke: #000;
            stroke-width: 2;
        }

        .arama-giris-alani {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .arama-input {
            flex: 1;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 25px;
            font-size: 16px;
            outline: none;
        }

        .arama-dugme {
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            right: 45px;
        }

        .arama-dugme svg {
            width: 22px;
            height: 22px;
            stroke: #666;
            stroke-width: 2;
        }

        .populer-aramalar {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .arama-etiketi {
            background: #f5f5f5;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            border: none;
            cursor: pointer;
        }

        .arama-etiketi:hover {
            background: #e0e0e0;
        }

        /* Mobil Menü */
        .mobil-menu {
            display: none;
            position: fixed;
            top: 0;
            left: -100%;
            width: 280px;
            height: 100vh;
            background: #fff;
            box-shadow: 2px 0 12px rgba(0,0,0,0.1);
            z-index: 3000;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .mobil-menu.acik {
            left: 0;
        }

        .mobil-menu-ust {
            padding: 20px;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobil-menu-kapat {
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobil-menu-kapat svg {
            width: 20px;
            height: 20px;
            stroke: #000;
            stroke-width: 2;
        }

        .mobil-menu-liste {
            list-style: none;
            padding: 0;
        }

        .mobil-menu-liste > li {
            border-bottom: 1px solid #f0f0f0;
        }

        .mobil-menu-liste a,
        .mobil-menu-liste > li > button {
            color: #000;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            background: none;
            border: none;
            cursor: pointer;
            display: block;
            width: 100%;
            text-align: left;
            padding: 0;
        }

        .mobil-menu-bolumu {
            padding: 0 20px;
        }

        .mobil-menu-baslik {
            font-weight: 600;
            font-style: italic;
            font-size: 15px;
            padding: 15px 0;
        }

        .mobil-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2999;
        }

        .mobil-overlay.acik {
            display: block;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .ana-nav {
                padding: 15px 20px;
            }

            .hamburger-menu {
                display: block;
            }

            .menu-dugme {
                display: none;
            }

            .logo-metin {
                font-size: 0px;
                margin-left: -20%;
                max-width: 200px;
            }

            .yeni-urunler-dugme {
                display: none;
            }

            .kategori-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .mobil-menu {
                display: block;
            }
        }
		
		
		
        /* Üst Özellikler Bandı */
        .ust-ozellikler {
            background: #fff;
            padding: 20px 0;
            border: 1px solid #e0e0e0;
            overflow: hidden;
            white-space: nowrap;
        }

        .ozellikler-icerik {
            display: inline-block;
            padding-left: 100%;
            animation: ozelliklerKaydir 35s linear infinite;
        }

        .ozellik-item {
            display: inline-block;
            padding: 0 80px;
            font-size: 14px;
            font-weight: 500;
            color: #000;
        }

        @keyframes ozelliklerKaydir {
            0% {
                transform: translate3d(0, 0, 0);
            }
            100% {
                transform: translate3d(-50%, 0, 0);
            }
        }

        /* Footer Ana */
        .footer {
            background: #fff;
            padding: 60px 40px 40px;
        }

        .footer-icerik {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
            gap: 60px;
        }

        .footer-sol {
            padding-right: 40px;
        }

        .footer-logo {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .footer-slogan {
            font-size: 17px;
            margin-bottom: 40px;
            line-height: 1.5;
            font-weight: 400;
        }

        .eposta-formu {
            margin-bottom: 30px;
        }

        .eposta-formu p {
            font-size: 14px;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .eposta-alani {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .eposta-input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            background: #f9f9f9;
        }

        .eposta-input::placeholder {
            color: #999;
        }

        .abone-dugme {
            background: #000;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
        }

        .abone-dugme:hover {
            background: #333;
        }

        .onay-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 13px;
            color: #666;
            margin-bottom: 30px;
        }

        .onay-checkbox input[type="checkbox"] {
            margin-top: 3px;
            width: 16px;
            height: 16px;
            cursor: pointer;
        }

        .sosyal-medya {
            display: flex;
            gap: 15px;
        }

        .sosyal-ikon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            text-decoration: none;
            font-size: 22px;
        }

        .sosyal-ikon:hover {
            opacity: 0.7;
        }

        /* Footer Kolonlar */
        .footer-kolon h3 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-liste {
            list-style: none;
        }

        .footer-liste li {
            margin-bottom: 12px;
        }

        .footer-liste a {
            color: #000;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
            font-weight: 500;
            line-height: 0px;
        }

        .footer-liste a:hover {
            color: #000;
        }

        /* İletişim Bilgileri */
        .iletisim-item {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .iletisim-item svg {
            width: 18px;
            height: 18px;
        }

        .whatsapp-link {
            color: #666;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            margin-bottom: 12px;
        }

        .whatsapp-link:hover {
            color: #25D366;
        }

        /* Footer Alt */
        .footer-alt {
            max-width: 1400px;
            margin: 40px auto 0;
            padding-top: 30px;
            border-top: 1px solid #e0e0e0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .telif-hakki {
            font-size: 13px;
            color: #666;
        }

        .odeme-yontemleri {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .odeme-yontemleri img {
            height: 30px;
            width: auto;
        }

        /* Mobil Görünüm */
        @media (max-width: 768px) {
            .ust-ozellikler {
                padding: 15px 0;
            }

            .ozellik-item {
                padding: 0 40px;
                font-size: 13px;
            }

            .footer {
                padding: 40px 20px 30px;
            }

            .footer-icerik {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-sol {
                padding-right: 0;
                text-align: center;
            }

            .footer-logo {
                font-size: 32px;
            }

            .footer-slogan {
                font-size: 15px;
                margin-bottom: 10px;
            }

            .eposta-alani {
                flex-direction: column;
            }

            .abone-dugme {
                width: 100%;
            }

            .sosyal-medya {
                justify-content: center;
            }

            .footer-kolon {
                border-bottom: 1px solid #e0e0e0;
                padding-bottom: 0px;
            }

            .footer-kolon h3 {
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
                user-select: none;
                margin-bottom: 10px;
            }

            .footer-kolon h3::after {
                content: '▼';
                font-size: 12px;
                transition: transform 0.3s;
            }

            .footer-kolon.acik h3::after {
                transform: rotate(180deg);
            }

            .footer-liste {
                display: none;
                margin-top: 15px;
            }

            .footer-kolon.acik .footer-liste {
                display: block;
            }

            .iletisim-bilgileri {
                display: none;
                margin-top: 15px;
            }

            .footer-kolon.acik .iletisim-bilgileri {
                display: block;
            }

            .footer-alt {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .odeme-yontemleri {
                flex-wrap: wrap;
                justify-content: center;
            }
			.sag-menu {
  display: flex;
  align-items: center;
  gap: 0px;
}
			
			
        }
		
		
.owl-controls {
  display: none !important;
}

/* Modern Ürün Kartı Stilleri */
.modern-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.modern-product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

/* Görsel Wrapper */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    aspect-ratio: 1/1;
}

.product-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* Ürün Resmi */
.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Video */
.product-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover durumunda video göster (sadece masaüstü) */
@media (min-width: 768px) {
    .product-image-wrapper:hover .product-image {
        opacity: 0;
    }
    
    .product-image-wrapper:hover .product-video {
        opacity: 1;
    }
}

/* Rozetler/Etiketler */
.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-freecargo {
    background: #10b981;
    color: #fff;
}

.badge-discount {
    background: #ef4444;
    color: #fff;
}

.badge-new {
    background: #3b82f6;
    color: #fff;
}

/* Sepete Ekle Butonu */
.add-to-cart-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 3;
}

.modern-product-card:hover .add-to-cart-wrapper {
    transform: translateY(0);
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #db2777 0%, #c026d3 100%);
    color: #fff;
    transform: scale(1.02);
    text-decoration: none;
}

.add-to-cart-btn i {
    font-size: 16px;
}

/* Favori Butonu */
.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.favorite-btn i {
    font-size: 18px;
    color: #666;
}

.favorite-btn:hover i {
    color: #ec4899;
}

/* Ürün Bilgileri */
.product-info {
    padding: 16px;
}

.product-title {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.product-title a {
    color: #1f2937;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #ec4899;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.product-price del {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 400;
    margin-left: 8px;
}

/* Mobil Uyumluluk */
@media (max-width: 767px) {
    /* Mobilde sepete ekle butonu her zaman görünsün */
    .add-to-cart-wrapper {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    }
    
    .add-to-cart-btn {
        background: rgba(236, 72, 153, 0.95);
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .product-badges {
        top: 8px;
        left: 8px;
    }
    
    .badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .favorite-btn {
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
    }
    
    .favorite-btn i {
        font-size: 16px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 13px;
    }
    
    .product-price {
        font-size: 16px;
    }
}

/* Grid Düzeni */
@media (min-width: 768px) and (max-width: 991px) {
    .col-md-6 {
        width: 50%;
        padding: 0 10px;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        width: 25%;
        padding: 0 10px;
    }
}

 /* Video Hover Efekti */
.imgLink {
    position: relative;
    display: block;
    overflow: hidden;
}

.ana-urun-resmi {
    width: 100%;
    display: block;
    transition: opacity 0.4s ease;
}

.urun-hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover'da video göster - Sadece PC */
@media (min-width: 992px) {
    .product-container:hover .ana-urun-resmi {
        opacity: 0;
    }
    
    .product-container:hover .urun-hover-video {
        opacity: 1;
    }
}


  .cilt-bakim-section {
            display: flex;
            align-items: center;
            /*! min-height: 100vh; */
            /*! padding: 20px; */
            /*! max-width: 1400px; */
            /*! margin: 0 auto; */
        }

        .icerik-taraf {
            flex: 1;
            padding-right: 60px;
        }

        .baslik {
            font-size: 52px;
            font-weight: 700;
            font-style: italic;
            line-height: 1.2;
            color: #000;
            margin-bottom: 30px;
        }

        .aciklama {
            font-size: 16px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 25px;
        }

        .hakkimizda-buton {
            display: inline-block;
            padding: 14px 40px;
            border: 2px solid #000;
            border-radius: 30px;
            background: transparent;
            color: #000;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .hakkimizda-buton:hover {
            background: #000;
            color: #fff;
        }

        .gorsel-taraf {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }

        .gorsel-taraf img {
            width: 100%;
            max-width: 650px;
            height: auto;
            object-fit: cover;
        }

        /* Tablet */
        @media (max-width: 1024px) {
            .baslik {
                font-size: 42px;
            }

            .icerik-taraf {
                padding-right: 40px;
            }

            .gorsel-taraf img {
                max-width: 500px;
            }
        }

        /* Mobil */
        @media (max-width: 768px) {
            .cilt-bakim-section {
                flex-direction: column;
                padding: 30px 20px;
                min-height: auto;
            }

            .icerik-taraf {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }

            .baslik {
                font-size: 36px;
                margin-bottom: 20px;
            }

            .aciklama {
                font-size: 15px;
                margin-bottom: 20px;
            }

            .hakkimizda-buton {
                padding: 12px 35px;
                font-size: 14px;
            }

            .gorsel-taraf {
                width: 100%;
                justify-content: center;
            }

            .gorsel-taraf img {
                max-width: 100%;
            }
        }

        /* Küçük Mobil */
        @media (max-width: 480px) {
            .baslik {
                font-size: 28px;
            }

            .aciklama {
                font-size: 14px;
            }

            .cilt-bakim-section {
                padding: 20px 15px;
            }
        }
		
		
        .kategori-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .kategori-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }

        .kategori-kart {
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .kategori-kart:hover {
            transform: translateY(-5px);
        }

        .kategori-gorsel {
            background: #e8e8e8;
            border-radius: 24px;
            padding: 40px 20px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 300px;
            transition: background 0.3s ease;
        }

        .kategori-kart:hover .kategori-gorsel {
            background: #dedede;
        }

        .kategori-gorsel img {
            max-width: 100%;
            max-height: 280px;
            height: auto;
            object-fit: contain;
        }

        .kategori-baslik {
            font-size: 22px;
            font-weight: 700;
            color: #ff0000;
            font-style: italic;
        }

        /* Tablet */
        @media (max-width: 1024px) {
            .kategori-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }

            .kategori-gorsel {
                min-height: 250px;
                padding: 30px 15px;
            }

            .kategori-baslik {
                font-size: 20px;
            }
        }

        /* Mobil Büyük */
        @media (max-width: 768px) {
            .kategori-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .kategori-gorsel {
                min-height: 200px;
                padding: 25px 10px;
                border-radius: 18px;
            }

            .kategori-gorsel img {
                max-height: 180px;
            }

            .kategori-baslik {
                font-size: 18px;
            }
        }

        /* Mobil Küçük */
        @media (max-width: 480px) {
            .kategori-container {
                padding: 0 15px;
            }

            .kategori-grid {
                gap: 12px;
            }

            .kategori-gorsel {
                min-height: 180px;
                padding: 20px 10px;
                border-radius: 16px;
            }

            .kategori-gorsel img {
                max-height: 160px;
            }

            .kategori-baslik {
                font-size: 16px;
            }
        }
		
		

        .instagram-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .instagram-baslik {
            text-align: center;
            font-size: 28px;
            margin-bottom: 40px;
            color: #262626;
        }

        .instagram-baslik span {
            color: #E1306C;
            font-weight: 700;
        }

        .swiper {
            width: 100%;
            padding: 20px 0;
        }

        .swiper-slide {
            width: auto;
        }

        .instagram-post {
            position: relative;
            width: 300px;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .instagram-post:hover {
            transform: scale(1.05);
        }

        .instagram-post img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .instagram-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .instagram-post:hover .instagram-overlay {
            opacity: 1;
        }

        .instagram-info {
            color: #fff;
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .instagram-info i {
            margin-right: 5px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: #E1306C;
            background: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
        }

        /* Mobil */
        @media (max-width: 768px) {
            .instagram-post {
                width: 250px;
                height: 250px;
            }

            .instagram-baslik {
                font-size: 22px;
            }
        }

        @media (max-width: 480px) {
            .instagram-post {
                width: 200px;
                height: 200px;
            }

.dil-wrapper {
display:none !important;
}

.logo {
  position: absolute;
  left: 54%;
  transform: translateX(-50%);
}
 .footer-kolon {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0px;
    margin-bottom: -20px;
  }
			
.product-list li .left-block img {
  /*! min-height: 100%; */	
}	
		   
	.product-list li .right-block {
     margin-top: 0px !important;	
     }
        }
