/* ================================================================
   RESPONSIVE.CSS — Aston Martin Store Turkey
   Referans: shop.astonmartinf1.com — birebir mobil tasarım
   ================================================================ */

:root {
    --mob-header-height: 56px;
    --mob-bottom-bar-height: 60px;
    --mob-accent: #cedc00;
    --mob-bg: #0a0a0a;
    --mob-border: rgba(255, 255, 255, 0.09);
}

/* ================================================================
   MOBİL MENÜ CONTAINER
   ================================================================ */
/*
 * mobilemenu: display:none yerine transform ile gizlenir.
 * display:none → display:flex geçişinde tarayıcı animasyon çalıştırmaz.
 * transform: translateX(-100%) = solda gizli, .active = sağa gelir.
 * pointer-events:none = kapalıyken tıklamayı engeller.
 */
.mobilemenu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--mob-bg);
    z-index: 2000;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

    /* Menü açık: soldan gelir, tıklanabilir */
    .mobilemenu.active {
        transform: translateX(0);
        pointer-events: auto;
    }

/* ================================================================
   MOBİL MENÜ İÇ YAPI
   ================================================================ */

/* Logo — tepede sabit, her panelin üstünde görünür */
.mob-menu-logo {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 20px 16px;
    border-bottom: 1px solid var(--mob-border);
}

    .mob-menu-logo a {
        display: flex;
    }

    .mob-menu-logo img {
        width: 100px;
        filter: brightness(0) invert(1);
    }

/* Paneller sarmalayıcısı — geri kalan yüksekliği kaplar, bottom-bar hesaba katılır */
.mob-panels-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
    /* bottom bar altında içerik kaybolmasın diye panel içi scroll margin */
}

.filter-mob-bar {
    display: none !important;
}

/* Mobil 300ms tap delay kaldır */
.filtermenu label,
.filtermenu input,
.filtermenu li,
.size-filter {
    touch-action: manipulation;
}

#mobPopularSection {
    margin-top: 25px
}
/* ================================================================
   MOB-PANEL — Tüm paneller
   Varsayılan: sol dışında gizli. .active → ekranda.
   ================================================================ */
.mob-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 100px; /* mob-bottom-bar yüksekliği — panel bu çizgide biter */
    background: var(--mob-bg);
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .mob-panel::-webkit-scrollbar {
        display: none;
    }

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

    /* Alt kategori panelleri: sağdan gelir */
    .mob-panel.mob-panel-sub {
        transform: translateX(100%);
    }

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

/* ================================================================
   ANA MENÜ PANELİ NAV
   ================================================================ */
.mob-nav {
    flex: 1;
}

.mob-nav-item {
    border-bottom: 1px solid var(--mob-border);
}

.mob-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    min-height: 58px;
    cursor: pointer;
}

.mob-nav-link {
    color: #fff;
    font-size: 16px;
    font-family: AstonMartinSans, sans-serif;
    letter-spacing: 0.4px;
    font-weight: 400;
    flex: 1;
    display: block;
    padding: 18px 0;
    text-decoration: none;
}

    .mob-nav-link.sale-link {
        color: var(--mob-accent);
    }

.mob-nav-arrow {
    color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
    pointer-events: none;
}

/* ================================================================
   ALT KATEGORİ PANELİ
   ================================================================ */
.mob-sub-header {
    display: flex;
    align-items: center;
    padding: 0 24px;
    min-height: 52px;
    border-bottom: 1px solid var(--mob-border);
    flex-shrink: 0;
}

.mob-back-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-family: AstonMartinSans, sans-serif;
    letter-spacing: 0.4px;
    padding: 12px 0;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}

    .mob-back-btn svg {
        color: rgba(255, 255, 255, 0.5);
        flex-shrink: 0;
    }

.mob-sub-items {
    flex: 1;
}

.mob-sub-link {
    display: block;
    color: #fff;
    font-size: 16px;
    font-family: AstonMartinSans, sans-serif;
    padding: 18px 24px;
    border-bottom: 1px solid var(--mob-border);
    text-decoration: none;
    letter-spacing: 0.3px;
}

    .mob-sub-link.mob-shop-all {
        border-bottom: none;
    }

/* ================================================================
   ARAMA PANELİ
   ================================================================ */
.mob-panel-content {
    padding: 0 24px;
    flex: 1;
}

.mob-panel-title {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    margin: 2px 0 10px;
    letter-spacing: 0.5px;
}

.mob-panel-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-family: AstonMartinSans, sans-serif;
}

.mob-search-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #00665e;
    height: 42px;
    padding: 0 14px;
    margin-bottom: 20px;
    gap: 10px;
    border-radius: 50px;
}



.mob-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    height: 100%;
}

    .mob-search-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

.mob-search-go {
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 1) !important;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
}

.mob-search-results {
    margin-bottom: 16px;
}

/* ================================================================
   HESAP / SEPET PANELİ CTA
   ================================================================ */
.mob-cta-btn {
    display: block;
    width: 100%;
    background: var(--mob-accent);
    color: #000;
    text-align: center;
    font-size: 14px;
    font-family: AstonMartinSans, sans-serif;
    letter-spacing: 1.5px;
    font-weight: 600;
    padding: 14px 20px;
    text-decoration: none;
    margin-bottom: 12px;
    cursor: pointer;
    border: none;
}

.mob-cta-link {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-family: AstonMartinSans, sans-serif;
    text-decoration: underline;
    padding: 8px 0;
}

.mob-cart-checkout {
    margin-top: 16px;
    background: #fff;
    padding: 15px;
}

    .mob-cart-checkout h1 {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .mob-cart-checkout ul {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

        .mob-cart-checkout ul > li {
            display: flex;
            justify-content: space-between;
        }

    .mob-cart-checkout a {
    }

    .mob-cart-checkout ul > li p {
        font-size: 13px;
    }

        .mob-cart-checkout ul > li p:first-child {
            font-weight: 600
        }


.mob-checkout-btn {
    margin-top: 12px;
}

/* ================================================================
   MOBİL ALT NAVİGASYON ÇUBUĞU
   ================================================================ */
.mob-bottom-bar {
    display: none;
    position: fixed;
    bottom: var(--altbosluk);
    left: 0;
    right: 0;
    height: var(--mob-bottom-bar-height);
    /* background: #000; */
    z-index: 2100;
    align-items: center;
    justify-content: space-around;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    width: 90%;
    margin: 0 auto;
    height: 68px;
}

.mob-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25%;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s;
    background: var(--mob-bg);
    border: 0 !important;
}

    .mob-bar-btn svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

.mob-bottom-bar > .mob-bar-btn:first-child {
    margin-right: 25px
}

/* Aktif icon → sarı */
.mob-bar-btn.active {
    color: var(--mob-accent);
}

/* Sepet badge */
.mob-bar-cart-count {
    position: absolute;
    top: 7px;
    right: 7px;
    background: var(--mob-accent);
    color: #000;
    font-size: 9px;
    font-weight: 700;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
}

/* Hamburger / Close ikonları — SVG bazlı, 24x24 */
.mob-icon-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: inherit;
}

.mob-icon-close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: inherit;
}

/* Menu açıkken: hamburger → X */
.mob-bottom-bar.menu-open #mob-btn-main .mob-icon-hamburger {
    display: none;
}

.mob-bottom-bar.menu-open #mob-btn-main .mob-icon-close {
    display: flex;
}

.mob-bottom-bar.menu-open #mob-btn-main {
    color: var(--mob-accent);
}

/* ================================================================
   MOBİL PANEL — Arama / Popular Products 2'li Grid
   .mob-panel içindeki .populerproduct → 2 kolonlu grid
   ================================================================ */
.mob-panel .populerproduct h2 {
    font-size: 10px;
    letter-spacing: 1;
    color: rgba(255,255,255,1);
    margin: 16px 0 10px;
}

.mob-panel .projelisthead {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

    .mob-panel .projelisthead a {
        color: #fff;
        font-size: 10px;
        letter-spacing: 1px;
        padding: 8px 11px;
        text-decoration: none;
        white-space: nowrap;
    }

.mob-panel .popproduct {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mob-panel .product-item {
    position: relative;
    overflow: hidden;
}

    .mob-panel .product-item a {
        display: block;
        text-decoration: none;
    }

    .mob-panel .product-item img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
    }

    .mob-panel .product-item .product-info,
    .mob-panel .product-item p,
    .mob-panel .product-item h3,
    .mob-panel .product-item .name {
        font-size: 12px;
        color: #fff;
        padding: 6px 8px;
        font-family: AstonMartinSans, sans-serif;
        line-height: 1.3;
    }

/* Eski overlay → devre dışı */
.mob-overlay, .mobile-menu-overlay {
    display: none !important;
}

/* Eski elementler → gizli */
.mobile-hamburger, .mobile-header-icons {
    display: none !important;
}

/* ================================================================
   BREAKPOINT: 1200px
   ================================================================ */
@media (max-width: 1200px) {

    .header .menu .ustbar {
        padding: 0 24px;
        gap: 20px;
    }

    .menu-items {
        gap: 20px;
    }

        .menu-items > a {
            font-size: 14px;
        }

    .header .menu .icon {
        gap: 20px;
    }

    .mega-menu-content {
        margin: 40px;
    }

    .menu-container > .menu-column ul > li a {
        font-size: clamp(18px, 2.4vw, 32px);
    }

    .fourdiv:not(.homeproducts) {
        margin: 20px 0;
        display: flex; /* flex-direction: column; */
    }

        .fourdiv:not(.homeproducts) > div {
            width: calc(50% - 0.5vw) !important;
            height: 35vw;
            margin-bottom: 1vw;
        }

            .fourdiv:not(.homeproducts) > div:nth-child(2n) {
                margin-right: 0;
            }

    .Collections.fourdiv > div {
        width: calc(50% - 0.5vw) !important;
        height: 35vw;
        margin-bottom: 1vw;
    }

    .productcard {
    }

    .carousel__slide .carousel_txt > div h2 {
        font-size: 3.8vw;
    }
}

/* ================================================================
   BREAKPOINT: 1024px — MOBİL MOD BAŞLAR
   ================================================================ */
@media (max-width: 1024px) {

    .product > div {
        gap: 6px;
        width: calc((100% / 1));
        min-height: fit-content;
    }

        .product > div > div {
            width: calc((100% / 2) - 8px);
            margin-right: 0;
            margin-bottom: 0;
            background: #fff;
            padding-bottom: 8px;
        }


    .pagedetail .projelist {
        padding: 0 0px;
        width: 95%;
        margin: 0 auto;
    }

    .pagedetail .head .toptxt {
        position: absolute;
        left: 30px;
        bottom: 30px;
        WIDTH: 90%;
    }

        .pagedetail .head .toptxt .description {
            font-size: 14px;
        }

    .promo-btn {
        font-size: 14px;
        padding: 7px 15px;
        width: 190px;
    }

    .projelist .ickatmenu > a {
        text-transform: uppercase;
        border: 1px solid #00665e;
        padding: 8px 13px;
        font-size: 12px;
        letter-spacing: 0;
    }

    .projelisthead .promo-btn.dark > span {
        font-size: 14px;
    }

    .product > div a, .product > div a div, .product > div a *, .product > div a div * {
        font-size: 12px;
        line-height: 16px;
    }

    .pagedetail, .pagedetail .head {
        margin-top: 0px;
    }

    .bottombar .itembar > div h1 {
        font-size: 14px;
    }

    .bottombar .itembar > div > ul > li > a {
        font-size: 14px;
    }

    /* Header: sadece logo */
    .header {
        position: absolute;
        top: 10px;
        left: 0;
        width: 100%;
        z-index: 1500;
        padding: 0 !important;
    }


    .fourdiv.homeproducts > div:first-child {
        min-width: 135px;
        width: 30%;
        max-width: 145px;
    }

    .texttop .txtcenter.txticmax {
        left: 20px;
    }


    .header > div:not(.mobilemenu):not(.mob-bottom-bar) {
        width: 100%;
        height: var(--mob-header-height);
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
    }

    .logo {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 130px;
        flex-shrink: 0;
    }

        .logo > a {
            display: block;
            width: 100%;
        }

        .logo img {
            filter: brightness(0) invert(1) !important;
            height: auto !important;
            width: 100% !important;
        }

    .header .menu {
        display: none !important;
    }

    .mega-menu {
        display: none !important;
    }

    /* Bottom bar göster — mobilemenu JS ile kontrol edilir (.active eklenince açılır) */
    .mob-bottom-bar {
        display: flex;
    }

    /* Body boşlukları */
    body {
        padding-top: 0 !important;
        padding-bottom: var(--mob-bottom-bar-height) !important;
    }

    /* Slider: header üzerine */
    .homepage .slader, .section.homepage {
        margin-top: calc(-1 * var(--mob-header-height));
    }

    /* Ürün gridi: 2 sütun */
    .fourdiv {
        /* flex-wrap: wrap !important; */
        margin: 3px 0 !important;
    }

        .fourdiv > div {
            width: calc(50% - 2px) !important;
            margin-right: 0 !important;
            margin-bottom: 4px !important;
        }

            .fourdiv > div:nth-child(odd) {
                margin-right: 4px !important;
            }

    .homeproducts.fourdiv > div {
        width: 100% !important;
        margin-bottom: 4px !important;
    }

        .homeproducts.fourdiv > div:nth-child(odd) {
            margin-right: 4px !important;
        }

    .Collections.fourdiv > div {
        width: calc(50% - 2px) !important;
        height: 44vw !important;
        margin-bottom: 4px !important;
    }

        .Collections.fourdiv > div:nth-child(odd) {
            margin-right: 4px !important;
        }

    /* Slider yükseklik */
    .slader, .section.homepage, .bottompagedetay {
        height: calc(100vh - var(--mob-header-height));
    }

    .carousel__slide .carousel_txt > div h2 {
        font-size: 5vw;
    }

    /* Product card */
    .productcard {
    }

    /* Detay sayfası */
    .product-detailbegin {
        flex-direction: column;
    }

        .product-detailbegin > .detailmain {
            width: 100% !important;
        }

    /* Liste sticky */
    .listmobile {
        position: sticky;
        top: var(--mob-header-height);
        z-index: 90;
        background: #fff;
    }

        .listmobile.fixed {
            top: var(--mob-header-height) !important;
        }

    /* İletişim */
    .ikilisatir {
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
    }

        .ikilisatir > div {
            width: 100%;
        }

        .ikilisatir .txt {
            display: flex;
            justify-content: center;
            flex-direction: column;
            padding: 25px 0;
            margin: 0 auto;
            text-align: center;
        }

    /* toTop */
    #toTop {
        bottom: calc(var(--mob-bottom-bar-height) + 16px);
        right: 14px;
    }
}

/* ================================================================
   BREAKPOINT: 768px
   ================================================================ */
@media (max-width: 768px) {

    /* ---- FİLTRE PANELİ: MOBİL BOTTOM SHEET ---- */

    .prodectlist > .filtermenu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 56px !important;
        width: 100% !important;
        height: calc(100% - 56px) !important;
        max-height: none !important;
        overflow-y: auto !important;
        overflow-x: hidden;
        background: #fff;
        z-index: 3000 !important;
        padding: 20px 20px 20px 20px;
        transform: translateY(110%) !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        scrollbar-width: none;
    }

        .prodectlist > .filtermenu::-webkit-scrollbar {
            display: none;
        }

    .prodectlist.active > .filtermenu {
        transform: translateY(0) !important;
    }

    /* Ürün listesi mobilde filter açılınca kaymasın */
    .prodectlist.active > .product {
        width: 100% !important;
    }

    /* Alt sabit bar */
    .filter-mob-bar {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 56px;
        z-index: 3100;
        flex-direction: row;
        align-items: stretch;
    }

    .prodectlist.active .filter-mob-bar {
        display: flex !important;
    }

    .filter-mob-close {
        width: 56px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
        border: none;
        cursor: pointer;
        color: #fff;
        padding: 0;
    }

    .filter-mob-apply {
        flex: 1;
        background: var(--mob-accent);
        border: none;
        cursor: pointer;
        color: #000;
        font-size: 13px;
        font-family: AstonMartinSans, sans-serif;
        letter-spacing: 1.5px;
        font-weight: 600;
        padding: 0 20px;
    }

    .homecoll h3 {
        font-size: 25px;
    }

    .slick-slide {
        height: 100%;
        width: 100% !important;
    }

    :root {
        --mob-header-height: 50px;
    }

    .header > div:not(.mobilemenu):not(.mob-bottom-bar) {
        padding: 0 16px;
    }

    .logo {
        width: 110px;
    }

    .slader, .section.homepage, .bottompagedetay {
    }

    .carousel__slide .carousel_txt {
        left: 16px;
        bottom: 135px;
        right: 50px;
    }

        .carousel__slide .carousel_txt > div h1 {
            font-size: 11px;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .carousel__slide .carousel_txt > div h2 {
            font-size: 9vw;
            line-height: 1.15;
            margin-bottom: 0px;
        }

        .carousel__slide .carousel_txt > div .promo-btn {
            font-size: 13px;
            padding: 10px 20px;
            background: var(--mob-accent);
            color: #000;
            display: inline-flex;
        }

    .fourdiv:not(.homeproducts) {
        margin: 20px 0;
        display: flex;
        flex-direction: column;
    }

    .fourdiv.homeproducts > div:first-child {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        max-height: 135px;
    }
    /* 2 sütun devam */
    .fourdiv > div {
    }

    .homeproducts.fourdiv > div {
        /* aspect-ratio: 1/1; */
        max-height: fit-content;
    }

    .Collections {
        max-height: fit-content;
    }

        .Collections.fourdiv > div {
            width: 100% !important;
            height: fit-content !important;
        }

    /* I/AM */
    .section.dark-bg, .homeuser {
        padding: 36px 20px;
    }

        .homeuser .promo-btn {
        }

    .section.dark-bg2.homecoll {
        padding: 22px 20px;
        text-align: center;
    }

    /* Materyal */
    .materyal > .head {
        padding: 28px 16px;
    }

    .materyal .head h1 {
        font-size: 7vw;
        line-height: 1.3;
    }

    .materyalslader {
        padding-bottom: 16px;
    }

    /* Liste */
    .pagedetail {
        width: 100%;
        margin: 0px auto;
    }

    /* Detay */
    .product-detailbegin {
        flex-direction: column;
        flex-flow: column-reverse;
        gap: 0;
    }

        .product-detailbegin > .detailmain {
            /* width: 100% !important; */
        }

    .detaygaleri.slick-slider {
        width: 100%;
        aspect-ratio: 1;
        height: auto;
    }

    .detaygaleri .slick-track {
        gap: 0;
    }

    .product-section .product-section-content .cate {
        gap: 10px;
    }


    .detaygaleri .slick-arrow {
        bottom: 14px;
        left: 14px;
        width: 32px;
        height: 32px;
    }

        .detaygaleri .slick-arrow.slick-next {
            left: 56px;
        }

    .info-txt {
        padding: 0;
    }

        .info-txt > div p {
            font-size: 20px;
            line-height: 1.35;
        }

    /* Product card — bottom bar üzerinde */
    .productcard {
        position: relative;
        width: 100% !important;
        transition: none !important;
        transform: none !important;
        margin: 0 auto;
        right: 0;
        border: 0;
        margin-top: 35px;
        bottom: 0;
        padding: 15px;
    }

        .productcard > h2 {
            font-size: 13px;
            margin-bottom: 3px;
        }

        .productcard > h1 {
            font-size: 20px;
            line-height: 1.2;
        }

        .productcard > p.price {
            font-size: 22px;
            margin: 8px 0;
        }

        .productcard .promo-btn {
            width: 100%;
        }

        .productcard .size {
            gap: 6px;
        }

        .productcard .option .option-list > div {
            width: 54px;
        }

    .detail-page #toTop {
        bottom: calc(var(--mob-bottom-bar-height) + 55vh + 8px);
        right: 12px;
    }

    .product-section {
        margin-top: 28px;
        padding: 0;
    }

        .product-section > h2 {
            font-size: 20px;
            margin-bottom: 14px;
        }

    .likeProducts {
        padding: 0 16px;
    }

        .likeProducts h1 {
            font-size: 20px;
            margin-bottom: 12px;
        }

    /* Sepet / Checkout */
    .cartlist {
        flex-direction: column;
        max-width: 95%;
    }

    .shippingdiv {
        flex-direction: column-reverse;
    }

        .shippingdiv > div:first-child, .shippingdiv > div,
        .ordersumary, .sepetliste:first-child, .cartlist > div {
            width: 100%;
            padding: 0;
            gap: 5px;
            display: flex;
            flex-direction: column;
        }

    .cargooptions {
        flex-direction: column;
    }

        .cargooptions > div {
            width: 100%;
            margin-bottom: 5px;
        }

    .useroptions > div:first-child {
        width: 100%;
    }

    .box-Checkout {
        padding: 12px 16px 16px;
    }

        .box-Checkout .item ul {
            width: 100%;
        }

        .box-Checkout .btn {
            width: 100%;
            font-size: 16px;
            padding: 11px 0;
        }

    /* Footer */
    .bottombar {
        padding: 28px 0 0;
    }

        .bottombar .itembar {
            flex-direction: column;
            width: 90%;
            margin: 0 auto;
        }

            .bottombar .itembar > div {
                width: 100%;
                margin-bottom: 20px;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

                .bottombar .itembar > div h1 {
                    font-size: 14px;
                    margin-bottom: 10px;
                }

                .bottombar .itembar > div > ul > li > a {
                    font-size: 13px;
                    letter-spacing: 1px;
                    margin: 7px 0;
                }

        .bottombar .bottom {
            flex-direction: column;
            margin-top: 18px;
            padding: 14px 16px;
        }

            .bottombar .bottom > div:last-child {
                width: 100% !important;
                margin-top: 14px;
            }

            .bottombar .bottom p {
                border-right: none;
                padding: 3px 0;
                font-size: 11px;
            }

    /* Çerez */
    .cookie-consent {
        width: 92%;
        left: 4%;
        bottom: calc(var(--mob-bottom-bar-height) + 12px);
    }

        .cookie-consent > div p {
            font-size: 11px;
            line-height: 16px;
        }

    /* toTop */
    #toTop {
        bottom: calc(var(--mob-bottom-bar-height) + 12px);
        right: 12px;
    }

    .beta {
        display: none !important;
    }

    .divalan {
        margin-top: 28px;
        margin-bottom: 28px;
    }

    .mtozel {
        margin-top: 28px;
    }

    /* İletişim */
    .contact-form {
        padding: 0;
        width: 90%;
        margin: 0 auto;
        margin-top: 40px;
    }

    #form-contact-us {
        margin-top: 24px;
    }

    .iletisim .altbar {
        flex-direction: column;
        height: auto;
        margin-top: 0;
    }

        .iletisim .altbar > div {
            width: 100% !important;
            margin-bottom: 18px;
        }

    .iletisim .uk-text-right {
        text-align: left;
        margin-bottom: 24px !important;
    }

    /* Haber */
    .prodetail.news .ustbar {
        flex-direction: column;
    }

        .prodetail.news .ustbar > div {
            width: 100% !important;
        }

    /* Checkout form */
    .shippingdiv form .twodiv, .shippingdiv form .fourdiv {
        flex-direction: column;
        gap: 10px;
    }

        .shippingdiv form .twodiv > div, .shippingdiv form .fourdiv > div {
            width: 100%;
            height: fit-content;
        }

    /* txticmax */
    .txticmax h1 {
        font-size: 22px !important;
        line-height: 1.2 !important;
    }

    .txticmax h3 {
        font-size: 12px !important;
        letter-spacing: 2px;
    }

    .populerproduct .product-item > a {
    }

    .populerproduct .product-item > a {
    }

        .populerproduct .product-item > a picture {
        }

            .populerproduct .product-item > a picture > img {
            }

        .populerproduct .product-item > a .price {
            padding: 0 8px;
            font-size: 14px;
            margin-top: 4px;
            line-height: 1.4;
            margin-bottom: 7px;
        }

        .populerproduct .product-item > a .product-name {
        }

        .populerproduct .product-item > a .product-name {
            padding: 0 8px;
            font-size: 12px;
            margin-top: 7px;
            line-height: 1.4;
        }

    .fourdiv:not(.homeproducts) > div {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    .pagedetail, .pagedetail .head {
    max-height: none !important;
    }

        .pagedetail .head .toptxt .description {
            display: none
        }

        .pagedetail .head .toptxt h1 {
            margin-top: 10px;
        }

        .pagedetail .head .toptxt {
            position: relative;
            left: auto;
            bottom: auto;
            WIDTH: 100%;
            background: #00665E;
            padding: 15px 20px;
        }

            .pagedetail .head .toptxt .link {
                display: none;
            }

            .pagedetail .head .toptxt h1 .title {
                color: #fff;
                font-size: 23px;
                line-height: 1.3;
            }

    .product-section .product-section-content .cate > a {
        font-size: 14px;
    }

    .product > div a, .product > div a div {
        padding: 0 15px;
    }

        .product > div a, .product > div a div:first-child {
            padding: 0 0px;
        }

    .likeProducts .product {
        gap: 6px;
        align-items: stretch;
    }

        .likeProducts .product > div {
            width: calc((100% / 2) - 3px);
            display: flex;
            flex-direction: column;
        }

            .likeProducts .product > div > div {
                width: 100%;
                display: flex;
                flex-direction: column;
                flex: 1;
            }

                .likeProducts .product > div > div > a {
                    display: flex;
                    flex-direction: column;
                    flex: 1;
                }

    .projelist > .projelisthead {
        padding: 15px 0;
    }

    .sepetliste .productli > li h1 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .sepetliste .productli > li p {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .signshiping > p, .signshiping > p a {
        font-size: 14px
    }

    .adresinput form {
        margin-top: 25px;
    }

    #form-contact-us1 {
        gap: 10px;
        display: flex;
        flex-direction: column;
        margin-bottom: 0 !important;
    }

        #form-contact-us1 > div {
            margin-bottom: 0 !important
        }

    .login {
        padding: 25px
    }

    .twodiv > div {
        width: 48%;
    }
}

/* ================================================================
   BREAKPOINT: 480px
   ================================================================ */
@media (max-width: 480px) {

    .logo {
        width: 100px;
    }

    .slader, .section.homepage {
    }

    .carousel__slide .carousel_txt > div h2 {
        font-size: 10vw;
    }

    .carousel__slide .carousel_txt > div h1 {
        font-size: 11px;
    }

    .fourdiv > div {
    }

    .homeproducts.fourdiv > div {
    }

    .Collections.fourdiv > div {
        height: fit-content !important;
    }

    .productcard {
    }

        .productcard > h1 {
            font-size: 18px;
        }

        .productcard > p.price {
            font-size: 20px;
        }

    input, textarea, select {
    }

    .bottombar .itembar > div > ul > li > a {
        font-size: 12px;
    }

    .promo-btn {
        font-size: 13px;
        padding: 9px 14px;
    }

    .info-txt > div p {
        font-size: 17px;
    }
}

/* ================================================================
   DESKTOP: Mobil elemanları gizle
   ================================================================ */
@media (min-width: 1025px) {
    .mob-bottom-bar {
        display: none !important;
    }

    .mobilemenu,
    .mobilemenu.active {
        display: none !important;
        pointer-events: none !important;
    }

    body {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .homepage .slader {
        margin-top: 0;
    }

    .menu-container > .menu-column ul > li a {
        font-size: clamp(20px, 2.2vw, 38px);
    }
}

/* ================================================================
   SCROLL ANCHOR
   ================================================================ */
html {
    scroll-padding-top: var(--mob-header-height);
}
