/* ===================================================
   Global Font
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Albert+Sans:wght@300;400;500;600;700&family=Kumbh+Sans:wght@300;400;500;600;700&family=Jost:wght@300;400;500;600;700&display=swap');

body,
.footer-luxury,
.nav-bar-wrap,
.main-menu nav > ul > li > a,
.page-wrapper-light-green .main-menu nav > ul > li > a,
.search-bar input,
.theme-button,
.btn,
h1, h2, h3, h4, h5, h6,
p, a, span, li, td, th, input, button, select, textarea {
    font-family: "Open Sans", sans-serif !important;
}

/* ===================================================
   Top Bar
   =================================================== */
.top-bar {
    background: #272727;
    color: #e9e3d6;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1100;
    user-select: none;
}

.top-bar-inner {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.top-bar-track {
    overflow: hidden;
    width: 480px;
    max-width: 70vw;
}

.top-bar-slides {
    position: relative;
    height: 36px;
}

.top-bar-slide {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #e9e3d6;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    white-space: nowrap;
}

.top-bar-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.top-bar-arrow {
    background: none;
    border: none;
    color: #e9e3d6;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0 10px;
    opacity: 0.7;
    transition: opacity 0.2s;
    height: 36px;
    display: flex;
    align-items: center;
}

.top-bar-arrow:hover {
    opacity: 1;
}

@media (max-width: 767px) {
    .top-bar-track {
        width: 70vw;
        max-width: 70vw;
    }

    .top-bar-slide {
        font-size: 11px;
        white-space: normal;
        text-align: center;
        padding: 0 4px;
    }
}

/* ===================================================
   Header Layout
   =================================================== */

/* Tüm header arka planları beyaz — normal ve sticky */
.header-area,
.header-sticky,
.navigation-top,
.navigation-menu-area,
.header-sticky .navigation-menu-area {
    background: #fff !important;
}

.header-area,
.header-sticky {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Sticky moda geçince viewport'u tam kapla */
.header-sticky.is-sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #fff !important;
    z-index: 999 !important;
    box-sizing: border-box !important;
}

.header-area.is-sticky .navigation-menu-area,
.header-area.is-sticky .navigation-menu-area:hover,
.page-wrapper-light-green .header-area.is-sticky .navigation-menu-area,
.page-wrapper-light-green .header-area.is-sticky .navigation-menu-area:hover {
    background: #fff !important;
}

/* ══════════════════════════════════════════
   Ribbon-style 2-satır header (Bodrum)
   ══════════════════════════════════════════ */

/* wrapper: wrap açık, hepsini alt alta koy */
.nav-bar-wrap {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    width: 100% !important;
    min-height: auto !important;
    padding: 0 !important;
}

/* Satır 1: Logo tam ortada (ikonlar absolute sağda, hizayı bozmaz) */
.nav-bar-logo-wrap {
    flex: 0 0 100% !important;
    order: 1 !important;
    padding: 16px 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;   /* logo ekranın tam ortasında */
    align-items: center !important;
    text-align: center !important;
}

.nav-bar-icons-wrap {
    flex: 0 0 auto !important;
    order: 2 !important;
    position: absolute !important;
    /* container static olduğu için tam-genişlik atasına yaslanıyor;
       container kenarıyla hizalı kalsın diye calc ile sağ boşluk */
    right: 10px !important;
    /* logo satırına dikeyde ortala (logo satırı ~76px, ortası 38px) */
    top: 30px !important;
    transform: translateY(-50%) !important;
}

/* Logo boyutu */
.nav-bar-logo-wrap img {
    max-height: 60px !important;
    width: auto !important;
}

/* Satır 2: Menü tam genişlik */
.nav-bar-menu-wrap {
    flex: 0 0 100% !important;
    width: 100% !important;
    order: 3 !important;
    border-top: 1px solid #e8e8e8 !important;
    min-width: 0;
}

/* navigation-menu-area relative — dropdown'ın tam-genişlik kapsayıcı bloğu.
   .container static olmalı ki dropdown ona değil, tam genişlikteki
   .navigation-menu-area'ya yaslanıp ekranı doldursun. */
.navigation-menu-area {
    position: relative !important;
}
.navigation-menu-area .container {
    position: static !important;
}

/* Menü nav blok */
.nav-bar-menu-wrap .main-menu {
    display: block !important;
    float: none !important;
    width: 100% !important;
}

/* Menü öğeleri: tam genişlik + eşit boşluk */
.nav-bar-menu-wrap .main-menu nav > ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

/* Menü link — Ribbon tarzı (antrasit + gold) */
.page-wrapper-light-green .main-menu nav > ul > li > a,
.main-menu nav > ul > li > a {
    position: relative !important;
    color: #1a1a1a !important;
    font-family: "Kumbh Sans", sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1.7px !important;
    text-transform: none !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    padding: 20px 18px !important;
    display: flex !important;
    align-items: center !important;
    background: transparent !important;
    transition: color 0.2s ease !important;
}

/* Gold alt çizgi — soldan sağa açılır */
.main-menu nav > ul > li > a::after {
    content: "" !important;
    position: absolute !important;
    left: 18px !important;
    right: 18px !important;
    bottom: 12px !important;
    height: 1.5px !important;
    background: #C2A45D !important;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s ease !important;
}

/* Hover & aktif: gold yazı */
.page-wrapper-light-green .main-menu nav > ul > li:hover > a,
.page-wrapper-light-green .main-menu nav > ul > li.active > a,
.main-menu nav > ul > li:hover > a,
.main-menu nav > ul > li.active > a {
    background: transparent !important;
    color: #C2A45D !important;
}

/* Hover & aktif: çizgi açılır */
.main-menu nav > ul > li:hover > a::after,
.main-menu nav > ul > li.active > a::after {
    transform: scaleX(1);
}

/* İkon grubu */
.header-icons-right {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
}

.header-icons-right .div-item {
    margin: 0 !important;
    padding: 0 9px;
}

/* İkon boyutları eşit, yazılar gizli */
.nav-bar-icons-wrap .div-item a {
    font-size: 0 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease !important;
}

.nav-bar-icons-wrap .div-item a:hover {
    opacity: 0.6 !important;
}

.nav-bar-icons-wrap .div-item a img {
    width: 22px !important;
    height: 22px !important;
    object-fit: contain;
    display: block !important;
}

.nav-bar-icons-wrap .div-item a span:not(.cart-counter) {
    display: none !important;
}

.nav-bar-icons-wrap .div-item a br {
    display: none !important;
}

/* Navigation top — sadece mobile menu wrapper kalıyor */
.navigation-top .navigation-top-search-area {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* ===================================================
   Search Overlay
   =================================================== */

.srch-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 130px;
    visibility: hidden;
    pointer-events: none;
}

.srch-overlay--open {
    visibility: visible;
    pointer-events: all;
}

.srch-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.srch-overlay--open .srch-overlay-backdrop {
    opacity: 1;
}

.srch-overlay-box {
    position: relative;
    width: 100%;
    max-width: 620px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.srch-overlay--open .srch-overlay-box {
    opacity: 1;
    transform: translateY(0);
}

.srch-overlay-form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(255,255,255,0.85);
    padding-bottom: 10px;
}

.srch-overlay-input {
    flex: 1;
    background: none !important;
    border: none !important;
    outline: none !important;
    font-size: 22px;
    font-family: "Open Sans", sans-serif;
    color: #fff;
    padding: 8px 0;
    width: 100%;
    border-radius: 0 !important;
}

.srch-overlay-input::placeholder {
    color: rgba(255,255,255,0.55);
}

.srch-overlay-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    padding: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.srch-overlay-btn svg {
    width: 24px;
    height: 24px;
}

.srch-overlay-close {
    position: absolute;
    top: -50px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.srch-overlay-close:hover {
    opacity: 1;
}

@media (max-width: 767px) {
    .srch-overlay {
        padding-top: 80px;
    }

    .srch-overlay-input {
        font-size: 18px;
    }
}

/* ===================================================
   Mobil Header
   =================================================== */
@media (max-width: 991px) {

    /* header-sticky her zaman görünür */
    .header-sticky {
        display: block !important;
        width: 100% !important;
        background: #fff !important;
    }

    .header-area {
        position: relative;
    }

    /* Eski üst bar (hamburger artık nav-bar-wrap içinde) */
    .navigation-top {
        display: none !important;
    }

    /* ── Tek satır: hamburger - logo - ikonlar ── */
    .nav-bar-wrap {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 !important;
        min-height: auto !important;
        gap: 8px !important;
    }

    .nav-bar-ham-wrap {
        order: 1;
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
    }

    .nav-bar-logo-wrap {
        order: 2;
        width: auto !important;
        flex: 1 1 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
        padding-right: 50px !important;
        margin-top: 20px !important;
        min-height: auto !important;
    }

    .nav-bar-logo-wrap img {
        max-height: 34px !important;
    }

    /* Kategoriler gizle */
    .nav-bar-menu-wrap {
        display: none !important;
    }

    .nav-bar-icons-wrap {
        order: 3;
        display: flex !important;
        width: auto !important;
        flex: 0 0 auto !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding: 0 !important;
        min-height: auto !important;
    }

    .nav-bar-icons-wrap .div-item,
    .nav-bar-icons-wrap .header-button-list .div-item {
        display: flex !important;
        align-items: center !important;
        padding: 0 4px !important;
    }

    .nav-bar-icons-wrap .div-item a img {
        width: 20px !important;
        height: 20px !important;
        filter: none !important;
        opacity: 1 !important;
    }

    /* Arka plan beyaz, ikonlar üzerinde renk baskısı yok */
    .navigation-menu-area,
    .header-sticky .navigation-menu-area {
        background: #fff !important;
    }

    .nav-bar-icons-wrap a,
    .nav-bar-icons-wrap a img {
        color: #363232 !important;
        filter: none !important;
    }

    /* Hamburger butonu */
    .mob-ham-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px 8px 6px 0;
    }

    .mob-ham-btn span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: #222;
    }

    /* Sipariş takibi dropdown mobilde kapalı */
    /*.header-cart-icon .small-cart {
        display: none !important;
    }*/
}

/* ===================================================
   Mobile Side Drawer
   =================================================== */

.mob-side-drawer {
    display: none;
}

@media (max-width: 991px) {
    .mob-side-drawer {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 99999;
        pointer-events: none;
    }

    .mob-side-drawer.is-open {
        pointer-events: all;
    }

    .mob-side-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.45);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mob-side-drawer.is-open .mob-side-overlay {
        opacity: 1;
    }

    .mob-side-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 82%;
        max-width: 310px;
        height: 100%;
        background: #fff;
        transform: translateX(-100%);
        transition: transform 0.32s ease;
        overflow-y: auto;
        padding-top: 16px;
    }

    .mob-side-drawer.is-open .mob-side-panel {
        transform: translateX(0);
    }

    /* ── Panel kapsayıcı ── */
    .mob-panels-inner {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .mob-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        background: #fff;
        transition: transform 0.3s ease;
        -webkit-overflow-scrolling: touch;
    }

    #mobPanelMain {
        transform: translateX(0);
    }
    #mobPanelMain.mob-panel-slid {
        transform: translateX(-100%);
    }

    .mob-sub-panel {
        transform: translateX(100%);
    }
    .mob-sub-panel.mob-panel-active {
        transform: translateX(0);
    }

    /* ── Geri Dön ── */
    .mob-panel-back {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
        width: 100%;
        padding: 14px 20px;
        background: none;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        font-size: 13px;
        font-weight: 500;
        color: #444;
        cursor: pointer;
        font-family: "Open Sans", sans-serif;
    }
    .mob-panel-back:hover { color: #661a60; }

    /* ── Alt panel başlığı ── */
    .mob-panel-title {
        margin: 0;
        padding: 18px 20px 12px;
        font-size: 15px;
        font-weight: 700;
        color: #1a1a1a;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        border-bottom: 2px solid #f0f0f0;
        font-family: "Open Sans", sans-serif;
    }

    /* ── Link listesi ── */
    .mob-side-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    /* Normal li > a */
    .mob-side-links > li > a {
        display: block;
        padding: 15px 20px;
        font-size: 13px;
        font-weight: 600;
        color: #1a1a1a;
        text-decoration: none;
        font-family: "Open Sans", sans-serif;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        border-bottom: 1px solid #f0f0f0;
        transition: color 0.2s;
    }
    .mob-side-links > li > a:hover { color: #661a60; }

    /* Hem link hem ok butonu olan satır */
    .mob-link-row {
        display: flex;
        align-items: stretch;
        border-bottom: 1px solid #f0f0f0;
    }
    .mob-link-row > a {
        flex: 1;
        padding: 15px 20px;
        font-size: 13px;
        font-weight: 600;
        color: #1a1a1a;
        text-decoration: none;
        font-family: "Open Sans", sans-serif;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        transition: color 0.2s;
        border-bottom: none !important;
    }
    .mob-link-row > a:hover { color: #661a60; }

    .mob-sub-trigger {
        padding: 0 18px;
        background: none;
        border: none;
        border-left: 1px solid #f0f0f0;
        cursor: pointer;
        color: #888;
        font-size: 16px;
        transition: color 0.2s;
    }
    .mob-sub-trigger:hover { color: #661a60; }

    /* Divider */
    .mob-side-divider {
        height: 8px;
        background: #f5f5f5;
    }
    .mob-side-divider ~ li > a {
        text-transform: none;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 0;
    }

    /* Alt panel link stili — normal yazı */
    .mob-sub-links > li > a {
        text-transform: none !important;
        font-weight: 500 !important;
        font-size: 14px !important;
        letter-spacing: 0 !important;
        color: #333 !important;
    }

    /* ── Sticky (scroll): sadece logo görünsün ── */
    .header-area.is-sticky .nav-bar-icons-wrap,
    .header-sticky.is-sticky .nav-bar-icons-wrap {
        display: none !important;
    }

    .header-area.is-sticky .navigation-top,
    .header-sticky.is-sticky ~ .navigation-top {
        display: none !important;
    }

    .header-area.is-sticky .nav-bar-logo-wrap {
        border-bottom: none !important;
    }
}

/* ===================================================
   Luxury Footer
   =================================================== */

.footer-luxury {
    background-color: #fff;
    color: #1a1a1a;
    font-family: 'Kumbh Sans', sans-serif;
}

/* Altın çizgi ayraç */
.flx-gold-line {
    height: 1px;
    background: linear-gradient(to right, transparent, #C2A45D 30%, #C2A45D 70%, transparent);
    margin: 0;
}

/* ── Üst şerit ── */
.flx-top {
    padding: 48px 0 36px;
}

.flx-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.flx-logo {
    max-height: 52px;
    width: auto;
}

.flx-slogan {
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C2A45D;
    margin: 0;
    text-align: center;
    flex: 1;
}

.flx-social {
    display: flex;
    gap: 12px;
}

.flx-social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201,169,110,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C2A45D;
    font-size: 17px;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
    text-decoration: none;
}

.flx-social-link:hover {
    background: #C2A45D;
    border-color: #C2A45D;
    color: #111;
}

/* ── Ana kolonlar ── */
.flx-main {
    padding: 52px 0 44px;
}

.flx-cols {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.flx-col {
    flex: 1 1 160px;
}

.flx-col-contact {
    flex: 1.6 1 220px;
}

.flx-col-title {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C2A45D;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,169,110,0.2);
}

.flx-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flx-links li {
    margin-bottom: 10px;
}

.flx-links a {
    color: #444;
    font-size: 13.5px;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.flx-links a:hover {
    color: #C2A45D;
    padding-left: 5px;
}

/* İletişim listesi */
.flx-contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 13px;
}

.flx-contact-icon {
    color: #C2A45D;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.flx-contact-list a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
    padding-left: 0 !important;
}

.flx-contact-list a:hover {
    color: #C2A45D;
}

.flx-whatsapp .flx-contact-icon {
    color: #4caf50;
}

.flx-whatsapp a:hover {
    color: #4caf50 !important;
}

/* ── Alt bar ── */
.flx-bottom {
    padding: 20px 0;
}

.flx-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.flx-copy {
    font-size: 12px;
    color: rgba(0,0,0,0.4);
    margin: 0;
    letter-spacing: 0.5px;
}

.flx-payment img {
    max-height: 28px;
    opacity: 0.7;
}

.flx-powered img {
    max-height: 22px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.flx-powered:hover img {
    opacity: 0.85;
}

/* Mobil */
@media (max-width: 767px) {
    .flx-top-inner {
        flex-direction: column;
        text-align: center;
    }

    .flx-slogan {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .flx-cols {
        gap: 36px;
    }

    .flx-col,
    .flx-col-contact {
        flex: 0 0 calc(50% - 18px);
    }

    .flx-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .flx-col,
    .flx-col-contact {
        flex: 0 0 100%;
    }
}

/* ===================================================
   SEO İçerik Alanı — Devamını Oku
   =================================================== */

.seo-icerik-wrap {
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    position: relative;
}

.seo-icerik-wrap.expanded {
    max-height: 9999px;
}

.seo-icerik-fade {
    height: 60px;
    margin-top: -60px;
    background: linear-gradient(to bottom, transparent, #f8f8f8);
    position: relative;
    pointer-events: none;
    transition: opacity 0.3s;
}

.seo-icerik-fade.hidden {
    opacity: 0;
}

.seo-icerik-toggle {
    text-align: center;
    margin-top: 8px;
}

.seo-icerik-toggle button {
    background: none;
    border: 1px solid #333;
    color: #333;
    padding: 6px 20px;
    /*border-radius: 4px;*/
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.seo-icerik-toggle button:hover {
    background: #333;
    color: #fff;
}

/* ===================================================
   Ürün Kartı — Minimal Tasarım
   =================================================== */

/* İndirim kuşak badge kaldır */
.ribbon2, .ribbon-top-right { display: none !important; }

/* Görsel alan — 3:4 dikey oran */
.single-slider-product__image {
    position: relative !important;
    overflow: hidden;
    height: 0 !important;
    padding-bottom: 133.33% !important; /* 4/3 yükseklik = dikey */
}

.single-slider-product__image > a {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.single-slider-product__image > a img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
}

/* Hover galeri görselini temiz göster — opacity yok */
.single-slider-product:hover .single-slider-product__image > a img:nth-child(2) {
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
}

/* Favori ikonu — sağ üst, hover'da görünür */
.a-favori {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    z-index: 5;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    color: #555 !important;
    opacity: 0;
    transition: opacity 0.2s;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.single-slider-product:hover .a-favori {
    opacity: 1;
}

.a-favori .fa-heart { color: #cc3d5a !important; }

/* Sepete ekle overlay — varsayılan gizli */
.urun-list-btn-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 10;
    pointer-events: none;
}

.single-slider-product:hover .urun-list-btn-wrap {
    opacity: 1;
}

.single-slider-product:hover .urun-list-btn-wrap .urun-list-btn,
.single-slider-product:hover .urun-list-btn-wrap a.urun-list-btn {
    pointer-events: all;
}

.urun-list-btn-wrap .urun-list-btn,
.urun-list-btn-wrap a.urun-list-btn {
    position: relative;
    z-index: 11;
    cursor: pointer;
    background: rgba(255,255,255,0.93) !important;
    color: #1a1a1a !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 2px;
    padding: 11px 28px !important;
    text-decoration: none !important;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    border-radius: 0 !important;
    display: inline-block !important;
}

.urun-list-btn-wrap .urun-list-btn:hover {
    background: #1a1a1a !important;
    color: #fff !important;
}

/* Wrap dışındaki urun-list-btn (bunları da sevmiştin, vb.) — sipariş ver stili */
p .urun-list-btn {
    background: #333 !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 10px 32px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: background 0.2s !important;
}

p .urun-list-btn:hover {
    background: #6b5769 !important;
    color: #fff !important;
}

/* Ürün adı */
a.product-title {
    overflow: hidden !important;
    display: block !important;
    height: 24px !important;
    line-height: 24px !important;
    color: #363232 !important;
    font-size: 19px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 6px !important;
    text-align: center !important;
}

/* Fiyat — sade */
.single-slider-product__content .product-price {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

/* Fiyat satırı — karta ortalı */
.single-slider-product__content .product-price {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
}

/* li'ler içeriğe göre daralsın (style.css'teki width:50% + float'ı ez)
   böylece indirimsiz + indirimli fiyat yan yana, grup olarak ortalanır */
.single-slider-product__content .product-price li {
    width: auto !important;
    float: none !important;
}

/* İndirimsiz (orijinal) fiyat — solda, gri, üstü çizili */
.single-slider-product__content .price.discounted-price {
    display: flex;
    align-items: baseline !important;
    gap: 4px !important;
    order: 1;
    color: #aaa !important;
    white-space: nowrap;
}

.single-slider-product__content .price.discounted-price span,
.single-slider-product__content .price.discounted-price small {
    color: #aaa !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    text-decoration: line-through !important;
}

/* İndirimli (asıl) fiyat — sağda */
.single-slider-product__content .price.text-success {
    display: flex !important;
    align-items: baseline !important;
    gap: 4px !important;
    order: 2;
    margin-bottom: 4px;
}

/* Ana rakam — büyük */
.single-slider-product__content .price.text-success > span:first-child {
    color: #363232 !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
}

/* ",00 TL" */
.single-slider-product__content .price.text-success > span:last-child {
    display: flex !important;
    align-items: flex-end !important;
    padding-bottom: 2px;
}

.single-slider-product__content .price.text-success > span:last-child small {
    color: #363232 !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
}

/* KDV yazısını gizle */
.single-slider-product__content .product-price .price span small:last-child {
    display: none !important;
}

/* Teslimat bilgisi gizle */
.p-ayni-gun-kargo { display: none !important; }

/* İçerik padding + ortalı (başlık ve fiyat karta ortalı) */
.single-slider-product__content {
    padding: 10px 2px 4px !important;
    text-align: center !important;
}

/* Fiyat li'lerindeki Bootstrap pl-1/pr-1 padding'ini sıfırla — fiyat başlıkla aynı hizada */
.single-slider-product__content .product-price li {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ===================================================
   Keskin Tasarım — Border Radius Sıfırla
   =================================================== */

/* Ürün kartları */
.urun-item .single-slider-product,
.single-slider-product__image,
.single-slider-product__image > a {
    border-radius: 0 !important;
}

/* Tüm butonlar */
.theme-button,
.btn,
.btn-light,
.btn-success,
.btn-warning,
.btn-primary,
.btn-sepet-ekle,
.btn-ileri,
input[type="submit"],
input[type="button"],
button.btn {
    border-radius: 0 !important;
}

/* Arama kutusu */
.search-bar input,
.search-bar button,
.page-wrapper-light-green .search-bar input {
    border-radius: 0 !important;
}

/* Lokasyon sağ — badge bar */
.loca-badges {
    display: flex !important;
    align-items: center;
    /*justify-content: flex-end;*/
    gap: 0;
    height: 100%;
}

.loca-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    white-space: nowrap;
}

.loca-badge-item svg {
    flex-shrink: 0;
    opacity: 0.85;
}

.loca-badge-item span {
    font-size: 13px;
    font-weight: 500;
    color: #363232;
    letter-spacing: 0.01em;
}

.loca-badge-sep {
    width: 1px;
    height: 28px;
    background: #e0e0e0;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .loca-badges {
        justify-content: center;
        margin-top: 12px;
    }
    .loca-badge-item {
        padding: 0 10px;
    }
    .loca-badge-item span {
        font-size: 11px;
    }
}

/* Gönderim Bölgesi */
#districk-btn,
.location-right,
.district-dd,
.district-dd .district-menu-cont-inner,
ul.destination li .btn,
.loca-pill-wrap {
    border-radius: 0 !important;
}

/* Mega menu dropdown köşeleri */
.mega-sidebar-right a {
    border-radius: 20px !important;
}

/* ===================================================
   Slider — Tam Genişlik & Daha Yüksek
   =================================================== */

/* Slider wrapper margin/padding sıfırla */
.hero-slider-area {
    margin-top: 0 !important;   /* banner menüye sıfır */
    margin-bottom: 30px !important;
    padding: 0 !important;
}

.hero-slider-area .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.hero-slider-area .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.hero-slider-area .col-lg-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* ===================================================
   İkili Editorial Bölüm (blok77)
   =================================================== */
.blok77 {
    padding: 40px 0 60px;
}

.blok77alt {
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
}

.blok77alt:nth-child(even) {
    flex-direction: row-reverse;
}

.solresimCK,
.sagresimCK {
    flex: 0 0 50%;
    overflow: hidden;
}

.solresimCK img,
.sagresimCK img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 340px;
    transition: transform 0.4s ease;
}

.solresimCK:hover img,
.sagresimCK:hover img {
    transform: scale(1.03);
}

.blok77altP {
    flex: 0 0 50%;
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafaf8;
}

.blok77alt:nth-child(even) .blok77altP {
    background: #fff;
}

.blok77altP h2 {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-bottom: 10px !important;
    margin-top: 20px !important;
    letter-spacing: -0.01em;
}

.blok77altP h2:first-child {
    margin-top: 0 !important;
}

.blok77altP p {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.75 !important;
    margin-bottom: 12px !important;
}

.blok77altP p a {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 28px;
    border: 1px solid #1a1a1a;
    color: #1a1a1a !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
}

.blok77altP p a:hover {
    background: #1a1a1a;
    color: #fff !important;
}

@media (max-width: 767px) {
    .blok77alt,
    .blok77alt:nth-child(even) {
        flex-direction: column;
    }

    .solresimCK,
    .sagresimCK {
        flex: none;
        width: 100%;
    }

    .solresimCK img,
    .sagresimCK img {
        min-height: 240px;
    }

    .blok77altP {
        flex: none;
        width: 100%;
        padding: 28px 20px;
    }
}

/* ===================================================
   Sabit Ara Widget
   =================================================== */
.ara-widget {
    position: fixed;
    right: 24px;
    bottom: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.ara-widget-kart {
    background: #846d82;
    color: #fff;
    padding: 16px 18px;
    text-align: center;
    min-width: 140px;
}

.ara-widget-ikon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    color: #e9e3d6;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.85;
}

.ara-widget-sehir {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 700;
    color: #e9e3d6;
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 5px;
}

.ara-widget-alt {
    font-size: 11px;
    color: rgba(233,227,214,0.7);
    letter-spacing: 0.03em;
}

.ara-widget-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #e9e3d6;
    color: #846d82 !important;
    text-decoration: none !important;
    padding: 12px 16px;
    min-width: 140px;
    width: 100%;
    transition: background 0.2s, color 0.2s;
}

.ara-widget-btn:hover {
    background: #ddd5c4;
    color: #6b5769 !important;
}

.ara-widget-btn svg {
    flex-shrink: 0;
    color: #846d82;
}

.ara-widget-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
    font-size: 11px;
    color: #846d82;
}

.ara-widget-btn span b {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #846d82;
}

/* Mobil tekli ara butonunu gizle */
a.mobile-phone {
    display: none !important;
}

/* Eski scroll-top gizle */
a.scroll-top {
    display: none !important;
}

/* Yeni scroll progress butonu */
.scroll-prog {
    position: fixed;
    right: 24px;
    bottom: 195px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-prog-svg {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.scroll-prog-bg {
    fill: #fff;
    stroke: #e0e0e0;
    stroke-width: 1.5;
}

.scroll-prog-bar {
    fill: none;
    stroke: #C2A45D;
    stroke-width: 2;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

.scroll-prog-arrow {
    position: relative;
    z-index: 1;
    margin-top: -1px;
}

@media (max-width: 767px) {
    .ara-widget {
        right: 12px;
        bottom: 25px;
    }

    .scroll-prog {
        right: 12px;
        bottom: 195px;
    }
}

/* ===================================================
   4lü Özellik Alanı
   =================================================== */
.dort-ozellik {
    padding: 56px 0;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    background: #fff;
}

.dort-ozellik-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.dort-ozellik-item {
    padding: 0 36px;
    border-right: 1px solid #efefef;
}

.dort-ozellik-item:first-child {
    padding-left: 0;
}

.dort-ozellik-item:last-child {
    border-right: none;
    padding-right: 0;
}

.dort-ozellik-ikon {
    margin-bottom: 16px;
}

.dort-ozellik-item h3 {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
}

.dort-ozellik-item p {
    font-size: 13px !important;
    color: #888 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

@media (max-width: 767px) {
    .dort-ozellik-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0;
    }

    .dort-ozellik-item {
        padding: 0 20px;
    }

    .dort-ozellik-item:nth-child(2) {
        border-right: none;
    }

    .dort-ozellik-item:nth-child(3) {
        padding-left: 0;
        border-right: 1px solid #efefef;
    }

    .dort-ozellik-item:last-child {
        padding-right: 20px;
    }
}

/* Slider yüksekliği artır */
.hero-slider-item-wrapper {
    /*height: 640px !important;*/
    overflow: hidden;
}

/* Slider görseli tam doldursun */
.hero-slider-item-wrapper a {
    display: block;
    height: 100%;
}

.hero-slider-item-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    max-width: none !important;
}

/* Sepete ekle butonu konumlandırması için */
.single-slider-product__image {
    position: relative;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-slider-item-wrapper {
        height: 420px !important;
    }
}

/* Mobil */
/*@media (max-width: 767px) {
    .hero-slider-item-wrapper {
        height: 260px !important;
    }
}*/

/* ===================================================
   Tanıtım Bölümü
   =================================================== */

.tanitim-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.tanitim-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.tanitim-gorsel {
    flex: 0 0 41.66%;
    max-width: 41.66%;
}

.tanitim-gorsel img {
    width: 100%;
    height: 325px;
    object-fit: cover;
/*    border-radius: 12px;
*/    display: block;
}

.tanitim-icerik {
    flex: 0 0 58.33%;
    max-width: 58.33%;
}

.tanitim-baslik {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.tanitim-aciklama {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
}

.tanitim-buton {
    display: inline-block;
    padding: 12px 32px;
    background-color: #333;
    color: #fff;
    
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.tanitim-buton:hover {
    background-color: #661a60;
    color: #fff;
}

@media (max-width: 991px) {
    .tanitim-row {
        flex-direction: column;
        gap: 24px;
    }

    .tanitim-gorsel,
    .tanitim-icerik {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tanitim-gorsel img {
        height: 260px;
    }

    .tanitim-baslik {
        font-size: 24px;
    }
}

/* ===================================================
   Mega Menu Sidebar
   =================================================== */

.mega-menu.mega-menu-sidebar {
    padding: 0;
    display: block !important;
}

.mega-sidebar-wrap {
    display: flex !important;
    width: 100%;
    padding: 24px 32px;
    box-sizing: border-box;
    align-items: flex-start;
    list-style: none;
}

/* Sol: kategori listesi */
.mega-sidebar-left {
    flex: 1;
    padding-right: 40px;
}

.mega-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-sidebar-links > li {
    border-bottom: 1px solid #f0f0f0;
}

.mega-sidebar-links > li > a {
    display: block;
    padding: 10px 4px;
    font-size: 14px;
    color: #3b454d;
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.15s;
}

.mega-sidebar-links > li > a:hover {
    color: #008539;
    padding-left: 10px;
}

/* İlk link (Tümünü Gör) daha belirgin */
.mega-sidebar-links > li:first-child > a {
    font-weight: 700;
    font-size: 15px;
    color: #111;
}

.mega-sidebar-links > li:first-child > a:hover {
    color: #008539;
}

/* Sağ: iki görsel */
.mega-sidebar-right {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    align-items: flex-start;
    width: 330px;
}

.mega-sidebar-right a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
}

.mega-sidebar-right a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.mega-sidebar-right a:hover img {
    transform: scale(1.05);
}

/* ===================================================
   Ribbon-Style Mega Menu (mega-menu-ribbon)
   =================================================== */
/* Tüm ara containing block'ları static yap */
.nav-bar-menu-wrap,
.nav-bar-menu-wrap .main-menu,
.nav-bar-menu-wrap .main-menu nav,
.nav-bar-menu-wrap .main-menu nav > ul,
.nav-bar-menu-wrap .main-menu nav > ul > li {
    position: static !important;
}

/* Containing block: navigation-menu-area (tam genişlik) */
.header-sticky .navigation-menu-area {
    position: relative !important;
}

/* Tam viewport genişliğinde dropdown (full-bleed).
   Containing block .container (~1200px) olsa bile 100vw ile
   viewport'un tamamına taşar. */
.mega-menu.mega-menu-ribbon {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;             /* tam-genişlik .navigation-menu-area'ya yaslı */
    right: 0 !important;
    width: auto !important;
    margin-left: 0 !important;
    transform: none !important;
    background: #fff !important;
    border-top: 2px solid #1a1a1a;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 32px 40px 28px;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    display: flex !important;
}

.menu-item-has-children:hover > .mega-menu.mega-menu-ribbon {
    visibility: visible;
    opacity: 1;
}

/* İç içerik: sayfa container'ı ile aynı max-width, ortalanmış.
   Kolonlar ribbon.png'deki gibi sola hizalı ve doğal genişlikte. */
.mega-ribbon-wrap {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: flex-start;
}

.mega-ribbon-col {
    flex: 0 0 auto;
    min-width: 180px;
    padding: 0;
    border-right: none;
    text-align: left !important;   /* ribbon gibi sola yaslı, center değil */
}

.mega-ribbon-col-title,
.mega-ribbon-links,
.mega-ribbon-links li,
.mega-ribbon-links li a {
    text-align: left !important;
    font-family: "Albert Sans", sans-serif !important;
}

.mega-ribbon-col-title {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: #222 !important;
    margin-bottom: 16px !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    display: block !important;
    line-height: 1 !important;
}

.mega-ribbon-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mega-ribbon-links li {
    border: none !important;
    float: none !important;      /* tema float'ını ez — linkler alt alta */
    display: block !important;
    width: 100% !important;
}

.mega-ribbon-links li a {
    display: block !important;
    padding: 7px 0 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #8a8a8a !important;
    text-decoration: none !important;
    line-height: 1.3 !important;
    transition: color 0.15s, padding-left 0.15s !important;
    white-space: nowrap;
}

.mega-ribbon-links li a:hover {
    color: #C2A45D !important;
    padding-left: 6px !important;
}

.mega-ribbon-links li:first-child a {
    color: #1a1a1a !important;
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
    text-decoration-thickness: 1px !important;
}

@media (max-width: 991px) {
    .mega-menu.mega-menu-ribbon {
        display: none !important;
    }
}

/* ===================================================
   Stories — Amavi tarzı yuvarlak kategori görselleri
   =================================================== */

.stories-slider .single-category-item {
    text-align: center;
    padding: 0 8px;   /* daire slide'a sığsın; boşluk slide genişliğinden gelir */
}

/* Story başlığı (etiket) her yerde ortalı — anasayfa + diğer sayfalar */
.stories-slider .single-category-item .title,
.stories-slider .single-category-item span.title {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

/* Story şeridi tam genişlik (full-bleed) — sayfayı doldursun, 8 daire yayılsın.
   Sabit slide genişliği YOK; slick 8'i tam viewport'a böler. */
.stories-slider {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-top: 30px !important;   /* mb-30 gibi üstte de 30px */
    box-sizing: border-box;
    padding: 0 30px;
}

.stories-slider .single-category-item__image a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    text-align: center !important;
    text-decoration: none !important;
}

/* Görsel = daire — TAM responsive: slide'a göre ölçeklenir, max 140px.
   Sabit genişlik YOK; böylece 8 daire taşmadan sığar. */
.stories-slider .single-category-item__image a img {
    width: 100% !important;
    max-width: 140px !important;
    height: auto !important;
    min-width: 0 !important;
    aspect-ratio: 1 / 1;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 auto !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stories-slider .single-category-item__image a:hover img {
    transform: translateY(-3px);
    /*box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);*/
}

/* Etiket = dairenin altında, ortalı */
.stories-slider .single-category-item__image a .title {
    display: block;
    width: 100%;
    margin-top: 12px;
    text-align: center !important;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
    white-space: normal;
}

@media (max-width: 767px) {
    .hero-slider-area.mb-40 {
        margin-bottom: 15px !important;
    }

    .stories-outer-wrap {
        margin-bottom: 8px !important;
    }

    .stories-slider {
        padding: 0 10px;
        margin-top: 10px !important;
    }

    .stories-slider.mb-30 {
        margin-bottom: 10px !important;
    }

    .stories-slider .single-category-item {
        padding: 0 8px;
    }

    .stories-slider .single-category-item__image a img {
        max-width: 100px !important;
    }

    .stories-slider .single-category-item__image a .title {
        font-size: 12px;
        margin-top: 8px;
    }
}

/* ===================================================
   Ürün Vitrini — referans tarzı (gri zemin, başlık, 5'li)
   =================================================== */

.urun-vitrin-bolum {
    background: #f5f5f5;
    padding: 50px 0 40px;
    margin-bottom: 40px;
}

.urun-vitrin-baslik {
    text-align: center;
    margin-bottom: 32px;
}

.urun-vitrin-baslik h2 {
    font-size: 26px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    font-family: "Kumbh Sans", sans-serif;
}

.urun-vitrin-alt {
    font-size: 15px;
    color: #888;
    margin: 0;
}

/* Beyaz kartlar gri zeminde belirgin olsun */
.urun-vitrin-bolum .single-slider-product {
    background: #fff;
}

.urun-vitrin-bolum .urun-item {
    margin-bottom: 24px;
}

/* Büyük ekranda satırda 5 ürün */
@media (min-width: 992px) {
    .urun-vitrin-bolum .urun-item {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
}

/* Ürün kartları — referans tarzı: yuvarlak köşe, çerçevesiz */
.urun-vitrin-bolum .urun-item .single-slider-product {
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #fff !important;
}

/* Tüm kart border/gölge/outline'larını kaldır (gri + siyah dahil) */
.single-slider-product,
.single-slider-product__content,
.single-slider-product__image,
.single-slider-product__image > a,
.single-slider-product__image img,
.single-slider-product__image a img,
.single-slider-product img {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Vitrin: "Sepete Ekle" butonunu gizle */
.urun-vitrin-bolum .urun-list-btn-wrap {
    display: none !important;
}

/* Anasayfa vitrini — ürün görseli amavi tarzı portre (840x1008 ≈ %120) ve TAM DOLU.
   object-fit:cover ile üstte beyaz boşluk kalmaz; resim kutuyu doldurur. */
.urun-vitrin-bolum .single-slider-product__image {
    height: 0 !important;
    padding-bottom: 120% !important;
    overflow: hidden !important;
    position: relative !important;
}

.urun-vitrin-bolum .single-slider-product__image > a,
.urun-vitrin-bolum .single-slider-product__image > a img {
    position: absolute !important;
    padding-top:22px;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    margin: 0 !important;
}

/* Ürün detay başlığı — 42px kalın, Jost */
.product-details-title {
    font-family: "Jost", sans-serif !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
}

@media (max-width: 767px) {
    .product-details-title {
        font-size: 30px !important;
        line-height: 1.2 !important;
    }
}

/* Ürün detay — büyük görsel yuvarlak köşe (slider kabı dahil) */
.big-image-slider-wrapper,
.big-image-slider99,
.big-image-slider99 .slick-list,
.big-image-slider-single-item,
.big-image-slider-single-item img,
.big-image-slider99 img {
    border-radius: 12px !important;
}

.big-image-slider99 .slick-list,
.big-image-slider-single-item {
    overflow: hidden !important;
}

/* Ürün detay thumbnails — alt yatay sıra: kare, yuvarlak, aralarında boşluk */
/* Her zaman sola yaslı, sabit küçük boyut (ekrana yayılmasın) */
.small-image-slider-wrapper {
    text-align: left !important;
}

.small-image-slider .slick-list {
    margin: 0 !important;
}

.small-image-slider .slick-track {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.small-image-slider .slick-slide {
    width: 96px !important;
    padding: 0 5px !important;
}

.small-image-slider .slick-slide img,
.small-image-slider-single-item img,
.small-image-slider .big-image-slider-single-item img {
    border-radius: 10px !important;
    width: 100% !important;
    aspect-ratio: 1 / 1;
    object-fit: cover !important;
    display: block !important;
    cursor: pointer;
}
