﻿:root {
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Quicksand', sans-serif;
}

h1, h2, h3, .product-title {
    font-family: var(--font-heading);
    font-weight: 600;
}

body, p, .product-description {
    font-family: var(--font-body);
    font-weight: 400;
}

.cl1 {
    padding-left: 7%;
    padding-right: 7%;
}


.kategori-container {
    margin-top: 10px;
}

/* Kategori kutuları */
.kategori-link1 {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    background: #f8f9fa;
    color: #212529;
    border-radius: 6px;
    padding: 8px 14px;
    text-decoration: none;
    border: 1px solid #dee2e6;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    flex: 0 1 auto;
}

    /* Hover efekti */
    .kategori-link1:hover {
        background-color: #e9f7ef;
        border-color: #198754;
        color: #198754 !important;
    }

    /* Seçili kategori */
    .kategori-link1.cl301_sec {
        background-color: #198754;
        color: #fff !important;
        border-color: #198754;
        font-weight: 600;
    }

/* Responsive davranış */
@media (max-width: 768px) {
    .kategori-link1 {
        flex: 1 1 45%; /* tablet görünümünde 2 sütun */
    }
}

@media (max-width: 576px) {
    
}


.urun-karti {
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
}

    .urun-karti:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .urun-karti img {
        object-fit: cover;
    }

.urun-baslik {
    font-size: 0.95rem;
    color: #000;
}

.urun-etiket {
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 8px;
    z-index: 10;
}

/* % İNDİRİM etiketi (sol tarafta) */
.cl_indirimli {
    background-color: #fff;
    color: #d00000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 2px;
    line-height: 1;
    box-shadow: 0 0 2px rgba(0,0,0,0.1);
}

/* TÜKENMEK ÜZERE etiketi (sağ tarafta) */
.cl_tukenmek, .cl_yeniUrun {
    background-color: #bfe1cb;
    color: #1c6635;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 2px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 0 2px rgba(0,0,0,0.1);
}

/* İkisi aynı hizada düzgün dursun */
.urun-etiket > div {
    display: inline-block;
}

.urun-fiyat {
    /*    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;*/
}

.urun-fiyat-eski {
    color: #000; /* siyah */
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 400;
}

.urun-fiyat-yeni {
    color: #c00; /* kırmızı */
    font-weight: 600;
}

.urun-fiyat-normal {
    color: #454545;
    font-weight: 600;
}


.text-decoration-line-through {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .urun-karti img {
        aspect-ratio: 1/1.25;
    }
}


.urun-gorsel-alani {
    position: relative;
    overflow: hidden;
}

/* "+" butonu */
.beden-btn {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #000;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
    z-index: 5;
}

    .beden-btn:hover {
        background: #198754;
        color: #fff;
        border-color: #198754;
    }

/* Beden listesi (varsayılan gizli) */
.beden-secim {
    position: absolute;
    bottom: 57px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: #ffffffde;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10;
    width: 100%;
    text-align: center;
    z-index: 100;
}

    /* Tüm beden etiketleri */
    .beden-secim span {
        display: inline-block;
        font-size: 0.9rem;
        font-weight: 500;
        color: #000;
        padding: 3px 5px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #fff;
        transition: all 0.2s ease;
        min-width: 30px;
        text-align: center;
        cursor: pointer;
    }

        /* Hover efekti */
        .beden-secim span:hover {
            background: #198754;
            color: #fff;
            border-color: #198754;
        }

        /* Stokta olmayan bedenler */
        .beden-secim span.stok-yok {
            opacity: 0.4;
            cursor: not-allowed;
        }

    /* Hover veya buton üzerinde göster */
    .urun-gorsel-alani:hover .beden-secim,
    .beden-btn:hover + .beden-secim,
    .beden-secim:hover {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        pointer-events: auto;
    }


/*Urun detay*/

/* =======================
   ANA GÖRSEL
======================= */
.urun-detay__main-image {
    max-height: 750px;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* =======================
   KÜÇÜK GÖRSELLER (THUMBS)
======================= */
/* Küçük görseller için varsayılan (masaüstü) yapı */
/* Masaüstü: dikey sütun (senin mevcut görünümün) */
.urun-detay__thumbs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
}

    .urun-detay__thumbs img {
        max-width: 95px;
        margin-bottom: 10px;
        border: 1px solid #ddd;
        cursor: pointer;
        transition: all .2s ease;
    }

        .urun-detay__thumbs img:hover {
            border-color: #198754;
            transform: scale(1.05);
        }

        .urun-detay__thumbs img.active {
            border-color: #198754;
            box-shadow: 0 0 6px rgba(25,135,84,.4);
        }

/* MOBİL: yan yana (grid) */
@media (max-width: 767.98px) {
    .urun-detay__thumbs {
 
    }

        .urun-detay__thumbs img {
            width: 100%; /* grid hücresini doldursun */
            max-width: 90px; /* çok büyümesin */
            margin-bottom: 0; /* grid gap yetiyor */
        }
}


/* =======================
   ÜRÜN BİLGİLERİ (SOL)
======================= */
.urun-detay__aciklama .card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

/* =======================
   SAĞ PANEL (FİYAT, BEDEN)
======================= */
.urun-detay__price p {
    margin: 0;
}

.urun-detay__price i {
    color: #999;
    text-decoration: line-through;
    margin-right: 6px;
    font-style: normal;
}

.urun-detay__price {
    color: #000000;
    font-weight: 700;
    font-size: 22px !important;
}

    .urun-detay__price b {
        color: #999;
        font-weight: 400;
        font-style: italic;
        margin-left: 4px;
        font-size: 14px;
    }

.urun-detay__color-thumb {
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s;
}

    .urun-detay__color-thumb:hover {
        border-color: #198754;
    }

.urun-detay__beden {
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
}

    .urun-detay__beden:hover {
        background: #198754;
        color: #fff;
        border-color: #198754;
    }

    .urun-detay__beden.stok-yok {
        opacity: .4;
        cursor: not-allowed;
        text-decoration: line-through;
    }

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 992px) {
 

    .urun-detay__thumbs {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

        .urun-detay__thumbs img {
            max-width: 85px;
        }

    .urun-detay__main-image {
        max-height: 400px;
    }
}

/* Genel buton görünümü */
.UrunVaryant1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 5px;
    border-radius: 50%;
    border: 1px solid #d9d9d9;
    background: #fff;
    font-size: 15px;
    color: #333;
    position: relative;
    cursor: pointer;
    transition: all 0.25s ease;
}

    /* Hover (stok var ise) */
    .UrunVaryant1:hover:not(.UrunVaryant1_stkyok):not(.UrunVaryant1_sec) {
        background: #ddd;
        border-color: #bbb;
    }

/* Seçili olan (siyah dolu) */
.UrunVaryant1_sec {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

/* Stok yok */
.UrunVaryant1_stkyok {
    background: #c9c9c987;
    color: #000000;
    opacity: 0.8;
    cursor: not-allowed;
}

    /* Stok yok — çapraz çizgi */
    .UrunVaryant1_stkyok::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0%;
        width: 100%;
        height: 2px;
        background: #595959e8;
        transform: rotate(-35deg);
    }

    /* Stok yok hover kapalı */
    .UrunVaryant1_stkyok:hover {
     /*   background: #f6f6f6;*/
    }



.UrunDetayRenkler {
}

    .UrunDetayRenkler p {
        font-size: 15px;
        text-align: center;
        color: #454545;
    }


    .UrunDetayRenkler a {
        text-decoration: none;
    }

.urun-detay__thumbs .owl-nav {
    display: none;
}


.urun-detay__aciklama .accordion-button::after {
    transform: scale(0.8);
}

.urun-detay__aciklama .accordion-button:focus {
    box-shadow: none;
}

.urun-detay__aciklama .accordion-button {
    background-color: transparent;
    color: #000;
    font-size: 0.95rem;
}


.urun-detay__sag .btn-outline-dark {
    border-color: #000;
    color: #000;
    font-size: 0.9rem;
}

    .urun-detay__sag .btn-outline-dark:hover {
        background-color: #000;
        color: #fff;
    }

.urun-detay__sag img {
    width: 70px;
    height: auto;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    .urun-detay__sag img:hover {
        opacity: 0.7;
    }

.urun-detay__sag strong {
    font-weight: 600;
}

.urun-detay__sag a.text-muted:hover {
    text-decoration: underline;
}


.urun-detay_border {
    border: 1px solid #454545 !important;
}

.urun-detay_border_bottom {
    border-bottom: 1px solid #454545 !important;
}


/* Sol ve sağ sütunları sabitle */
.urun-detay__aciklama,
.urun-detay__sag {
    position: -webkit-sticky;
    position: sticky;
    top: 100px; /* üstte sabitleneceği mesafe */
    align-self: flex-start;
}

    /* Görsel taşmalarını önlemek için */
    .urun-detay__aciklama .urun-detay_border,
    .urun-detay__sag.urun-detay_border {
        background-color: #fff;
     
    }

/* Mobilde sabitlik devre dışı */
@media (max-width: 991px) {
    .urun-detay__aciklama,
    .urun-detay__sag {
        position: static;
    }
}


footer a:hover {
    text-decoration: underline;
}

footer input::placeholder {
    color: #999;
    font-size: 0.85rem;
}

footer .form-control {
    border: none;
}

footer .btn-light {
    border: none;
    background-color: #f1f1f1;
}

    footer .btn-light:hover {
        background-color: #fff;
    }


footer i {
    width: 20px;
    display: inline-block;
    text-align: center;
}

footer strong {
    font-weight: 600;
}


#sosyalMedyaTakip {
    background-color: #fff;
}

    #sosyalMedyaTakip span {
        color: #000;
        letter-spacing: 0.5px;
    }

    #sosyalMedyaTakip a {
        transition: all 0.3s ease;
        color: #000;
    }

        #sosyalMedyaTakip a:hover {
            color: #0d6efd; /* Bootstrap ana mavi tonu */
            transform: scale(1.2);
        }

    #sosyalMedyaTakip i {
        vertical-align: middle;
    }

.urun-gorsel-alani_bg {
    position: relative;
    width: 100%;
    padding-top: 175%; /* Görsel oranı: 4:5 civarı */
    background-size: cover; /* Görseli orantılı sığdırır */
    background-position: center; /* Ortalar */
    background-repeat: no-repeat; /* Tekrarlamaz */
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    overflow: hidden;
    background-image: url('/Upload/hologram.jpg');
}

/* Link tüm alanı tıklanabilir yapar */
.urun-gorsel-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hover efektleri eskisiyle çakışmasın */
.urun-gorsel-alani_bg:hover .beden-secim {
    opacity: 1;
    /*    transform: translateY(0);*/
}


.AdresCLS {
}

.AdresCLS_sec, .ClsOdemeSekli_sec {
    background-color: #25bd280f;
}

    .AdresCLS a, .AdresCLS_sec a {
        z-index: 100;
    }



.fiyat-alani {
    margin-right: 15px;
}

.ClsOdemeSekli {
    align-items: center;
    justify-content: space-between;
}

    .ClsOdemeSekli .fiyat-alani {
        text-align: right;
        flex: 1;
    }

#searchBox{
    z-index:100;
}


/* Carousel kapsayıcısı */
#VitrinUrunleri {
    position: relative;
    padding: 10px 20px; /* güvenli boşluk */
}

    /* Ortalanmış, dışarı taşan oklar */
    #VitrinUrunleri .owl-nav {
        position: absolute;
        top: 40%;
        left: 0;
        width: 100%;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 10;
    }

        #VitrinUrunleri .owl-nav button {
            background: rgba(255,255,255,0.9) !important;
            color: #222 !important;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.25);
            pointer-events: all;
            transition: all 0.3s ease;
            font-size: 22px !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    /* Sol ve sağ okları biraz dışarı çıkaralım */
    #VitrinUrunleri .owl-prev {
        position: absolute;
        left: -25px; /* ← burada ok artık ürünün dışına taşar */
    }

    #VitrinUrunleri .owl-next {
        position: absolute;
        right: -25px;
    }

    /* Hover efekti */
    #VitrinUrunleri .owl-nav button:hover {
        background: #454545 !important;
        color: #fff !important;
        transform: scale(1.1);
    }

/* Mobil uyum */
@media (max-width: 768px) {
    #VitrinUrunleri .owl-prev {
        left: -10px;
    }

    #VitrinUrunleri .owl-next {
        right: -10px;
    }

    #VitrinUrunleri .owl-nav button {
        width: 38px;
        height: 38px;
        font-size: 18px !important;
    }
}


#YeniGelenlerBaslik {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-weight: 600;
    font-size: 21px;
    text-align: center;
    position: relative;
    margin: 30px 0;
}

    #YeniGelenlerBaslik::before,
    #YeniGelenlerBaslik::after {
        content: "";
        flex: 1;
        height: 1px;
        background-color: #ccc;
        margin: 0 15px;
    }

#yorumyazBTN {
    border-color: #000;
    color: #000;
    transition: all 0.3s ease;
}

    #yorumyazBTN:hover {
        background-color: #000;
        color: #fff !important;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

yorumlar-listesi .card {
    transition: all 0.2s ease;
}

.yorumlar-listesi .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* === Global Pagination Style === */
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.pagination {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

    .pagination li {
        display: inline-block;
    }

        .pagination li a {
            display: block;
            padding: 8px 14px;
            text-decoration: none;
            color: #222;
            background: #fff;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
        }

            .pagination li a:hover {
                background-color: #000;
                color: #fff;
                border-color: #000;
            }

        .pagination li.active a {
            background-color: #000;
            color: #fff;
            border-color: #000;
            pointer-events: none;
        }

    .pagination .PagedList-skipToPrevious a,
    .pagination .PagedList-skipToNext a {
        font-weight: bold;
        padding: 8px 16px;
    }

/* Küçük ekranlarda */
@media (max-width: 576px) {
    .pagination li a {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}


/* WhatsApp Butonu */
.whatsapp-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 24px rgba(0,0,0,.18), 0 6px 10px rgba(0,0,0,.12);
    z-index: 1050;
    transition: transform .2s ease;
    animation: wappPulse 1.6s infinite ease-in-out;
}

    .whatsapp-fab:hover {
        transform: translateY(-2px) scale(1.04);
    }

@keyframes wappPulse {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

/* Yukarı Çık Butonu */
.scroll-top-btn {
    position: fixed;
    right: 18px;
    bottom: 90px;
    width: 45px;
    height: 45px;
    border-radius: 3px;
    background: #454545;
    color: #fff;
    font-size: 27px;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
    transition: all .3s ease;
    z-index: 1049;
}

    .scroll-top-btn:hover {
        background: #0b5ed7;
        transform: translateY(-2px);
    }

@media(max-width:576px) {
    .whatsapp-fab {
        width: 64px;
        height: 64px;
        font-size: 30px;
    }

    .scroll-top-btn {
 
    }
}

.yazilimci {
    color: #fff;
    font-weight: 700;
    float: right;
    text-decoration: none;
    margin-top: 5px;
}

.lazyload {
    opacity: 0;
    transition: opacity .4s ease;
}

.lazyloaded {
    opacity: 1;
}