*{
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    scroll-behavior: smooth;
}

html, body{ height: 100%; min-height: 100%;}

body{
    font-family: 'Open Sans', sans-serif;;
    /* overflow-x: hidden; */
}


:root{
    --main-color : #e6193c;
    --main-sub : #e6193c;
    --main-shadow: #9c5a5a7a;
    --white-color: #fff;
    --black-color: #000;
}


.d-none{ display: none;}

/* NOTIFICATION */
#notice-container{ position: fixed; right: 20px; top: 60px; z-index: 30; display: flex; flex-direction: column; gap: 7px;}
#notice-container > div{ opacity: 0; transform: translateY(-100px); transition: all .5s ease; position: relative; overflow: hidden; max-width: 300px; display: flex; align-items: center; gap: 10px; padding: 10px 10px 15px; border-radius: 3px 3px;}
#notice-container > div.go{ transition: all .7s ease; transform: translateX(100%) !important; opacity: 0 !important;}
#notice-container > div.active{ opacity: 1; transform: translateY(0);}
#notice-container > div p{ font-size: 12px; font-weight: 600;}
#notice-container > div span{ cursor: pointer; font-size: 20px; height: 20px; width: 20px; background-color: /*#21b621*/ transparent; border-radius: 50%; /*padding-left: 3.8px;*/ text-align: end; line-height: 1.1;}
#notice-container > div .timer{ position: absolute; left: 0; bottom: 0; width: 100%; height: 5px; transition: all 3s linear;}
#notice-container > div.time .timer{ width: 0px;}

#notice-container > div.success{ background-color: #7ce456; color: #002000;}
#notice-container > div.success span{ color: #0f3700;}
#notice-container > div.success .timer{ background-color: #185b00;}
#notice-container > div.warning{ background-color: #dfe456; color: #1d2000;}
#notice-container > div.warning span{ color: #373500;}
#notice-container > div.warning .timer{ background-color: #757100;}
#notice-container > div.danger{ background-color: #e45656; color: #200000;}
#notice-container > div.danger span{ color: #370000;}
#notice-container > div.danger .timer{ background-color: #6a0000;}


/* NAVBAR */
.navbar{ border-bottom: 1px solid #ddd;}
.navbar .navbar-container{}
.navbar .navbar-container .navbar-top{ background-color: #f0f0f0;}
.navbar .navbar-container .navbar-top > div{ width: 100%; max-width: 1200px; padding: 0 10px; margin: 0 auto; display: flex; justify-content: space-between;}
.navbar .navbar-container .navbar-top > div > div a{ font-size: 12px; display: inline-block; padding: 7px 7px; color: var(--black-txt); text-decoration: none;}
.navbar .navbar-container .navbar-top > div > div a:hover{ text-decoration: underline;}
.navbar .navbar-container .navbar-top > div > div a.active{ background-color: var(--white-bg); font-weight: 600;}

.navbar .navbar-container .navbar-detail{ width: 100%; max-width: 1200px; margin: 0 auto; padding: 13px 10px; display: flex; justify-content: space-between; align-items: center;}
.navbar .navbar-container .navbar-detail .navbar-logo{ display: flex; align-items: center;}
.navbar .navbar-container .navbar-detail .navbar-logo img{ height: 40px}
.navbar .navbar-container .navbar-detail .navbar-logo i { margin-right: 10px; cursor: pointer; font-size: 28px; display: none;}
.navbar .navbar-container .navbar-detail .navbar-search{ position: relative; border: 2px solid black; display: flex; width: 475px; height: 40px; border-radius: 6px; line-height: 2.2;}
.navbar .navbar-container .navbar-detail .navbar-search .search-icon{ height: 36.5; width: 40px; text-align: center; color: #afafaf;}
.navbar .navbar-container .navbar-detail .navbar-search input{ border: none; background-color: var(--white-bg); width: 100%;}
.navbar .navbar-container .navbar-detail .navbar-search input:focus-visible{ outline: none;}
.navbar .navbar-container .navbar-detail .navbar-search .search-btn{ width: 55px; height: 36.5px; border-left: 1px solid black; border-radius: 0 4px 4px 0; text-align: center; line-height: 2.2; background-color: var(--black-txt); color: var(--white-txt); font-weight: 700; transition: all .2s; transform: translateX(1px);}
.navbar .navbar-container .navbar-detail .navbar-search .search-btn:hover{ background-color: var(--white-bg); color: var(--black-txt); cursor: pointer;}

.navbar .navbar-container .navbar-detail .navbar-search > div{ position: absolute; top: calc(100% + 2px); z-index: 5; background-color: var(--white-bg); width: 100%; height: auto; max-height: 0px; opacity: 0; transition: all .2s; overflow: hidden; border-radius: 4px; box-shadow: 0 0 0 0 rgb(0 0 0 / 10%), 10px 20px 20px 0 rgb(0 0 0 / 10%), -10px 20px 20px 0 rgb(0 0 0 / 10%) !important; overflow-y: auto;}
.navbar .navbar-container .navbar-detail .navbar-search > div.open{ opacity: 1; max-height: 75vh;}
.navbar .navbar-container .navbar-detail .navbar-search > div::-webkit-scrollbar{ width: 8px; border-radius: 0 0 4px 0; background-color: #f1f1f1;}
.navbar .navbar-container .navbar-detail .navbar-search > div::-webkit-scrollbar-thumb{ border-radius: 0 0 4px 0; background-color: #aaa;}
.navbar .navbar-container .navbar-detail .navbar-search > div h4{ padding: 20px 20px 5px; font-size: 12px; color: #313131; display: flex; align-items: center; justify-content: space-between;}
.navbar .navbar-container .navbar-detail .navbar-search > div h4 span{ color: #aaa; font-size: 13px; font-weight: 400; transition: all .2s;}
.navbar .navbar-container .navbar-detail .navbar-search > div h4 span:hover{ cursor: pointer; text-decoration: underline; color: #660000; text-decoration-color: #660000;}

#search-suggestions{ display: none;}
#related-products{ display: none;}

.navbar .navbar-container .navbar-detail .navbar-search > div .search-suggestions{ padding-top: 10px;}
.navbar .navbar-container .navbar-detail .navbar-search > div .search-suggestions > a{ position: relative; display: flex; justify-content: space-between; width: 100%; padding: 5px 20px; font-size: 13px; text-decoration: none; color: #181818;}
.navbar .navbar-container .navbar-detail .navbar-search > div .search-suggestions > a:hover{ background-color: #f1f1f1;}
.navbar .navbar-container .navbar-detail .navbar-search > div .search-suggestions > a::after{ color: #aaa; font-size: 11px;}
.navbar .navbar-container .navbar-detail .navbar-search > div .search-suggestions > a.brand::after{ content: 'Marka';}
.navbar .navbar-container .navbar-detail .navbar-search > div .search-suggestions > a.category::after{ content: 'Kategori';}
.navbar .navbar-container .navbar-detail .navbar-search > div .search-suggestions > a.campaign::after{ content: 'Kampanya';}

.navbar .navbar-container .navbar-detail .navbar-search > div .pop-searchs > div{ display: flex; gap: 10px; padding: 0 20px;}
.navbar .navbar-container .navbar-detail .navbar-search > div .pop-searchs > div a{ display: inline-block; color: #3d3d3d; border: 1px solid #adadad; font-size: 11px; padding: 0 7px; height: 23px; display: flex; align-items: center; justify-content: center; border-radius: 10px; text-decoration: none; transition: all .2s;}
.navbar .navbar-container .navbar-detail .navbar-search > div .pop-searchs > div a:hover{ color: var(--white-txt); background-color: var(--black-txt); border-color: var(--black-txt);}

.navbar .navbar-container .navbar-detail .navbar-search > div .past-searchs > div { display: flex; flex-direction: column;}
.navbar .navbar-container .navbar-detail .navbar-search > div .past-searchs > div a{ width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 5px 20px; transition: all .2s; text-decoration: none;}
.navbar .navbar-container .navbar-detail .navbar-search > div .past-searchs > div a:hover > span{ opacity: 1;}
.navbar .navbar-container .navbar-detail .navbar-search > div .past-searchs > div a > div{ display: flex; gap: 7px; align-items: center;}
.navbar .navbar-container .navbar-detail .navbar-search > div .past-searchs > div a > div span { color: var(--black-txt); font-size: 13px;}
.navbar .navbar-container .navbar-detail .navbar-search > div .past-searchs > div a > div i { color: #d6d6d6;}
.navbar .navbar-container .navbar-detail .navbar-search > div .past-searchs > div a > span{ width: 18px; height: 18px; border-radius: 50%; color: var(--white-txt); font-weight: 700; background-color: #d6d6d6; text-align: center; line-height: 1.2; transition: all .2s; opacity: 0;}
.navbar .navbar-container .navbar-detail .navbar-search > div .past-searchs > div a > span:hover{ background-color: #000000;}
.navbar .navbar-container .navbar-detail .navbar-search > div .past-searchs > div a:hover{ background-color: #f1f1f1;}

.navbar .navbar-container .navbar-detail .navbar-search > div .search-products { border-top: 1px solid #eee;}
.navbar .navbar-container .navbar-detail .navbar-search > div .search-products > div > a{ display: flex; justify-content: space-between; align-items: center; gap: 15px; padding: 10px 20px; transition: all .2s; text-decoration: none;}
.navbar .navbar-container .navbar-detail .navbar-search > div .search-products > div > a:hover{ background-color: #f1f1f1;}
.navbar .navbar-container .navbar-detail .navbar-search > div .search-products > div > a .product-img{ width: 50px; height: 68px; min-width: 50px; min-height: 68px; display: flex; align-items: center; justify-content: center; overflow: hidden;}
.navbar .navbar-container .navbar-detail .navbar-search > div .search-products > div > a .product-img img{ width: 100%;}
.navbar .navbar-container .navbar-detail .navbar-search > div .search-products > div > a > span{ font-size: 13px; height: 24px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; color: #181818;}
.navbar .navbar-container .navbar-detail .navbar-search > div .search-products > div > a .prices{ display: flex; flex-direction: column; justify-content: end; align-items: flex-end; min-width: 82px; max-width: 150px; gap: -10px;}
.navbar .navbar-container .navbar-detail .navbar-search > div .search-products > div > a .prices span{ font-size: 12px; color: #616161; text-decoration: line-through;}
.navbar .navbar-container .navbar-detail .navbar-search > div .search-products > div > a .prices b{ font-size: 14px; color: var(--black-txt); margin-top: -10px;}

.navbar .navbar-container .navbar-detail .navbar-search > div > button{ display: none; width: 100%; height: 30px; position: sticky; bottom: 0; border: none; background-color: var(--main-blue-txt); color: var(--white-color);}

.navbar .navbar-container .navbar-detail .navbar-buttons{ display: flex; gap: 30px;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div{ position: relative;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div a{ position: relative; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 3px; text-decoration: none; color: var(--black-txt);}
.navbar .navbar-container .navbar-detail .navbar-buttons > div a i{ font-size: 20px;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div a span{ font-size: 12px;}

.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-account > div{ z-index: 10; height: 0; pointer-events: none; opacity: 0; overflow: hidden; transition: all .3s; position: absolute; width: 200px; border-radius: 5px; background-color: var(--white-bg); box-shadow: 0 2px 5px 1px #ccc; top: 100%; left: 50%; transform: translateX(-50%);}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-account > div.open{ height: 147px; opacity: 1; pointer-events: all;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-account > div .header{ display: grid; grid-template-columns: 1fr 1fr; padding: 10px 0; background-color: #f1f1f1; border-bottom: 1px solid #d3d3d3;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-account > div .header a{ font-size: 12px; font-weight: 700; transition: all .2s;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-account > div .header a:hover{ cursor: pointer; color: var(--main-blue-txt);}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-account > div > a{ display: flex; gap: 10px; justify-content: flex-start; flex-direction: row; width: 100%; padding: 10px 0 10px 30px; transition: all .2s ease-out; border-bottom: 1px solid #d3d3d3;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-account > div > a:last-child{ border-bottom: none;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-account > div > a:hover{ background-color: #f1f1f1; color: var(--main-blue-txt);}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-account > div > a i{ font-size: 12px;}

.navbar .navbar-container .navbar-detail .navbar-buttons > div.mobile-account{ display: none;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.mobile-account > div{ z-index: 10; height: 0; pointer-events: none; opacity: 0; width: 144px; overflow: hidden; transition: all .3s; position: absolute; border-radius: 5px; background-color: var(--white-bg); box-shadow: 0 2px 5px 1px #ccc; top: 32px; left: -52px; transform: translateX(-50%);}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.mobile-account > div.open{ height: 120px; opacity: 1; pointer-events: all;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.mobile-account > div > a{ display: flex; gap: 10px; justify-content: flex-start; flex-direction: row; width: 100%; padding: 10px 0 10px 10px; transition: all .2s ease-out; font-size: 14px; font-weight: 600; border-bottom: 1px solid #d3d3d3;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.mobile-account > div > a:last-child{ border-bottom: none;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.mobile-account > div > a:hover{ background-color: #f1f1f1; color: var(--main-blue-txt);}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.mobile-account > div > a i{ font-size: 12px;}

.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div{ z-index: 10; opacity: 0; height: 0; pointer-events: none; overflow: hidden; position: absolute; right: 0; top: 100%; width: 308px; padding-bottom: 10px; box-shadow: 0 2px 5px 1px #ccc; border-radius: 5px; transition: all .3s ease-out; background-color: var(--white-bg);}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div.open{ height: 465px; opacity: 1; pointer-events: all;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div.open.free{ height: 323px;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .header{ padding: 10px 10px; background-color: #f1f1f1; border-bottom: 1px solid #d3d3d3;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .header strong{ font-size: 15px;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .header span{ font-size: 12px;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products{ min-height: 282px; max-height: 282px; overflow-y: auto; background-color: var(--white-bg);}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products::-webkit-scrollbar{ width: 7px; background-color: #ddd;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products::-webkit-scrollbar-thumb{ background-color: #aaa;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .product{ display: flex; gap: 5px; padding: 10px; border-bottom: 1px solid #d3d3d3;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .product .product-img{ width: 87px; height: 120px; min-width: 87px; min-height: 120px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 1px; border: 1px solid #f1f1f1;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .product .product-img img{ width: 100%;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .product .product-detail{ display: flex; flex-direction: column; justify-content: center; gap: 5px; position: relative;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .product .product-detail > span{ position: absolute; right: 0; top: 0; color: #bc2626; font-weight: 600; font-size: 20px; line-height: .4; cursor: pointer;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .product .product-detail > div.price{ cursor: default;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .product .product-detail > div.price > b{ color: #db2d2d; font-size: 14px;;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .product .product-detail > div.price > span{ color: #515151; text-decoration: line-through; font-size: 12px;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .product .product-detail a{ font-size: 12px; color: #616161; max-height: 196px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .product .product-detail a b{ font-size: 14px; color: var(--black-txt); transition: all .2s;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .product .product-detail a:hover b{ color: var(--main-blue-txt);}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .product .product-detail > div.info{ display: flex; gap: 2px; font-size: 12px; cursor: default;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .empty-basket{ min-height: 282px; max-height: 282px; width: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .empty-basket > div{ width: 50px; height: 50px; margin-bottom: 10px; border-radius: 50%; border: 4px solid black; color: var(--black-txt); /*display: flex; align-items: center; justify-content: center;*/ padding: 9px 0 0 9px; font-size: 18px;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .empty-basket > b{  font-size: 14px; margin-bottom: 5px;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .products .empty-basket > span{ font-size: 12px; color: #444; text-align: center;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .pay{ padding: 10px; background-color: var(--white-bg); width: 100%; border-top: 1px solid #d3d3d3;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .pay > div{ display: flex; justify-content: space-between; padding: 5px 0; font-size: 14px;}

.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .pay .buy{ display: inline-block; width: 100%; padding: 10px 0; margin: 10px 0; background-color: var(--main-blue-txt); border: 2px solid var(--main-blue-txt); color: var(--white-txt); font-weight: 700; text-align: center; border-radius: 10px; transition: all .2s ease-out;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .pay .buy:hover{ background-color: var(--white-bg); color: var(--main-blue-txt); cursor: pointer;}
.navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div .pay .continue{ font-size: 12px; color: var(--main-blue-txt); text-decoration: underline; font-weight: 800; cursor: pointer;}

.navbar .navbar-container .navbar-navigation{ border-top: 1px solid #ddd;/* border-bottom: 1px solid #ddd;*/}
.navbar .navbar-container .navbar-navigation ul{ width: 100%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: stretch; align-items: center; list-style: none; position: relative;}
.navbar .navbar-container .navbar-navigation ul li{ padding: 10px 11px; transition: all .2s; position: relative;}
.navbar .navbar-container .navbar-navigation ul li::before{ content: ''; display: inline-block; position: absolute; width: 0px; bottom: 0; left: 50%; transform: translateX(-50%); height: 2px; background-color: var(--black-txt); transition: all .2s ease-out;}
.navbar .navbar-container .navbar-navigation ul li:hover{ background-color: #f1f1f1; cursor: pointer;}
.navbar .navbar-container .navbar-navigation ul li:hover::before{ width: 100%;}
.navbar .navbar-container .navbar-navigation ul li a{ text-decoration: none; font-weight: 700; font-size: 14px; color: var(--black-txt);}

.navbar .navbar-container .navbar-navigation ul::-webkit-scrollbar{ background-color: transparent; height: 0;}
.navbar .navbar-container .navbar-navigation ul::-webkit-scrollbar-thumb{ background-color: transparent;}

.navbar .navbar-container .navbar-navigation ul .nav-arr{ position: absolute; z-index: 10; display: none;}
.navbar .navbar-container .navbar-navigation ul .nav-arr{ position: absolute; z-index: 10;}

.navbar .navbar-container .navbar-navigation ul > .navigations{ position: absolute; width: 100%; max-height: 75vh; height: auto; top: 99%; display: flex; z-index: 5; }
.navbar .navbar-container .navbar-navigation ul > .navigations > div{ width: 100%; border: 1px solid #eee; flex-direction: column; background-color: var(--white-bg); pointer-events: none; flex-wrap: wrap; overflow: hidden; position: absolute; max-height: 75vh; opacity: 0; display: flex; transition: all .2s ease-out;}
.navbar .navbar-container .navbar-navigation ul > .navigations > div.open{ opacity: 1; pointer-events: all;}
.navbar .navbar-container .navbar-navigation ul > .navigations > div > div{ width: auto;
    display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    /* display: grid; */
    padding: 10px 10px 0;}
.navbar .navbar-container .navbar-navigation ul > .navigations > div > div a{ text-decoration: none; color: var(--black-txt);}
.navbar .navbar-container .navbar-navigation ul > .navigations > div > div a.h{ font-weight: 700; transition: all .2s;}
.navbar .navbar-container .navbar-navigation ul > .navigations > div > div a.h:hover{ font-weight: 700; color: var(--main-blue-txt);}
.navbar .navbar-container .navbar-navigation ul > .navigations > div > div a.r{ color: #bc2626; font-weight: 700; font-size: 15px; padding: 3px 0 3px 5px; width: 100%; transition: all .2s ease-out; border-radius: 5px;}
.navbar .navbar-container .navbar-navigation ul > .navigations > div > div a.r:hover{ background-color: #e80d0d17; padding: 10px 0 10px 5px;}
.navbar .navbar-container .navbar-navigation ul > .navigations > div > div a:not(a.h, a.r){ padding: 3px 0; font-size: 12px; transition: all .2s ease-out; width: 100%; border-radius: 5px;}
.navbar .navbar-container .navbar-navigation ul > .navigations > div > div a:not(a.h, a.r):hover{ background-color: #f1f1f1; padding-left: 3px; color: var(--main-blue-txt);}


/* Mobile Nav */
.navbar .mobile-nav-container{ opacity: 0; pointer-events: none; position: fixed; left: 0; top: 0; z-index: 20; width: 100vw; height: 100vh; background-color: rgba(0, 0, 0, 0.5); backdrop-filter: blur(0px); transition: all .5s ease-out;}
.navbar .mobile-nav-container.open{ opacity: 1; pointer-events: all;}
.navbar .mobile-nav-container .close-mobile-nav{ position: absolute; height: 40px; width: 40px; background-color: var(--black-txt); color: var(--white-txt); font-size: 25px; font-weight: 600; text-align: center; line-height: 1.5; left: -40px; z-index: 21; cursor: pointer;}
.navbar .mobile-nav-container .close-mobile-nav.open{ left: 300px;
    /* animation: mobile-nav-close 1.5s ease 1;  */
    animation: mobile-nav-close 1s cubic-bezier(0.96, 0.8, 0.4, 0.84) 1;
    transition: all .2s;}
.navbar .mobile-nav-container .close-mobile-nav.open:hover{ box-shadow: inset 0 0 22px 1px #ab4141; color: #ff0000;}
.navbar .mobile-nav{ width: 300px; height: 100vh; background-color: var(--white-bg); overflow-y: auto; position: relative; z-index: 22; left: -100%; transition: all .3s ease;}
.navbar .mobile-nav.open{ left: 0;}
.navbar .mobile-nav::-webkit-scrollbar{ width: 12px; background-color: #ccc;}
.navbar .mobile-nav::-webkit-scrollbar-thumb{ background-color: #000;}
.navbar .mobile-nav > ul{ padding-top: 10px;}
.navbar .mobile-nav > ul > li{ border-bottom: 1px solid #ddd; height: 50px;}
.navbar .mobile-nav > ul > li > a{ height: 50px; width: 100%; padding-left: 10px; font-weight: 700; font-size: 14px; transition: all .2s;}

.navbar .mobile-nav > ul > li > ul > li{ background-color: var(--main-blue-txt)14; height: 40px; border-bottom: 1px solid var(--main-blue-txt)21;}
.navbar .mobile-nav > ul > li > ul > li > a{ height: 40px; padding-left: 15px; font-size: 13px; font-weight: 600; color: #565656;}
.navbar .mobile-nav > ul > li > ul > li > a::after{ font-weight: 300 !important;}

.navbar .mobile-nav > ul > li > ul > li > ul li{ background-color: var(--main-blue-txt)27;}
.navbar .mobile-nav > ul > li > ul > li > ul li a{ font-size: 13px; padding-left: 20px; height: 30px; font-weight: 700;}
.navbar .mobile-nav > ul > li > ul > li > ul li a.full::after{ font-size: 13px;}

.navbar .mobile-nav ul{ list-style: none; }
.navbar .mobile-nav ul li{ list-style: none; overflow: hidden; transition: all .3s ease-in-out;}
.navbar .mobile-nav a{ position: relative; width: 100%; display: flex; align-items: center; text-decoration: none; color: var(--black-txt);}
.navbar .mobile-nav li > a.dropdown::after{ content: ''; display: inline-block; position: absolute; right: 20px; font-size: 20px; font-weight: 700;}
.navbar .mobile-nav li > a.dropdown.close::after{ content: '+'; width: 11px;}
.navbar .mobile-nav li > a.dropdown.open::after{ content: '-'; width: 11px;}
.navbar .mobile-nav a.full::after{ content: '>'; width: 11px; display: inline-block; position: absolute; right: 20px; font-size: 20px; font-weight: 700;}


/* FOOTER */
footer{ background-color: #26262f;}
footer > .info{ width: 100%; max-width: 1200px; padding: 50px 10px 30px; margin: 0 auto;}
footer > .info .route-section{ display: flex;}
footer > .info .route-section > div{ width: 25%;}
footer > .info .route-section > div h4{ pointer-events: none; font-size: 20px; font-weight: 700; color: #f4f4f4; margin-bottom: 7px;}
footer > .info .route-section > div ul{ list-style: none; height: auto;}
footer > .info .route-section > div ul li{ }
footer > .info .route-section > div ul li a{ display: inline-block; color: #dcdcdc; text-decoration: none; font-size: 14px; padding: 4px 0;}
footer > .info .route-section > div ul li a::before{ transition: all .2s ease; content: ''; display: inline-block; width: 0px; height: 1.5px; background-color: #ff0037; margin-bottom: 3px;}
footer > .info .route-section > div ul li a:hover::before{ width: 10px; margin-right: 5px;}
footer > .info .icons{ display: flex; align-items: center; justify-content: space-between; margin: 18px 0 15px;}
footer > .info .icons > div{ width: 33%;}
footer > .info .icons .bank{ display: flex; gap: 7px; align-items: center;}
footer > .info .icons .bank img{ height: 27px;}
footer > .info .icons .bank img:last-child{ height: 22px;}
footer > .info .icons .app{ display: flex; gap: 10px; justify-content: center;}
footer > .info .icons .app a{ border: 1px solid #7b7b7b; border-radius: 3px; overflow: hidden; height: 37px; display: inline-block; }
footer > .info .icons .app a img{ height: 100%;}
footer > .info .icons .qr{ display: flex; gap: 15px; justify-content: end;}
footer > .info .icons .qr img{ height: 50px;}
footer > .info .detail .applications a img{}
footer > .copy{ background-color: var(--black-txt);}
footer > .copy > div{ position: relative; width: 100%; max-width: 1200px; margin: 0 auto; font-size: 13px; display: flex; align-items: center; justify-content: center; padding: 13px 10px; color: #d7d7d7;}
footer > .copy > div .social{ display: flex; gap: 7px; position: absolute; right: 10px;}
footer > .copy > div .social a{ display: inline-block; font-size: 17px; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background-color: transparent; color: var(--white-txt); text-decoration: none;}


@keyframes mobile-nav-close {
    0%{ left: -30px;}
    25%{ left: 320px;}
    50%{ left: 280px;}
    75%{ left: 310px;}
    100%{ left: 300px;}
}

@media screen and (max-width: 507px) {
    .navbar .navbar-container .navbar-detail .navbar-search .search-btn{ transform: translateY(-1px) translateX(1px) !important; height: 37.5px !important;}
    .routes{ display: none;}
}

@media screen and (max-width: 768px) {
    .navigations{ display: none !important;}
    .navbar .navbar-container .navbar-detail .navbar-logo i{ display: inline-block;}
    .navbar .navbar-container .navbar-navigation ul{ overflow-x: auto; justify-content: flex-start !important;}
    .navbar .navbar-container .navbar-navigation ul li{ min-width:  max-content; padding: 10px 10px !important;}
    .navbar .navbar-container .navbar-detail .navbar-search > div > button{ display: block;}
    .navbar .navbar-container .navbar-detail .navbar-logo img{ height: 30px}
    .navbar .navbar-container .navbar-detail .navbar-buttons > div.my-account{ display: none;}
    .navbar .navbar-container .navbar-detail .navbar-buttons > div.mobile-account{ display: inline-block;}

    footer > .info { padding: 50px 25px 30px;}
    footer > .info .route-section{ flex-direction: column; width: 100%;}
    footer > .info .route-section > div{ width: 100%; margin-bottom: 3px;}
    footer > .info .route-section > div h4{ position: relative; width: 100%; pointer-events: all; cursor: pointer;}
    footer > .info .route-section > div h4::after{ transition: all .2s ease; content: '\f078'; font-family: 'FONT AWESOME 5 FREE'; font-weight: 900; position: absolute; right: 0;}
    footer > .info .route-section > div ul{ overflow: hidden; transition: all .2s ease;}
    footer > .info .route-section > div.active{ margin-bottom: 15px;}
    footer > .info .route-section > div.active h4::after{ rotate: 180deg;}
    footer > .info .route-section > div ul li a{ }
    footer > .info .icons{ flex-direction: column; align-items: center; justify-content: center; gap: 20px;}
    footer > .info .icons > div{ width: 100%; align-items: center; justify-content: center !important;}
    footer > .copy > div{ display: flex; justify-content: space-between; align-items: center;}
    footer > .copy > div .social{ position: relative;}
}

@media screen and (max-width: 845px) {
    .navbar .navbar-container .navbar-detail{ padding-bottom: 60px; position: relative;}
    .navbar .navbar-container .navbar-detail .navbar-search{ position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); z-index: 3; width: 95%; max-width: 475px; box-shadow: 0 0 5px 1px rgb(0 0 0 / 30%);}
    .navbar .navbar-container .navbar-detail .navbar-search .search-btn{ transform: translateY(-1px) translateX(1px); height: 37.6px;}

}

@media screen and (max-width: 878px){
    .navbar .navbar-container .navbar-navigation ul > .navigations > div > div a.h{ font-size: 11px !important;}
    .navbar .navbar-container .navbar-navigation ul > .navigations > div > div a:not(a.h, a.r){ font-size: 10px !important;}
    .navbar .navbar-container .navbar-navigation ul > .navigations > div > div a.r{ font-size: 13px !important;}
    .navbar .navbar-container .navbar-navigation ul li a{ font-size: 12px !important;}
    .navbar .navbar-container .navbar-navigation ul > .navigations{ top: 97.7%;}
}

@media screen and (max-width: 992px){
    .navbar .navbar-container .navbar-navigation ul li{ padding: 10px 5px;}
    .navbar .navbar-container .navbar-navigation ul li a{ font-size: 10px;}
    .navbar .navbar-container .navbar-navigation ul > .navigations > div > div a.h{ font-size: 14px;}
    .navbar .navbar-container .navbar-navigation ul > .navigations > div > div a:not(a.h, a.r){ font-size: 11px;}
    .navbar .navbar-container .navbar-navigation ul > .navigations > div > div a.r{ font-size: 13px;}

}

@media screen and (max-width: 1200px) {
    .navbar .navbar-container .navbar-navigation ul{justify-content: center;}
    .navbar .navbar-container .navbar-navigation ul li{}
    .navbar .navbar-container .navbar-navigation ul li a{ font-size: 11px;}
}




/* PRODUCTS AREA */
body{
    background-color: var(--main-blue-bg);
}
.main-container{
    width: 100%;
    max-width: 1200px;
    margin: 0 10px;
    margin: 0 auto;
    padding-top: 20px;
}


/* NAVBAR FANCY */
.main-container .main-navbar .navbar-fancy{
    width: 100%;
    background-color: var(--main-blue-txt);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    flex-direction: column;
}

.navbar-fancy .navbar-detail{
    width: 100%;
    background-color: var(--main-blue-txt);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    gap: 5px;
}

.main-navbar .navbar-fancy .navbar-logo{
    display: flex;
}

.navbar-logo > img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.logo-txt > .shop-header{
    margin-left: 7px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    font-size: 13px;
}

.logo-txt > .shop-header h5{
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}

.logo-txt > .shop-header .shop-point{
    font-size: 12px;
    /* background-color: #EAC90B; */
    padding: 2px 5px;
    color: var(--white-txt);
    border-radius: 3px;
    margin-bottom: 5px;
}

.logo-txt > .shop-follower{
    margin-left: 7px;
    font-size: 13px;
    display: none;
}

.logo-txt > img{
    width: 75px;
    margin: 4px 0 0 5px;
}


.main-navbar .navbar-fancy .navbar-info{
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-info button{
    font-style: normal;
    line-height: normal;
    color: #333;
    height: 38px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    background-color: var(--white-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.09px;
    padding: 1px 17px;
    margin-right: 10px;
    transition: all .1s;
}

.navbar-info button:hover{
    color: var(--main-blue-txt);
    cursor: pointer;
}
/* NAVBAR FANCY END */




/* PRODUCTS CONTAINER */
.products-container{
    width: 100%;
    display: flex;
    padding: 0 10px;
}



/* FILTER AREA */
.products-container .filter-container{ width: 185px; background: var(--white-bg); border-radius: 3px; border: 1px solid var(--main-blue-border); padding: 10px;}
.filter-container > div{ padding-bottom: 6px; overflow: hidden; height: 53px; height: auto;}
.filter-container > div.active.color{ overflow: unset;}
.filter-container > div.active .filter-header i{ color: var(--main-blue-txt); display: inline-block; pointer-events: none !important;}
.filter-container > div:last-child{ border-bottom: none;}
.filter-container > div .filter-header{ display: flex; align-items: center; justify-content: space-between; padding: 12px 0 7px 2px; transition: all .1s; font-size: 15px; font-weight: 600; color: #333;}
.filter-container > div .filter-header i{ margin: 2px 10px 0 0; color: #666;}
.filter-container > div .filter-header:hover i{ color: var(--main-blue-txt);}
.filter-detail-last ul li{ border-bottom: 1px solid var(--main-blue-border); padding: 5px 0 15px;}
.filter-detail-last ul li:last-child{ border-bottom: none;}
.filter-detail > ul{ list-style: none; max-height: 160px; overflow-y: auto; padding: 10px !important; }
.filter-detail > input + ul{ margin-top: 8px;}
.filter-detail > ul::-webkit-scrollbar{ background-color: #f1f1f1; width: 6px; border-radius: 6px;}
.filter-detail > ul::-webkit-scrollbar-thumb{ background-color: #bebebe; border-radius: 6px;}
.filter-detail > ul li{ display: flex; align-items: center; gap: 5px; transition: all .2s; margin-bottom: 7px; width: 100%;}
.filter-detail > ul li:hover{ cursor: pointer; opacity: .75;}
.filter-detail > ul li .checkbox{ min-width: 16px; min-height: 16px; border-radius: 2px; border: 1px solid var(--main-blue-border); background-color: var(--white-bg); pointer-events: none;}
.filter-detail > ul li .checkbox.chckd{ background-color: var(--main-blue-txt); border: solid 1.5px var(--main-blue-txt); position: relative;}
.filter-detail > ul li .checkbox.chckd:after{ display: inline-block; content: ''; opacity: 1; position: absolute; width: 100%; height: 100%; border-top: none; border-right: none; background: url(https://cdn.dsmcdn.com/web/assets/check.svg) no-repeat center center;}
.filter-detail > ul li .radio{ width: 16px; height: 16px; border-radius: 50%; border: 1px solid #bebebe; pointer-events: none;}
.filter-detail > ul li .radio.chckd{ background-color: var(--main-blue-txt); width: 10px; height: 10px; box-shadow: 0 0 0 2px white, 0 0 0 3px var(--main-blue-txt); margin: 0 3px 0 3px;}
.filter-detail > ul li .radio.chckd + span{ font-weight: 600;}
.filter-detail > ul li span{ font-size: 13px; pointer-events: none; max-width: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.filter-detail .color-filter{ margin-top: 5px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; background-color: var(--main-blue-bg); border: 1px solid var(--main-blue-border); padding: 10px;}
.color-filter .filter-color{ width: 30px; height: 30px; border-radius: 50%; border: 1px solid #bebebe; cursor: pointer; position: relative;}
.color-filter .filter-color.chckd{ position: relative; box-shadow: 0 0 0 2px white, 0 0 0 3px #bebebe;}
.color-filter .filter-color.chckd:after{ display: inline-block; content: ''; opacity: 1; position: absolute; width: 100%; height: 100%; border-top: none; border-right: none; background: url(https://cdn.dsmcdn.com/web/assets/check.svg) no-repeat center center;}
.color-filter .filter-color::before{ display: inline-block; position: absolute; left: 20px; top: 20px; z-index: 10; background-color: #f8f8f8; border: 1px solid #bebebe; font-size: 10px; padding: 2px 7px; opacity: 0; pointer-events: none; transition: all .2s; text-align: center;}
.color-filter .filter-color:hover::before{ opacity: .8;}

.filter-color.altin{ background: linear-gradient(-65deg, #f2cd00, rgb(253, 252, 224), gold);}
.filter-color.altin::before{ content: 'Altın';}
.filter-color.gumus{ background: linear-gradient(-65deg, gray, white, gray);}
.filter-color.gumus::before{ content: 'Gümüş';}
.filter-color.bej{ background: #f5e0cc;}
.filter-color.bej::before{ content: 'Bej';}
.filter-color.beyaz{ background: var(--white-bg);}
.filter-color.beyaz::before{ content: 'Beyaz';}
.filter-color.bordo{ background: #a52c36;}
.filter-color.bordo::before{ content: 'Bordo';}
.filter-color.ekru{ background: #ede9de;}
.filter-color.ekru::before{ content: 'Ekru';}
.filter-color.gri{ background: #dddddd;}
.filter-color.gri::before{ content: 'Gri';}
.filter-color.haki{ background: #8b9955;}
.filter-color.haki::before{ content: 'Haki';}
.filter-color.kahverengi{ background: #8b572a;}
.filter-color.kahverengi::before{ content: 'Kahverengi';}
.filter-color.kirmizi{ background: #de001b;}
.filter-color.kirmizi::before{ content: 'Kırmızı';}
.filter-color.lacivert{ background: #1f3897;}
.filter-color.lacivert::aftbeforeer{ content: 'Lacivert';}
.filter-color.mavi{ background: #71b2ff;}
.filter-color.mavi::before{ content: 'Mavi';}
.filter-color.mor{ background: #8331cc;}
.filter-color.mor::before{ content: 'Mor';}
.filter-color.pembe{ background: #ffa8e7;}
.filter-color.pembe::before{ content: 'Pembe';}
.filter-color.sari{ background: #ffe500;}
.filter-color.sari::before{ content: 'Sarı';}
.filter-color.siyah{ background: #565656;}
.filter-color.siyah::before{ content: 'Siyah';}
.filter-color.turkuaz{ background: #46c49e;}
.filter-color.turkuaz::before{ content: 'Turkuaz';}
.filter-color.turuncu{ background: #f5a623;}
.filter-color.turuncu::before{ content: 'Turuncu';}
.filter-color.yesil{ background: #7ed321;}
.filter-color.yesil::before{ content: 'Yeşil';}
.filter-color.multicolor{ background: linear-gradient(90deg, var(--white-color)f00, #ffc0cb,#ca1414, #00ff, #00a52941);}
.filter-color.multicolor::before{ content: 'Çoklu renk';}

.filter-color > span{ display: none;}
.filter-container > div .filter-detail > input[type=text]{ width: 100%; border: 1px solid var(--main-blue-border); background-color: var(--main-blue-bg); border-radius: 3px; padding: 4px 5px; font-size: 13px; transition: all .2s;}
.filter-container > div .filter-detail input[type=text]:focus-within{ outline: none; box-shadow: 0 0 3px 1px #e5e5e5; background-color: var(--white-bg);}
.filter-container .price-filter-container{ display: flex; gap: 7px;}
.filter-container > div .filter-detail input[type=number]{ width: 56px; border: 1px solid #cecece; background-color: #f8f8f8; border-radius: 5px; padding: 4px 5px; font-size: 13px; transition: all .2s;}
 input[type=number]:focus-within{ outline: none; box-shadow: 0 0 3px 1px #e5e5e5;}
.filter-container > div .filter-detail input[type=number]::-webkit-outer-spin-button,
.filter-container > div .filter-detail input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0;}
.filter-container > div .filter-detail .price-filter-search{ background-color: rgb(181, 181, 181); color: var(--white-txt); width: 25px; height: 25px; display: flex; align-items: center; justify-content: center; border-radius: 3px; margin-left: auto; pointer-events: none;}
.filter-container > div .filter-detail .price-filter-search.active{ pointer-events: all; background-color: var(--main-blue-txt); cursor: pointer;}




/* PRODUCT CONTAINER */

.products-container .product-container{ width: 100%; padding-left: 5px;}
.product-container > .search-results{ font-size: 18px; color: #444; font-weight: 600; display: flex; justify-content: space-between; background: var(--white-bg); padding: 15px; border-radius: 3px; border: 1px solid var(--main-blue-border);}
.product-container > .search-results h2{ display: inline-block; font-size: 20px; color: #222;}
.product-container > .search-results span{ font-size: 20px; color: #222;}
.search-results select{ width: 180px; border-color: #cecece; border-radius: 5px; margin-left: auto; height: 30px; padding-left: 5px;}
.search-results select:focus-visible{ outline: none;}
.product-container .speed-delivery{ width: 100%; background-color: #deffed; display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; margin-top: 20px; min-height: 77px;}
.product-container .speed-delivery.hidden{ max-height: 0px; min-height: 0px; overflow: hidden; padding: 0px !important; margin-top: 0px;}
.speed-delivery i{ margin-right: 10px; color: #009c46; font-size: 20px;}
.speed-delivery button{ font-size: 14px; font-weight: 600; color: var(--white-color); background-color: #0BC15C; border: none; margin-left: 10px; box-shadow: 0px 1px 3px rgb(0 0 0 / 3%); border-radius: 6px; padding: 10px 16px; cursor: pointer; transition: all .1s;}
.speed-delivery button:hover{ background-color: #009c46;}
.product-container .product-area{ margin-top: 20px; display: flex; gap: 7px; flex-wrap: wrap;}
.product-container .filter-area{ display: flex; /* margin-top: 20px; */ gap: 10px; overflow: hidden; flex-wrap: wrap; padding: 0; height: 0px;}
.filter-area > div{ display: flex; align-items: center; position: relative; height: 30px; /* margin-right: 10px; */ padding: 0 7px; font-size: 12px; color: #333333; cursor: default; border: solid 1px var(--main-blue-border); background-color: var(--white-color);}
.filter-area > div H5{ display: flex;}
.filter-area > div .color{ width: 13px; height: 13px; border-radius: 3px; margin-right: 5px; box-shadow: 0 0 3px 1px #dddddd;}
.filter-area > div span{ width: 18px; height: 18px; background-color: #dddddd; border-radius: 50%; margin-left: 5px; text-align: center; font-size: 15px; line-height: 1.2; font-weight: 600;}
.filter-area > div span:hover{ color: #c36d26; cursor: pointer;}
.filter-area > button{ height: 30px; border: none; font-size: 12px; padding: 0 12px; border-radius: 3px; box-shadow: 0 1px 3px 0 rgb(0 0 0 / 3%); background-color: var(--main-blue-txt); border: 1px solid var(--main-blue-txt); color: var(--white-txt); transition: all .3s linear; padding-bottom: 1px; font-weight: 500;}
.filter-area > button:hover{ cursor: pointer; background-color: var(--white-bg); color: var(--main-blue-txt)}


/* PRODUCT AREA */
.product-area .product{ width: 235px; height: 497px; transition: box-shadow .4s; border-radius: 5px; overflow: hidden; text-decoration: none;}
.product-area .product:hover{ cursor: pointer; box-shadow: 0 0 10px 1px #cfcece;}
.product-area .product .product-img{ width: 100%; height: 349px; position: relative;     overflow: hidden; display: flex; align-items: center;}
.product-area .product-img img{ width: 100%; transition: transform .5s;}
.product-area .product:hover .product-img > img{ transform: scale(1.05);}
.product-area .product-img .product-privileges{ position: absolute; left: 5px; top: 5px; z-index: 2; gap: 3px; display: flex; flex-direction: column;}
.product-area .product-privileges > img{ width: 50px;}
.product-area .product-privileges .privileges{ width: 55px; padding: 3px 5px; color: var(--white-txt); font-size: 11px; text-align: center; border-radius: 5px; line-height: .9;}
.product-area .product-privileges .speed-dlvry{ background-color: #04b622;}
.product-area .product-privileges .free-cargo{ background-color: #4e4e4e;}
.product-area .product-img .hearth-btn{ display: inline-block; background-color: var(--white-bg); color: #bebebe; width: 38px; height: 38px; position: absolute; right: 5px; top: 5px; border-radius: 50%; font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; box-shadow: -2px 2px 5px 1px #cecece; z-index: 2;}
.product-area .product-img .hearth-btn.active{ color: rgb(249, 11, 51); animation: hearth-effect-shadow 1.5s linear 1;}
.product-area .product-img .hearth-btn.active i{ animation: hearth-effect 1.5s linear 1; display: inline-block;}

@keyframes hearth-effect-shadow{
    0%{ box-shadow: 0 0 0 0 white;}
    25%{ box-shadow: 0 0 10px 1px rgb(255, 134, 154);}
    50%{ box-shadow: 0 0 0 0 white;}
    75%{ box-shadow: 0 0 10px 1px rgb(255, 134, 154);}
    100%{ box-shadow: 0 0 0 0 white;}
}
@keyframes hearth-effect{
    0%{ transform: scale(1);}
    25%{ transform: scale(1.2);}
    50%{ transform: scale(1);}
    75%{ transform: scale(1.2);}
    100%{ transform: scale(1);}
}

.product-area .product-img .color-options{ position: absolute; right: 5px; bottom: 5px; background-color: var(--white-bg); padding: 4px 4px; border-radius: 2px; display: flex; align-items: center; box-shadow: -1px 1px 3px 1px #cecece; z-index: 2; pointer-events: none;}
.product-area .color-options span:nth-child(1),.color-options span:nth-child(2){ display: inline-block; width: 15px; height: 15px; border-radius: 50%; border: 1px solid white;}
.product-area .color-options span:nth-child(1){ background: linear-gradient(90deg, blue, rgb(112, 216, 251), cyan); z-index: 2;}
.product-area .color-options span:nth-child(2){ background: linear-gradient(90deg, rgb(255, 139, 201), rgb(189, 50, 244), rgb(254, 38, 81)); margin-left: -5px;}
.product-area .color-options span:nth-child(3){ font-size: 14px; margin-left: 4px; margin-top: -1px;}
.product-area .product-img .wide-body{ position: absolute; left: 5px; bottom: 5px; font-size: 8px; color: #ededed; font-weight: 600; padding: 3px 5px; background: linear-gradient(90deg, rgb(233, 89, 0), var(--main-blue-txt),  rgb(255, 187, 0)); border-radius: 3px; letter-spacing: .5px; z-index: 2;}
.product-area .product .product-detail{ padding: 10px;}
.product-area .product-detail > p{ overflow: hidden; height: 38px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: -2px; font-size: 14px; color: #666; margin: 2px 0;}
.product-area .product-detail > p b{color: #333;}
.product-area .product-performance{ margin-bottom: 5px; height: 22px;}
.product-area .product-performance > img{ width: 14px;}
.stars-outer{ position: relative; display: inline-block;}
.stars-inner{ position: absolute; top: 0; left: 0; white-space: nowrap; overflow: hidden; width: 0;}
.stars-outer::before{ content: '\f005 \f005 \f005 \f005 \f005'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 13px; color: #ccc;}
.stars-inner::before{ content: '\f005 \f005 \f005 \f005 \f005'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 13px; color: var(--star-yellow);}


.product-area .product-performance .comment-count{ font-size: 13px; margin: 0 3px; color: #777;}
.product-area .product-detail .product-price-area{ width: 100%; height: 31px; display: flex; flex-direction: column; justify-content: end;}
.product-area .product-price-area > b{ color: var(--black-color); font-weight: 500; margin: 4px 0; font-size: 11px; display: inline-block;}
.product-area .product-price-area > div{ line-height: .9;}
.product-area .product-price-area > div .last-price{ font-weight: 600; font-size: 14px; color: gray; text-decoration: line-through;}
.product-area .product-price-area > div .current-price{ font-weight: 600; color: var(--main-blue-txt); font-size: 18px;}
.product-area .product-detail .buy-lot-pay-less{ border: 1px solid var(--main-blue-txt); color: var(--main-blue-txt); background-color: var(--white-bg); font-weight: 600; font-size: 11px; letter-spacing: .5px; padding: 1px 5px; margin-top: 10px; border-radius: 3px;}

/* RESPONSİVE CSS */
.mobile-filters-area{ display: none; justify-content: space-between; border-bottom: 1px solid #e6e6e6;}
.mobile-filters-area > div{ width: 50%; padding: 10px; text-align: center; font-weight: 600; color: rgb(94, 83, 66);}
.mobile-filters-area > div:hover{ cursor: pointer; }
.mobile-filters-area > div i{ margin-right: 10px; color: var(--main-blue-txt);}
.mobile-filters-area > div:first-child{ border-right: 1px solid #e6e6e6;}

.fancy-search{ display: none;}
#suggested-order-btn{position: relative;}
#suggested-order-btn i{ z-index: 2; position: absolute; left: 10px;}
#suggested-order-btn select{ border: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; text-overflow:''; text-indent: 0.01px; text-overflow: ""; position: absolute; width: 100%; text-align: center !important; left: 0px; top: 0; padding-left: 35px; height: 100%; font-weight: 600; color: rgb(94, 83, 66); font-size: 16px; cursor: pointer;}
#suggested-order-btn select:focus-visible{ outline: none;}
#suggested-order-btn select option{ position: absolute; width: 350px !important; right: 0; padding: 20px; text-align: left !important;}

#filter-btn span{ color: var(--main-blue-txt);}

.filter-container > div:first-child{ display: none;}
.filter-container > div:nth-child(2){ display: none;}
.filter-container > section{ transform: translateX(-14px); display: none; width: 100%; text-align: center; padding: 10px; position: fixed; bottom: 0; background-color: var(--white-bg); height: 71px; border-top: 1px solid var(--main-blue-txt);}
.filter-container > section button{ display: inline-block; cursor: pointer; width: calc(100% - 15px); transform: translateX(7px); padding: 15px 0; color: var(--white-txt); background-color: var(--main-blue-txt); border: none; border-radius: 10px; font-size: 16px; font-weight: 600;}
@media screen and (min-widtH: 771px) {
    body{
        overflow: auto !important;
    }
}
@media screen and (max-width: 771px) {
    .mobile-filters-area{
        display: flex;
    }

    .search-results select{
        display: none;
    }

    .filter-container{
        /* display: none; */
        position: fixed;
        z-index: 5;
        top: 0;
        left: -100%;
        width: 100% !important;
        background-color: #f1f1f1;
        height: 100vh;
        overflow-y: auto;
        transition: all .5s ease-in-out;
    }

    .filter-container::-webkit-scrollbar{
        width: 13px;
        background-color: #e1e1e1;
        border-radius: 10px;
    }

    .filter-container::-webkit-scrollbar-thumb{
        border-radius: 10px;
        background-color: #bbbbbb;
    }

    .filter-container{
        padding-bottom: 71px;
    }

    .filter-container > section{display: block;}

    .filter-container > div:first-child{
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 18px;
        position: relative;
        padding: 10px 0;
        background: var(--main-blue-bg);
    }

    .filter-container > div:first-child i{
        display: inline-block;
        position: absolute;
        left: 20px;
        font-size: 25px;
        cursor: pointer;
    }

    .filter-container > div:nth-child(2){
        margin-bottom: 20px;
        padding: 10px;
        height: auto;
        display: block;
        max-width: calc(100% - 20px);
        margin: 0 auto;
        background: var(--main-blue-bg);
        border: 1px solid var(--main-blue-border);
        border-radius: 3px;
    }

    .filter-container > div:nth-child(2) h4{
        font-size: 15px;
        color: #666;
    }

    .filter-container > div:nth-child(2) > .filter-area{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-container > div:nth-child(2) > .filter-area div{
        display: flex;
        width: fit-content;
    }

    .filter-container > div:nth-child(2) > .filter-area > div .color{
        width: 13px;
        height: 13px;
        border-radius: 3px;
        margin-right: 5px;
        box-shadow: 0 0 3px 1px #dddddd;
    }

    .filter-container > div .filter-detail .price-filter-search {
        margin-left: unset;
    }

    .filter-container > div{
        background: var(--white-bg);
        padding: 0 12px 8px 12px;
    }

    .filter-container > div.active {
        height: auto;
    }

    .nav-search{
        display: none;
    }

    .fancy-search{
        display: flex;
        width: 100%;
        max-width: 332px;
    }

    .navbar-nav > ul{
        width: 100%;
        justify-content: space-around;
        margin-left: 0px;
    }

    .navbar-nav > ul li{
        text-align: center;
    }

    .navbar-nav > ul li a{
        padding: 0px;
        text-align: center;
    }

    .product-area{
        justify-content: center;
    }
}

@media screen and (max-width: 515px){
    .navbar-nav > ul li a{
        font-size: 14px;
    }

    .product-area{
        justify-content: flex-start;
    }

    .product-area .product{
        width: 48.5%;
        height: 110vw;
        min-height: 360px;
        max-height: 490px;
    }


    /* .product .product-img{
        width: 100%;
        height: 63vw;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
    } */
    .product-area .product .product-img{
        width: 100%;
        height: 70vw !important;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;

    }

    .logo-txt > .shop-follower{ display: block;}
    .navbar-info > div{ display: none;}
}

@media screen and (max-width: 430px) {
    .product-privileges .privileges{ width: 40px; font-size: 9px;}
    .product-privileges > img{ width: 40px;}
    .product-img .hearth-btn{ width: 30px; height: 30px; font-size: 15px;}
    .product-img .wide-body{ font-size: 7px; color-scheme: white;}
    .product-img .color-options{ transform: scale(.8) translate(3px, 2px);}
    .product-detail > p{ font-size: 12px; height: 32px;}
    .product-container > .search-results{font-size: 14px;}
    .product-container > .search-results h2, .product-container > .search-results span{ font-size: 17px;}
    .product-performance .stars-outer::before, .product-performance .stars-inner::before, .product-performance .comment-count, .product-performance > img{ font-size: 11px;}
    .product-price-area > b{ font-size: 10px;}
    .product-price-area > div .current-price{ font-size: 17px;}
    .product-price-area > div .last-price{ font-size: 13px;}
    .product-detail .buy-lot-pay-less{ font-size: 10px;}

    .speed-delivery > div i{ font-size: 18px; }
    .speed-delivery > div span{ font-size: 14px; }
    .speed-delivery > button{ font-size: 12px; }

}





/* PRODUCT DETAIL  PAGE*/

.product-detail-section{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
}

.product-detail-section > .product-route{ margin: 17px 0;}
.product-detail-section > .product-route a{ text-decoration: none; color: var(--black-txt); font-size: 13px; position: relative; margin-right: 15px;}
.product-detail-section > .product-route a::after{ content: '\f105'; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); pointer-events: none; font-family: 'Font Awesome 5 Free'; color: var(--main-blue-txt); font-weight: 900;}
.product-detail-section > .product-route a:last-child{ font-weight: 600;}
.product-detail-section > .product-route a:last-child:after{ content: '';}

.product-detail-section > .product-detail-area{ display: flex; gap: 15px;}

.product-detail-section > .product-detail-area .left-section{ height: auto; min-width: 960px; border: 1px solid #ddd; border-radius: 10px; padding: 15px; display: flex; gap: 20px;}
.product-detail-section > .product-detail-area .left-section .product-img-area{}
.product-detail-section > .product-detail-area .left-section .product-img-area .product-main-img{ width: 350px; height: 520px; background-color: var(--white-bg); display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 5px; box-shadow: 0 0 0 1px #ddd; cursor: pointer;}
.product-detail-section > .product-detail-area .left-section .product-img-area .product-main-img img{ width: 100%;}
.product-detail-section > .product-detail-area .left-section .product-img-area .product-other-imgs{ width: 350px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 10px;}
.product-detail-section > .product-detail-area .left-section .product-img-area .product-other-imgs > div{ width: 40px; height: 60px; background-color: var(--white-bg); display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 5px; cursor: pointer;}
.product-detail-section > .product-detail-area .left-section .product-img-area .product-other-imgs > div.active{ box-shadow: 0 0 0 1px var(--main-blue-txt);}
.product-detail-section > .product-detail-area .left-section .product-img-area .product-other-imgs > div img{ width: 100%;}

.product-detail-section > .product-detail-area .left-section .product-details{}
.product-detail-section > .product-detail-area .left-section .product-details .first-section{ display: flex; flex-direction: column; border-bottom: 1px solid #d6d6d6; padding-bottom: 10px;}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .product-name{}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .product-name a{ text-decoration: none; font-size: 18px; font-weight: 700; color: var(--black-txt);}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .product-name a:hover{ text-decoration: underline;}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .product-name span{ font-size: 18px; font-weight: 300;}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .out-of-stock{ font-size: 12px; color: rgb(160, 0, 0); font-weight: 600;}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .seller{ font-size: 12px; color: #616161;}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .seller a{ text-decoration: none;}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .seller .store-rating{ padding: 1px 5px; border-radius: 3px; margin-left: 6px; color: var(--white-txt);}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .evaluation-area{ display: flex; margin-top: 5px; align-items: baseline;}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .evaluation-area .stars-outer{ margin-right: 10px;}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .evaluation-area a{ font-size: 12px; color: #444; display: flex; align-items: center; text-decoration: none; gap: 5px;}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .evaluation-area a:hover{ color: var(--main-blue-txt); text-decoration: underline;}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .prices{ margin-top: 5px;}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .prices .current-price{ font-size: 25px; font-weight: 600; color: var(--main-blue-txt);}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .prices .last-price{ font-size: 15px; text-decoration: line-through; color: #444;}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .collection { text-align: end; font-size: 13px; transition: all .2s;}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .collection i{ text-align: end; font-size: 13px; color: var(--main-blue-txt);}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .collection:hover{ color: var(--main-blue-txt); cursor: pointer;}
.product-detail-section > .product-detail-area .left-section .product-details .first-section .cargo{ display: none;}

.product-detail-section > .product-detail-area .left-section .product-details .second-section{ margin-top: 10px; position: relative;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section h5{ margin-bottom: 10px;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .arr{ position: absolute; font-size: 17px; height: 60px; transition: all .2s; display: flex; align-items: center; color: #7b7b7b;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .arr:hover{ color: var(--black-txt); cursor: pointer;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .left-arr{ display: none; position: absolute; left: -9px;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .left-arr.active{ display: flex; position: absolute; left: -9px;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .right-arr{ display: none; position: absolute; right: -4px;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .right-arr.active{ display: flex; position: absolute; right: -4px;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .small-imgs{ display: flex; gap: 10px; scroll-behavior: smooth; overflow-x: hidden; flex-wrap: nowrap; padding: 5px; max-width: 550px; position: relative;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .small-imgs > div{ transition: all .2s; display: flex; align-items: center; justify-content: center; min-width: 40px; width: 40px; min-height: 57px; height: 57px; overflow: hidden; border-radius: 5px; box-shadow: 0 0 0 1px #ccc;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .small-imgs > div > span{ display: none;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .small-imgs > div:hover{ box-shadow: 0 0 0 1px rgb(238, 128, 38); cursor: pointer;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .small-imgs > div.active{ box-shadow: 0 0 0 1.5px rgb(238, 128, 38);}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .small-imgs > div img{ width: 100%;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .small-imgs > div div{ display: none;}

.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes{ margin-top: 10px; border-bottom: 1px solid #d6d6d6; padding-bottom: 10px;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .header{ display: flex; justify-content: space-between; align-items: center;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .header h5{ }
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .header h5 span{ color: #7b7b7b;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .header > span{ color: #7b7b7b; font-size: 12px; transition: all .2s;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .header > span:hover{ color: var(--black-txt);  cursor: pointer;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes{ display: flex; gap: 10px;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes > span{ padding: 4px 9px; border: 1px solid #acacac; border-radius: 5px; font-size: 12px; transition: all .2s;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes > span.red-shadow{ animation: red-shadow 1.4s ease 1; color: red;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes > span.green-shadow{ animation: green-shadow 1.4s ease 1; color: green;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes > span:hover{ border: 1px solid var(--main-blue-txt); cursor: pointer;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes > span.active{ box-shadow: 0 0 0 1px #ff790b;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes > span.sold{ color: #ababab; position: relative; background: linear-gradient(to bottom left,transparent calc(50% - 1px),#bbb calc(50% - 1px),#bbb 50%,transparent 50%);}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes > span.sold:hover{ color: var(--black-txt); background: linear-gradient(to bottom left,transparent calc(50% - 1px),var(--main-blue-txt) calc(50% - 1px),var(--main-blue-txt) 50%,transparent 50%);}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes > span.sold::after{ content: 'x'; font-weight: 800; color: #7c7c7c; line-height: 1.05; display: inline-block; position: absolute; right: -3px; top: -6px; }
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes > span.sold.active{ background: linear-gradient(to bottom left,transparent calc(50% - 1px),var(--main-blue-txt) calc(50% - 1px),var(--main-blue-txt) 50%,transparent 50%);}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes > span.sold:hover::after{ color: var(--main-blue-txt); }
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes > span.sold.active::after{ color: var(--main-blue-txt); }
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes > span > span{ display: none;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes > span{ color: var(--black-txt); font-weight: 600; font-size: 11px; display: inline-block; margin-top: 10px;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes > span i{ color: var(--main-blue-txt);}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons{ position: relative; display: flex; gap: 20px; margin-top: 10px; transition: all .2s;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons.full{ margin-top: 30px;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons::before{ content: 'Sepete bu üründen maksimum sayıda eklediniz*'; display: inline-block; position: absolute; left: 0px; top: 0px; font-size: 12.5px; color: #660000; font-weight: 600; opacity: 0; transition: all .2s ease;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons.full::before{ top: -25px; opacity: 1;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button{ position: relative; overflow: hidden; width: 100%; height: 50px; transition: all .3s; font-size: 20px; border-radius: 10px; font-weight: 500; box-shadow: 0 0 5px 1px #ddd; outline: 2px solid var(--main-blue-txt); border: none;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button::before{ content: 'Sepete Ekle'; background-color: var(--main-blue-txt); color: var(--white-txt); position: absolute; top: 0; left: 0; border-radius: 10px; display: inline-block; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: all .3s ease;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button:hover::before{ background-color: var(--white-bg); color: var(--main-blue-txt);}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button:hover{ box-shadow: 0 0 10px 1px var(--main-blue-txt);}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button.err:hover{ box-shadow: 0 0 10px 1px #c61505; outline-color: rgb(230, 8, 8);}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button.err:hover::before{ color: rgb(230, 8, 8);}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button::after{ content: 'Sepete Eklendi'; position: absolute; color: var(--white-txt); top: 1px; left: 0; transform: translateY(100%) skewX(-100deg); border-radius: 10px; display: inline-block; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background-color: #04b622;  transition: all .3s ease;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button.add{ }
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button.added{ pointer-events: none; outline-color: #04b622; box-shadow: 0 0 10px 1px #04b622;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button.added::before{ transform: translateY(-100%) skew(100deg);}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button.added::after{ transform: translateY(0) skewX(0deg); top: 0px;}
/* .product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button:hover:not(.added){ color: var(--main-blue-txt); background-color: var(--white-bg); cursor: pointer;} */
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button:hover:not(.added){ cursor: pointer;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button.disabled{ outline-color: #ccc; pointer-events: none;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button.disabled::before{ background-color: #ccc; outline-color: #ccc; color: #777; pointer-events: none; overflow: hidden; z-index: 1;}
/* .product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button.disabled::after{ content: 'Tükendi'; display: inline-block; position: absolute; transform: rotate(40deg); font-size: 11px; padding: 3px 0; background-color: #777; color: #eee; width: 100px; right: 0px; top: 13px;} */
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button > span{ opacity: 0; position: absolute; transition: all .3s; transform: rotate(40deg); font-size: 11px; padding: 3px 0; background-color: #777; color: #eee; width: 100px; right: 0px; top: 13px; z-index: 2;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons button.disabled > span{ opacity: 1;}

@keyframes red-shadow {
    0%{ box-shadow: 0 0 5px 1px white;}
    25%{ box-shadow: 0 0 7px 1px #8c0000;}
    50%{ box-shadow: 0 0 5px 1px #ff9393;}
    75%{ box-shadow: 0 0 7px 1px #8c0000;}
    100%{ box-shadow: 0 0 5px 1px white;}
}
@keyframes green-shadow {
    0%{ box-shadow: 0 0 5px 1px white;}
    25%{ box-shadow: 0 0 7px 1px #218300;}
    50%{ box-shadow: 0 0 5px 1px #a4ff86;}
    75%{ box-shadow: 0 0 7px 1px #218300;}
    100%{ box-shadow: 0 0 5px 1px white;}
}


.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons > span{ display: inline-block; font-size: 30px; position: relative; color: #b9b9b9; box-shadow: 0 0 10px 1px #ddd; width: 60px; height: 50px;  border: 1px solid #afafaf; display: flex; align-items: center; justify-content: center; border-radius: 5px; transition: all .2s ease-out;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons > span::after{ content: 'Favorilere Ekle'; display: inline-block; position: absolute; pointer-events: none; transition: all .3s ease-out; left: 50%; transform: translateX(-50%); font-size: 10px; width: 80px; text-align: center; padding: 6px 10px; color: #db2d2d; font-weight: 600; border-radius: 10px; top: -20px; opacity: 0; background-color: var(--white-bg); border: 2px solid #db2d2d;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons > span:hover:after{ top: -40px; opacity: .8;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons > span.active{ color: #fd2a51; box-shadow: 0 0 10px 1px #fd2a51; border-color: #fd2a51;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons > span.active::after{ opacity: 0; top: -30px;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons > span:hover{ box-shadow: 0 0 10px 1px #fd2a51; cursor: pointer;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .little-info{ margin-top: 10px; display: flex; justify-content: space-between; align-items: center;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .little-info .cargo{}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .little-info .cargo #delivery-date{ color: #666; font-size: 11px; font-weight: 600;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .little-info .cargo span{ font-size: 12px;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .little-info .favs{ font-size: 11px; color: #666;}
.product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .little-info .favs i{ margin-right: 5px;}


.product-detail-section > .product-detail-area .left-section .product-details .thrid-section{ margin-top: 10px;}
.product-detail-section > .product-detail-area .left-section .product-details .thrid-section .product-information{ }
.product-detail-section > .product-detail-area .left-section .product-details .thrid-section > h5{ margin-bottom: 10px;}
.product-detail-section > .product-detail-area .left-section .product-details .thrid-section .product-information{ }
.product-detail-section > .product-detail-area .left-section .product-details .thrid-section .product-information > ul{ list-style: none; max-height: 150px; overflow: hidden; position: relative; transition: all .2s ease-in-out;}
.product-detail-section > .product-detail-area .left-section .product-details .thrid-section .product-information > ul::after{ content: ''; display: inline-block; position: absolute; width: 100%; height: 50px; background: linear-gradient(transparent, var(--white-color)fffc3); left: 0; bottom: 0;}
.product-detail-section > .product-detail-area .left-section .product-details .thrid-section .product-information > ul > li{ font-size: 11px; margin-bottom: 4px; line-height: 1.6;}
.product-detail-section > .product-detail-area .left-section .product-details .thrid-section .product-information > ul > li::before{ content: '\f111'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 6px; color: #999; display: inline-block; margin: 0 5px 0 0; transform: translateY(-2px);}
.product-detail-section > .product-detail-area .left-section .product-details .thrid-section .product-information > a{ text-decoration: none; display: inline-block; text-align: center; width: 100%; padding: 10px 0; margin-top: 5px; border-radius: 5px; border: 1px solid var(--main-blue-txt); color: var(--main-blue-txt); font-weight: 600; background-color: var(--white-bg); transition: all .2s ease-out;}
.product-detail-section > .product-detail-area .left-section .product-details .thrid-section > span{ text-decoration: none; display: none; text-align: center; width: 100%; padding: 10px 0; margin-top: 5px; border: 1px solid #c1c1c1; border-left: none; border-right: none; color: #000000; font-weight: 500; background-color: var(--white-bg); font-size: 14px; transition: all .2s ease-out;}
.product-detail-section > .product-detail-area .left-section .product-details .thrid-section > span.active{ background-color: var(--main-blue-txt); color: var(--white-txt);}
.product-detail-section > .product-detail-area .left-section .product-details .thrid-section .product-information > a:hover{ background-color: var(--main-blue-txt); color: var(--white-txt); cursor: pointer; box-shadow: -3px 3px 6px 1px var(--main-shadow);}




.product-detail-section > .product-detail-area .right-section{ display: flex; flex-direction: column; gap: 20px; width: 100%;}
.product-detail-section > .product-detail-area .right-section .product-promotions{ background-color: #fef9f5; border: 1px solid #f1e4d9; box-shadow: 0 0 5px 1px #f5e0cc; border-radius: 5px;}
.product-detail-section > .product-detail-area .right-section .product-promotions .header{ padding: 10px; border-bottom: 1px solid #f1e4d9; font-size: 13px; font-weight: 600; color: #845e4f;}
.product-detail-section > .product-detail-area .right-section .product-promotions .body a{ display: flex; justify-content: space-between; align-items: center; padding: 10px; font-size: 12px; text-decoration: none; transition: all .2s ease;}
.product-detail-section > .product-detail-area .right-section .product-promotions .body a:hover{ box-shadow: inset 0 0 10px 1px #fadee4;}
.product-detail-section > .product-detail-area .right-section .product-promotions .body a > span{ color: #e55970;}
.product-detail-section > .product-detail-area .right-section .product-promotions .body a i{ color: #ed8095;}
.product-detail-section > .product-detail-area .right-section .product-promotions .body a:hover > i{ animation: left-right 1s ease infinite; color: var(--main-blue-txt);}

.product-detail-section > .product-detail-area .right-section .product-shop{ background-color: #fff; border: 1px solid #ddd; border-radius: 10px;}
.product-detail-section > .product-detail-area .right-section .product-shop .header{ padding: 10px; border-bottom: 1px solid #f1e4d9; font-size: 13px; font-weight: 600; color: #845e4f;}
.product-detail-section > .product-detail-area .right-section .product-shop .header > div{ margin-bottom: 5px;}
.product-detail-section > .product-detail-area .right-section .product-shop .header > div a{ text-decoration: none;}
.product-detail-section > .product-detail-area .right-section .product-shop .header > div .store-rating{ font-size: 10px; padding: 1px 5px; color: var(--white-txt); border-radius: 3px; margin-bottom: 5px;}
.product-detail-section > .product-detail-area .right-section .product-shop .body a{ display: flex; justify-content: space-between; align-items: center; padding: 10px; font-size: 12px; text-decoration: none; transition: all .2s ease;}
.product-detail-section > .product-detail-area .right-section .product-shop .body a:hover{ box-shadow: inset 0 0 10px 1px #fadee4;}
.product-detail-section > .product-detail-area .right-section .product-shop .body a > span > div{ color: #646464; font-weight: 600; margin-left: 15px;}
.product-detail-section > .product-detail-area .right-section .product-shop .body a > span{ color: #e55970;}
.product-detail-section > .product-detail-area .right-section .product-shop .body a i{ color: #ed8095;}
.product-detail-section > .product-detail-area .right-section .product-shop .body a:hover > i{ animation: left-right 1s ease infinite; color: var(--main-blue-txt);}

.product-detail-section > .product-detail-area .right-section .store-other-products{ border: 1px solid #ddd; border-radius: 10px; position: relative; overflow: hidden;}
.product-detail-section > .product-detail-area .right-section .store-other-products .arr{ opacity: 0; pointer-events: none; display: inline-block; transition: all .2s; width: calc(100% + 2px); height: 15px; background-color: var(--white-color); display: flex; align-items: center; justify-content: center; color: var(--main-blue-txt);}
.product-detail-section > .product-detail-area .right-section .store-other-products .arr:hover{ box-shadow: inset 0 0 10px 1px var(--main-shadow); cursor: pointer;}
.product-detail-section > .product-detail-area .right-section .store-other-products .arr.up-arr{ transform: translateY(7px) translateX(-1px);}
.product-detail-section > .product-detail-area .right-section .store-other-products .arr.up-arr.active{ opacity: 1; pointer-events: all;}
.product-detail-section > .product-detail-area .right-section .store-other-products .arr.down-arr{ bottom: 0; position: absolute; left: -1px;}
.product-detail-section > .product-detail-area .right-section .store-other-products .arr.down-arr.active{ opacity: 1; pointer-events: all; z-index: 2;}
.product-detail-section > .product-detail-area .right-section .store-other-products .header{ font-size: 12px; text-align: center; background-color: #fff; padding: 6px 0; border-bottom: 1px solid #f1e4d9; color: #845e4f; font-weight: 600;}
.product-detail-section > .product-detail-area .right-section .store-other-products .body{ max-height: 500px; padding: 5px 5px 10px; display: flex; flex-direction: column; gap: 7px; scroll-behavior: smooth; overflow-y: hidden;}
.product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product{ border: 1px solid #f5e0cc; height: 72px; border-radius: 5px; padding: 5px; display: flex; gap: 5px; transition: all .2s ease-out; text-decoration: none;}
.product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product:hover{ box-shadow: 0 0 0 1px #f5e0cc; cursor: pointer;}
.product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product:hover .img{ box-shadow: 0 0 5px 1px #f5e0cc;}
.product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product .img{ width: 40px; min-width: 40px; height: 60px; min-height: 60px; background-color: var(--white-bg); transition: all .2s; border: 1px solid #f5e0cc; border-radius: 5px; display: flex; align-items: center; justify-content: center; overflow: hidden;}
.product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product .img img{ width: 100%; transition: all .3s;}
.product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product .detail{ display: flex; flex-direction: column;}
.product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product .detail h4{ font-size: 9px; font-weight: 300; height: 24px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; color: var(--black-txt);}
.product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product .detail > b{ font-size: 9px; color: var(--black-txt); height: 12px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; word-break: break-all;}
.product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product .detail > div{ display: flex; justify-content: space-between; align-items: flex-end;}
.product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product .detail > div .stars-outer::before{ font-size: 10px;}
.product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product .detail > div .stars-inner::before{ font-size: 10px;}
.product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product .detail > div .prices{ display: flex; padding-bottom: 1px;}
.product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product .detail > div .prices b{ font-size: 10px; color: var(--main-blue-txt); font-weight: 600;}
.product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product .detail > div .prices span{ color: #999; font-size: 7px; text-decoration: line-through;}
/* .product-detail-section > .product-detail-area .right-section .store-other-products .body .empty-product{ background-color: rebeccapurple; margin: 0 auto;} */

.same-products{ width: 100%; max-width: 1200px; margin: 50px auto 0; padding: 0 10px; position: relative;}
.same-products h4{ font-size: 20px; color: #333; font-size: 600;}

.same-products .arr{ position: relative; display: inline-block; z-index: 4; color: #999; cursor: pointer; width: 34px; height: 80px; z-index: 2;}
/* .same-products .arr.left-arr{ left: -30px;} */
.same-products .arr.left-arr::before{ content: ''; right: -7px; position: absolute; top: 19px; transform: rotate(-52deg); display: inline-block; width: 50px; height: 2px; background-color: gray;}
.same-products .arr.left-arr::after{ content: ''; right: -8px; position: absolute; bottom: 20px; transform: rotate(52deg); display: inline-block; width: 50px; height: 2px; background-color: gray;}
/* .same-products .arr.right-arr{ right: -30px;} */
.same-products .arr.right-arr::before{ content: ''; right: -7px; position: absolute; top: 19px; transform: rotate(52deg); display: inline-block; width: 50px; height: 2px; background-color: gray;}
.same-products .arr.right-arr::after{ content: ''; right: -8px; position: absolute; bottom: 20px; transform: rotate(-52deg); display: inline-block; width: 50px; height: 2px; background-color: gray;}

.same-products .arr-div{ position: absolute; bottom: 0; width: 60px; height: 443px; z-index: 2; display: flex; align-items: center; justify-content: center;    }
/* .same-products .arr-div{ position: absolute; bottom: 0; background-color: var(--white-color)fffaa; width: 60px; height: 443px; z-index: 2; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 20px 1px rgba(0, 0, 0, 0.2);} */
.same-products .right-arr-div{ right: -50px;}
/* .same-products .right-arr-div{ right: 0;}
.same-products .left-arr-div{ left: 0;} */
.same-products .left-arr-div{ left: -50px;}
.same-products .products-container{ padding: 10px 0; scroll-behavior: smooth; transition: all .5s; overflow: hidden;}
.same-products .products-container .slider{ display: flex; transition: all .5s; transform: translateX(-235px);}
.same-products .products-container .product{ padding: 7px;}

.same-products .products-container .product{ width: 235px; cursor: pointer; transition: all .3s; min-width: 235px; height: 440px; transition: box-shadow .4s; border-radius: 5px; overflow: hidden; text-decoration: none;}
/* .same-products .products-container .product:hover{ cursor: pointer; box-shadow: 0 0 10px 1px #eeeeee;} */
.same-products .products-container .product .product-img{ width: 100%; border: 1px solid #f1f1f1; height: 320px; position: relative;     overflow: hidden; display: flex; align-items: center;}
.same-products .products-container .product-img img{ width: 100%; transition: transform .5s;}
/* .same-products .products-container .product:hover .product-img > img{ transform: scale(1.05);} */
.same-products .products-container .product-img .product-privileges{ position: absolute; left: 5px; top: 5px; z-index: 2; gap: 3px; display: flex; flex-direction: column;}
.same-products .products-container .product-privileges > img{ width: 50px;}
.same-products .products-container .product-privileges .privileges{ width: 55px; padding: 3px 5px; color: var(--white-txt); font-size: 11px; text-align: center; border-radius: 5px; line-height: .9;}
.same-products .products-container .product-privileges .speed-dlvry{ background-color: #04b622;}
.same-products .products-container .product-privileges .free-cargo{ background-color: #4e4e4e;}
.same-products .products-container .product-img .hearth-btn{ display: inline-block; background-color: var(--white-bg); color: #bebebe; width: 38px; height: 38px; position: absolute; right: 5px; top: 5px; border-radius: 50%; font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; box-shadow: -2px 2px 5px 1px #cecece; z-index: 2;}
.same-products .products-container .product-img .hearth-btn.active{ color: rgb(249, 11, 51); animation: hearth-effect-shadow 1.5s linear 1;}
.same-products .products-container .product-img .hearth-btn.active i{ animation: hearth-effect 1.5s linear 1; display: inline-block;}
.same-products .products-container .product-img .color-options{ position: absolute; right: 5px; bottom: 5px; background-color: var(--white-bg); padding: 4px 4px; border-radius: 2px; display: flex; align-items: center; box-shadow: -1px 1px 3px 1px #cecece; z-index: 2; pointer-events: none;}
.same-products .products-container .color-options span:nth-child(1),.color-options span:nth-child(2){ display: inline-block; width: 15px; height: 15px; border-radius: 50%; border: 1px solid white;}
.same-products .products-container .color-options span:nth-child(1){ background: linear-gradient(90deg, blue, rgb(112, 216, 251), cyan); z-index: 2;}
.same-products .products-container .color-options span:nth-child(2){ background: linear-gradient(90deg, rgb(255, 139, 201), rgb(189, 50, 244), rgb(254, 38, 81)); margin-left: -5px;}
.same-products .products-container .color-options span:nth-child(3){ font-size: 14px; margin-left: 4px; margin-top: -1px;}
.same-products .products-container .product-img .wide-body{ position: absolute; left: 5px; bottom: 5px; font-size: 8px; color: #ededed; font-weight: 600; padding: 3px 5px; background: linear-gradient(90deg, rgb(233, 89, 0), var(--main-blue-txt),  rgb(255, 187, 0)); border-radius: 3px; letter-spacing: .5px; z-index: 2;}
.same-products .products-container .product .product-detail{ padding: 10px;}
.same-products .products-container .product-detail > p{ overflow: hidden; font-size: 11px; height: 32px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: -15px; color: #666; margin: 2px 0;}
.same-products .products-container .product-detail > p b{ color: #333;}
.same-products .products-container .product-performance > img{ width: 12px;}
.same-products .products-container .stars-outer{ position: relative; display: inline-block;}
.same-products .products-container .stars-inner{ position: absolute; top: 0; left: 0; white-space: nowrap; overflow: hidden; width: 0;}
.same-products .products-container .stars-outer::before{ content: '\f005 \f005 \f005 \f005 \f005'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 10px; color: #ccc;}
.same-products .products-container .stars-inner::before{ content: '\f005 \f005 \f005 \f005 \f005'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 10px; color: var(--star-yellow);}
.same-products .products-container .product-performance .comment-count{ font-size: 11px; margin: 0 3px; color: #777;}
.same-products .products-container .product-detail .product-price-area{ width: 100%; height: 31px; display: flex; flex-direction: column; justify-content: end;}
.same-products .products-container .product-price-area > b{ color: var(--black-color); font-size: 10px; font-weight: 400; margin-bottom: 2px; display: inline-block;}
.same-products .products-container .product-price-area > div{ line-height: .9;}
.same-products .products-container .product-price-area > div .current-price{ font-weight: 600; color: var(--main-blue-txt); font-size: 16px;}
.same-products .products-container .product-price-area > div .last-price{ font-weight: 400; font-size: 11px; color: gray; text-decoration: line-through;}
.same-products .products-container .product-detail .buy-lot-pay-less{ border: 1px solid var(--main-blue-txt); color: var(--main-blue-txt); background-color: var(--white-bg); font-weight: 600; font-size: 11px; letter-spacing: .5px; padding: 1px 5px; margin-top: 10px; border-radius: 3px;}


.product-evaluation-area{ width: 100%; max-width: 1200px; margin: 50px auto 0; padding: 0 10px; position: relative; background-color: var(--white-bg);}
.product-evaluation-area h4{ font-size: 20px; color: #333; font-size: 600; margin-bottom: 15px;}
.product-evaluation-area > div{ border: 1px solid #e0e0e0; border-radius: 10px; box-shadow: 0 0 10px 1px #f1f1f1;}
.product-evaluation-area > div > .header{ display: flex; justify-content: space-between; align-items: center; height: 70px; padding: 0 30px; border-bottom: 1px solid #e0e0e0;}
.product-evaluation-area > div > .header .evaluation{ font-size: 13px; display: flex; gap: 8px; align-items: flex-end;}
.product-evaluation-area > div > .header .star{ font-weight: 700; font-size: 22px; display: flex; gap: 7px;}
.product-evaluation-area > div > .header .star .stars-inner::before, .product-evaluation-area > div .header .star .stars-outer::before{ font-size: 18px;}
.product-evaluation-area > div > .body{ height: auto; padding: 20px; padding-bottom: 10px;}
.product-evaluation-area > div > .body.active{ padding-bottom: 80px;}
.product-evaluation-area > div .body .notice{ width: 100%; display: flex; gap: 10px; justify-content: center; align-items: center; height: 45px; border-radius: 7px; background-color: #f1f1f1;}
.product-evaluation-area > div .body .notice .icon{ width: 30px; height: 30px; border-radius: 50%; background-color: var(--main-blue-txt); color: var(--white-txt); display: flex; align-items: center; justify-content: center; font-size: 13px;}
.product-evaluation-area > div .body .notice .txt{ font-weight: 600; font-size: 15px;}
.product-evaluation-area > div .body .user-comments{ margin-top: 10px; height: auto; transition: all .4s ease-in-out; overflow: hidden;}
.product-evaluation-area > div .body .user-comments .comment{ padding: 10px 0; border-bottom: 1px solid #ddd; /*background-color: rgba(102, 51, 153, 0.116);*/}
.product-evaluation-area > div .body .user-comments .comment .body{ display: flex; gap: 8px;}
.product-evaluation-area > div .body .user-comments .comment .body p{ font-size: 13px; line-height: 2;}
.product-evaluation-area > div .body .user-comments .comment .footer{ display: flex; justify-content: space-between; font-size: 11px; margin-top: 12px; color: #666;}
.product-evaluation-area > div .body .user-comments .comment .footer > div{ display: flex; gap: 5px; align-items: center;}
.product-evaluation-area > div .body .user-comments .comment .footer .bought{ color: #00a31b; font-weight: 600; display: flex; align-items: center; gap: 2px;}
.product-evaluation-area > div .body .user-comments .comment .footer .bought::before{ content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; display: inline-block; width: 15px; height: 15px; border-radius: 50%; background-color: #00a31b; color: var(--white-txt); display: flex; align-items: center; justify-content: center; font-size: 8px;}
.product-evaluation-area > div .body .user-comments .comment .footer .like{ position: relative;}
.product-evaluation-area > div .body .user-comments .comment .footer .like .complaint{ pointer-events: none; opacity: 0; transform: translate(15px, 15px); transition: all .3s; position: absolute; background-color: var(--white-bg); top: -24px; font-size: 12px; right: 10px; padding: 5px 15px 5px 7px; border-radius: 4px; color: #660000; cursor: pointer; box-shadow: 0 0 5px 1px #d9d9d9;}
.product-evaluation-area > div .body .user-comments .comment .footer .like .complaint.active{ pointer-events: all; opacity: 1; transform: translate(0,0);}
.product-evaluation-area > div .body .user-comments .comment .footer .like > i{ display: inline-block; font-size: 20px; transform: translateY(2px); margin-left: 17px; cursor: pointer;}
.product-evaluation-area > div .body > button{ opacity: 0; pointer-events: none; transition: all .2s; width: 90%; padding: 10px 0; margin-top: 5px; border-radius: 5px; border: 1px solid var(--main-blue-txt); color: var(--main-blue-txt); font-weight: 600; z-index: 2; background-color: var(--white-bg); transition: all .2s ease-out; position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);}
.product-evaluation-area > div .body > button.active{ opacity: 1 ; pointer-events: all;}
.product-evaluation-area > div .body > button.click{ background-color: var(--main-blue-txt); color: var(--white-txt); cursor: pointer; box-shadow: -3px 3px 6px 1px var(--main-shadow);}
.product-evaluation-area > div .body > button.web:hover{ background-color: var(--main-blue-txt); color: var(--white-txt); cursor: pointer; box-shadow: -3px 3px 6px 1px var(--main-shadow);}
.product-evaluation-area > div > .body.active::after{ content: ''; display: inline-block; width: 100%;  height: 80px; background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); position: absolute; bottom: 1px; left: 0; border-radius: 0 0 10px 10px;}


@keyframes left-right {
    0%{ transform: translateX(0px);}
    25%{ transform: translateX(-1px);}
    50%{ transform: translateX(1px);}
    75%{ transform: translateX(-1px);}
    100%{ transform: translateX(0px);}
}



.big-img-container{ opacity: 0; pointer-events: none; position: fixed; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.43); backdrop-filter: blur(2px); z-index: 30; display: flex; align-items: center; justify-content: center; transition: all .2s;}
.big-img-container.active{ opacity: 1; pointer-events: all;}
.big-img{ width: 90%; max-width: 420px; height: 650px; border: 1px solid #f1f1f1; background-color: var(--white-bg); position: relative; overflow: hidden; display: none; align-items: center; justify-content: center;}
.big-img.active{ display: flex; animation: imgEffect .2s ease 1;}
/* .big-img .img{ width: 100%; height: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center;} */
.big-img .close-btn{ color: #828282; font-size: 35px; line-height: 0.4; height: 25px; position: absolute; right: 10px; top: 10px;}
.big-img .close-btn:hover{ color: #660000; cursor: pointer;}
.big-img .arr{ position: absolute; height: 104px; width: 35px; cursor: pointer;}
.big-img .arr::before, .big-img .arr::after{ content: ''; display: inline-block; width: 3px; height: 60px; background-color: #505050;}
.big-img .arr:hover::before, .big-img .arr:hover::after{ background-color: var(--black-txt);}
.big-img .arr::before{ transform: rotate(-30deg) translate(10px, 10px); border-radius: 7px 0 0 0; position: absolute; bottom: 0;}
.big-img .arr::after{ transform: rotate(30deg) translate(10px, -10px); border-radius: 0 0 0 7px;}
.big-img .arr.left-arr{ left: 10px; transform: scale(.6);}
.big-img .arr.right-arr{ right: 10px; transform: rotateY(180deg) scale(.6);}
.big-img  img{ width: 100%;}


@keyframes imgEffect {
    0%{ transform: translateY(10px); opacity: .5;}
    100%{ transform: translateY(0); opacity: 1;}

}



.product-information-area{ width: 100%; max-width: 1200px; margin: 50px auto 0; padding: 0 10px;}
.product-information-area h4{ font-size: 20px; color: #333; font-size: 600; margin-bottom: 15px;}
.product-information-area .product-info-area{ border: 1px solid #e0e0e0; border-radius: 10px; box-shadow: 0 0 10px 1px #f1f1f1; padding: 30px 20px;}
.product-information-area .product-info-area .product-info-img{ display: flex; gap: 20px; border-bottom: 1px solid #dfdfdf; padding-bottom: 20px;}
.product-information-area .product-info-area .product-info-img .product-img{ min-width: 200px; width: 200px; overflow: hidden; height: 300px; background-color: var(--white-bg); border: 1px solid #f1f1f1; display: flex; align-items: center; justify-content: center;}
.product-information-area .product-info-area .product-info-img .product-img img{ width: 100%;}
.product-information-area .product-info-area .product-info-img .product-detail{ }
.product-information-area .product-info-area .product-info-img .product-detail h5{ margin-bottom: 15px; font-size: 16px;}
.product-information-area .product-info-area .product-info-img .product-detail ul{ list-style: none;}
.product-information-area .product-info-area .product-info-img .product-detail ul li{ font-size: 13px !important; margin-bottom: 12px;}
.product-information-area .product-info-area .product-info-img .product-detail ul li::before{ content: '\f111'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 6px; color: #bebebe; display: inline-block; margin: 0 5px 0 0; transform: translateY(-2px);}
.product-information-area .product-info-area .product-features{}
.product-information-area .product-info-area .product-features h4{ font-size: 16px; margin-top: 30px; font-weight: 700;}
.product-information-area .product-info-area .product-features > div{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;}
.product-information-area .product-info-area .product-features > div > div{ display: flex; justify-content: space-between; background-color: #f6f6f6; padding: 10px; font-size: 13px; border-radius: 10px; text-align: center;}
.product-information-area .product-info-area .product-features > div > p{ background-color: #f6f6f6; font-weight: 600; padding: 10px; font-size: 13px; border-radius: 10px; text-align: center;}



.mobile-store-area{ display: none; grid-template-columns: 1fr .9fr; margin-top: 20px; background-color: var(--white-bg); align-items: center; padding: 10px 15px;}
.mobile-store-area > div{ }
.mobile-store-area > div > .store-name{ display: flex; align-items: center;}
.mobile-store-area > div > .store-name h3{ font-size: 14px;}
.mobile-store-area > div > .store-name span{ padding: 1px 5px; font-size: 10px; border-radius: 3px; margin-left: 6px; color: var(--white-txt);}
.mobile-store-area > div > .store-follower{ font-size: 11px; margin-bottom: 3px;}
.mobile-store-area > a { font-weight: 600; font-size: 15px; color: var(--main-blue-txt); text-decoration: none;}



#go-back-from-detail{ display: none; color: var(--black-txt); margin: 0 10px 0 10px;}
#go-back-from-detail i{ font-size: 25px;}


/* LOGİN CSS */
section.user-login{ display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 50px 10px; background-color: #fafafa;}
section.user-login > .txt{ width: 100%; max-width: 450px; text-align: center; margin-bottom: 20px;}
section.user-login > .txt h3{ font-size: 32px; font-weight: 600; margin-bottom: 5px;}
section.user-login > .txt p{ text-align: center; font-size: 15px;}
section.user-login > .txt p span{ color: #e11441; font-weight: 500;}
section.user-login > .buttons{ position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; height: 40px; width: 100%; max-width: 450px;}
section.user-login > .buttons a{ background-color: #efefef; text-decoration: none; width: 100%; height: 100%; border: none; font-size: 14px; font-weight: 500; color: #555; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px;}
section.user-login.login > .buttons a.login{ background-color: var(--white-bg); border: 1px solid #d3d3d3; border-bottom: none; color: #e11441; pointer-events: none; box-shadow: 0 1px 0 0 white;}
section.user-login.login > .forms form.login-form{ display: flex;}
section.user-login.register > .buttons a.register{ background-color: var(--white-bg); border: 1px solid #d3d3d3; border-bottom: none; color: #e11441; pointer-events: none; box-shadow: 0 1px 0 0 white;}
section.user-login.register > .forms form.register-form{ display: flex;}
section.user-login > .forms{ padding-top: 20px; width: 100%; max-width: 450px; padding-bottom: 20px; border-radius: 0 0 3px 3px; background-color: var(--white-bg); border: 1px solid #d3d3d3;}
section.user-login > .forms h1{ text-align: center; font-weight: 600; font-size: 28px; margin: 20px 0 20px; color: #e11441;}
section.user-login > .forms form{ display: none; padding: 0 30px; align-items: center; justify-content: center; flex-direction: column;}
section.user-login > .forms form.reset-password{ display: flex;}
section.user-login > .forms form input:not([type='checkbox']):not([type='radio']){ transition: all .2s ease; width: 100%; height: 40px; font-size: 14px; margin-bottom: 12px; /*background-color: #f9f9f9; border: 1px solid #cecece;*/ background-color: #f4f4f4; border: 1px solid #bcbcbc; border-radius: 3px; padding: 0 10px;}
section.user-login > .forms form input:not([type='checkbox']):not([type='radio'])::placeholder{ opacity: .6;}
section.user-login > .forms form input.register-password{ margin-bottom: 0px !important;}
section.user-login > .forms form input:not([type='checkbox']):not([type='radio']):focus-visible{ box-shadow: 0 0 0 3px #ffb9c8; outline: none; border-color: #ffa7ba; background-color: var(--white-bg);}
section.user-login > .forms form input[type="checkbox"]{ position: absolute; cursor: pointer; height: 1px; width: 16px; transform: translateY(13px) !important;}
section.user-login > .forms form input[type="checkbox"]#remember{ transform: translateY(10px) !important;}
section.user-login > .forms form input[type="checkbox"]::before{ content: ''; position: absolute; left: 0; top: 50%; transform: translateY(calc(-50% + 0px)) !important; display: inline-block; border: 1px solid #e11441; width: 15px; height: 15px; border-radius: 3px;}
section.user-login > .forms form input[type="checkbox"]:checked::before{ content: '\f00c'; font-family: 'FONT AWESOME 5 FREE'; font-weight: 900; color: var(--white-txt); background-color: #e11441; display: flex; align-items: center; justify-content: center; position: absolute; left: 0; top: 0; border: 1px solid #e11441; width: 15px; height: 15px;}
section.user-login > .forms form .password-control{ width: 100%;}
section.user-login > .forms form .password-control:not(.new){ margin-bottom: 15px;}
section.user-login > .forms form .password-control small{ font-size: 11px; color: #333;}
section.user-login > .forms form .password-control > div{ display: none; align-items: center; justify-content: space-between; margin-top: 8px;}
section.user-login > .forms form .password-control.active > div{ display: flex;}
section.user-login > .forms form .password-control > div span{ display: none; width: 40px; font-size: 12px; font-weight: 700;}
section.user-login > .forms form .password-control.low > div span.low-txt{ display: inline-block; color: #7e0606;}
section.user-login > .forms form .password-control.mid > div span.mid-txt{ display: inline-block; color: #a66306;}
section.user-login > .forms form .password-control.high > div span.high-txt{ display: inline-block; color: #019301;}
section.user-login > .forms form .password-control > div .bar{ position: relative; width: 85%; height: 6px; background-color: #ececec; border-radius: 10px;}
section.user-login > .forms form .password-control > div .bar::before{ content: ''; transition: all .35s linear; position: absolute; left: 0; top: 0; width: 0; z-index: 2; height: 6px; border-radius: 10px;}
section.user-login > .forms form .password-control.low > div .bar::before{ width: 20%; background-color: #d90707;}
section.user-login > .forms form .password-control.mid > div .bar::before{ width: 50%; background-color: #c29c02;}
section.user-login > .forms form .password-control.high > div .bar::before{ width: 100%; background-color: #1fc202;}

section.user-login > .forms form > div{ width: 100%; position: relative;}
section.user-login > .forms form > div > input[type="password"]{ padding-right: 40px !important;}
section.user-login > .forms form > div > input.white{ background-color: var(--white-bg) !important;}
section.user-login > .forms form > div > input + i{ position: absolute; right: 12px; top: 12px; cursor: pointer; color: #666;}
section.user-login > .forms form > div > i.fa-eye ~ input { background-color: var(--black-txt) !important;}
section.user-login > .forms form > div > input#new-pass{ margin-bottom: 25px;}
section.user-login > .forms form > div.miss > input{ border-color: #930000 !important; background-color: #fffcfc !important; color: red !important;}
section.user-login > .forms form > div.miss > input::placeholder{ color: red; opacity: .5 !important;}
section.user-login > .forms form > div.miss::after{ margin-left: 1px; font-weight: 500; display: inline-block; position: absolute; left: 0; bottom: 8px; font-size: 12px; color: red;}
section.user-login > .forms form > div.miss.txt::after{ content: 'Şifrede Harf Kullanmak Zorunludur';}
section.user-login > .forms form > div.miss.num::after{ content: 'Şifrede Rakam Kullanmak Zorunludur';}
section.user-login > .forms form > div.miss.char::after{ content: 'Şifreniz En Az 7 Karakter Olmalıdır';}
section.user-login > .forms form > div.not-match > input{ border-color: #930000 !important; background-color: #fffcfc !important;}
section.user-login > .forms form > div.not-match > input::placeholder{ color: red; opacity: .5 !important;}
section.user-login > .forms form > div.not-match::after{ content: 'Girilen şifreler Uyuşmuyor'; margin-left: 1px; font-weight: 500; display: inline-block; position: absolute; left: 0; bottom: -5px; font-size: 12px; color: red;}

section.user-login > .forms form p{ font-size: 12px; color: #222; font-weight: 400; text-align: left; width: 100%; margin-bottom: 3px;}
section.user-login > .forms form p b{ font-size: 12px; color: #222; font-weight: 400; text-decoration: underline; cursor: pointer;}
section.user-login > .forms form > .genders{ display: grid; grid-template-columns: 1fr 1fr; width: 100%; height: 35px; outline: 1px solid #cecece; border-radius: 3px;}
section.user-login > .forms form > .genders input{ width: 0px; height: 0px; opacity: 0; position: absolute;}
section.user-login > .forms form > .genders input#gender-man:checked + label{ background-color: var(--white-bg); color: #e11441; outline: 2px solid #e11441; border-radius: 3px; position: relative; z-index: 2;}
section.user-login > .forms form > .genders input#gender-woman:checked + label{ background-color: var(--white-bg); color: #e11441; outline: 2px solid #e11441; border-radius: 3px; position: relative; z-index: 2;}
section.user-login > .forms form > .genders label{ transition: all 0s ease; cursor: pointer; display: inline-block; font-size: 13px; height: 100%; display: flex; align-items: center; justify-content: center; background-color: #f9f9f9;}
section.user-login > .forms form > .genders label:last-child{ border-left: 1px solid #cecece;}
section.user-login > .forms form > .little-buttons{ display: flex; width: 100%; margin: 3px 0; gap: 3px;}
section.user-login > .forms form > .little-buttons > a{ font-size: 13px; color: var(--black-txt); text-decoration: none;}
section.user-login > .forms form > .little-buttons > a:hover{ text-decoration: underline;}
section.user-login > .forms form > .little-buttons > input{ transform: translateY(3.5px);}
section.user-login > .forms form > .little-buttons > label{ font-size: 12px; user-select: none; color: #333; padding-left: 22px;}
section.user-login > .forms form > .little-buttons > label a{ color: #333;}
section.user-login > .forms form > .forget-buttons{ display: flex; justify-content: space-between; width: 100%; margin: 3px 0; gap: 3px;}
section.user-login > .forms form > .forget-buttons > div{ font-size: 13px;}
section.user-login > .forms form > .forget-buttons > a{ font-size: 13px; color: var(--black-txt); text-decoration: none;}
section.user-login > .forms form > .forget-buttons > a:hover{ text-decoration: underline;}
section.user-login > .forms form > .forget-buttons > div > input{ transform: translateY(3.5px);}
section.user-login > .forms form > .forget-buttons > div > input[type="checkbox"]::before{ transform: translateY(calc(-50% + 5px)); font-size: 10px; width: 12px; height: 12px;}
section.user-login > .forms form > .forget-buttons > div > label{ font-size: 15px; user-select: none; color: #333; padding-left: 18px; user-select: none;}
section.user-login > .forms form > .forget-buttons > div > label a{ color: #333;}
section.user-login > .forms form > .comment{ width: 100%; margin-bottom: 10px;}
section.user-login > .forms form > .comment h5{ font-size: 13px; margin-bottom: 10px;}
section.user-login > .forms form > .comment ul{ list-style: none;}
section.user-login > .forms form > .comment ul li{ font-size: 13px; display: flex; align-items: center; gap: 5px; margin-bottom: 3px;}
section.user-login > .forms form > .comment ul li::before{ content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background-color: #e11441;}
section.user-login > .forms form .login-btn{ margin-bottom: 5px; transition: all .2s ease; width: 100%; height: 40px; background-color: #e6254f; color: var(--white-txt); font-weight: 600; font-size: 17px; margin-top: 15px; border-radius: 3px; border: none;}
section.user-login > .forms form .login-btn:hover{ background-color: #e11441; cursor: pointer; box-shadow: -2px 2px 5px 1px #ddd;}
section.user-login > .forms form b{ font-weight: 700; color: #8c8c8c; margin: 10px 0;}
section.user-login > .forms form .social-btn{ text-decoration: none; font-size: 14px; display: inline-block; width: 100%; font-weight: 600; overflow: hidden; position: relative; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 3px;}
section.user-login > .forms form .facebook{ background-color: #0b5cd6; color: var(--white-txt); margin-bottom: 10px; margin-top: 10px;}
section.user-login > .forms form .facebook i{ width: 40px; height: 40px; position: absolute; left: 0; top: 0; color: var(--white-txt); background-color: #074eb8; font-size: 19px; display: flex; align-items: center; justify-content: center;}
section.user-login > .forms form .google{ color: var(--black-txt); background-color: #f1f1f1; border: 1px solid #e4e4e4;}
section.user-login > .forms form .google .icon{ width: 40px; height: 40px; position: absolute; left: 0; top: 0; color: var(--white-txt); background-color: #e4e4e4; font-size: 19px; display: flex; align-items: center; justify-content: center;}
section.user-login > .forms form .google .icon img{ height: 20px;}
section.user-login > .forms form .back{ transition: all .2s ease; border: 1px solid black; color: var(--black-txt); margin-top: 5px;}
section.user-login > .forms form .back:hover{ border-color: #e11441; color: #e11441; }
section.user-login > .forms form .send-again{ background-color: #e8e8e8; color: var(--white-txt); color: #555; border: 1px solid #999; pointer-events: none; margin-top: 5px;}
section.user-login > .forms form .send-again > span{ margin-left: 5px;}
section.user-login > .forms form .send-again.active{ cursor: pointer; transition: all .2s ease; border: 1px solid #e11441; background-color: var(--white-bg); pointer-events: all; color: #e11441;}
section.user-login > .forms form .send-again.active:hover{ background-color: #e11441; color: var(--white-txt); }
section.user-login > .forms form .send-again.active > span{ display: none;}
section.user-login > .forms form .line{ width: 100%; height: .5px; background-color: #888; margin: 10px 0 5px;}
section.user-login > .forms form > span{ font-size: 13px; margin-top: 20px;}
section.user-login > .forms form > span a{ text-decoration: none; color: #e11441; font-weight: 600; cursor: pointer;}
section.user-login > .forms form > span a:hover{ text-decoration: underline;}



/* Mobile CSS */
.evaluation-area span.arr{ display: none;}
.mobile-fav{ display: none;}
.mobile-fav i{ font-size: 19px; color: #acacac; transition: all .2s;}
.mobile-fav.active i{ color: #e72536;}
.previous-page{ display: none;}
.third-mobile{ display: none;}
.product-information-area > span{ display: none;}
.product-detail-section > .product-detail-area .left-section .product-img-area .product-main-img .main-left-arr,.product-detail-section > .product-detail-area .left-section .product-img-area .product-main-img .main-right-arr{ display: none;}

.product-detail-section .mobile-add-basket-area{ display: none; width: 100%; height: 80px; background-color: var(--white-bg); border-top: 2px solid #e1e1e1; box-shadow: 0 0 7px 1px #d3d3d3; position: fixed; bottom: 0; left: 0; z-index: 10; align-items: center; justify-content: space-between; padding: 0 10px 0 15px;}
.product-detail-section .mobile-add-basket-area > span{ color: var(--main-blue-txt); font-weight: 400;}
.product-detail-section .mobile-add-basket-area > span > span{ font-weight: 600;}
.product-detail-section .mobile-add-basket-area > button{ width: 200px; height: 45px; background-color: var(--main-blue-txt); color: var(--white-txt); font-size: 16px; border: 1px solid var(--main-blue-txt); border-radius: 7px;}

@media screen and (max-width: 449px){
    .product-detail-section > .product-route{ padding-bottom: 0 !important;}
}

@media screen and (max-width: 768px){
    .product-detail-section .mobile-add-basket-area{ display: flex;}

    .navbar .navbar-container .navbar-top > div{ display: none;}
    .navbar .navbar-container .navbar-detail{ padding-bottom: 75px; background-color: var(--white-color);}
    .navbar .navbar-container .navbar-detail .navbar-buttons > div a span{ display: none;}
    .navbar .navbar-container .navbar-detail .navbar-buttons > div.my-basket > div{ display: none;}
    .previous-page{ display: inline-block;}
    /* .open-mobile-nav{ display: none !important;} */

    .product-detail-section{ padding: 0 0 200px; background-color: #efefef;}
    .product-detail-section > .product-route{ white-space: nowrap; padding: 0; background-color: var(--white-bg); padding: 17px 10px; overflow-x: auto; margin-bottom: 0; margin-top: 0px;}
    .product-detail-section > .product-route::-webkit-scrollbar{ background-color: var(--white-bg);}
    .product-detail-section > .product-route::-webkit-scrollbar-thumb{ background-color: var(--white-bg);}
    .product-detail-section > .product-detail-area .left-section{ background-color: var(--white-bg);}
    .product-detail-section > .product-detail-area .left-section{ flex-direction: column; align-items: center; justify-content: center; padding: 0; border-radius: 0; border: none;}
    .product-detail-section > .product-detail-area .left-section .product-img-area{ width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;}
    .product-detail-section > .product-detail-area .left-section .product-img-area .product-main-img { height: 405px; max-width: 388px; width: 100%; overflow: hidden; position: relative; border-radius: 0;}
    .product-detail-section > .product-detail-area .left-section .product-img-area .product-main-img img{ width: 70%; transition: all .5s ease; position: absolute;}
    .product-detail-section > .product-detail-area .left-section .product-img-area .product-main-img .main-left-arr{ left: 0;}
    .product-detail-section > .product-detail-area .left-section .product-img-area .product-main-img .main-right-arr{ right: 0;}
    .product-detail-section > .product-detail-area .left-section .product-img-area .product-main-img .main-left-arr,.product-detail-section > .product-detail-area .left-section .product-img-area .product-main-img .main-right-arr{
        display: flex; align-items: center; justify-content: center; background-color: var(--white-bg); color: var(--black-txt); font-size: 35px; width: 65px; height: 100%; display: flex; align-items: center; justify-content: center; z-index: 2; position: absolute;
    }
    .product-detail-section > .product-detail-area .left-section .product-img-area .product-other-imgs{ width: 100%;}
    .product-detail-section > .product-detail-area .left-section .product-details{ background-color: #efefef !important;}
    .product-detail-section > .product-detail-area .left-section .product-details .first-section .product-name{ padding: 0 15px;}
    .product-detail-section > .product-detail-area .left-section .product-details .first-section .product-name a{ font-size: 15px;}
    .product-detail-section > .product-detail-area .left-section .product-details .first-section .product-name span{ font-size: 15px;}

    .product-detail-section > .product-detail-area .left-section .product-details .first-section .prices{ display: none;}
    .product-detail-section > .product-detail-area .left-section .product-details .first-section .out-of-stock{ display: none;}
    .evaluation-area span.line{ display: none;}
    .product-detail-section > .product-detail-area .left-section .product-details .first-section .evaluation-area{ padding: 0 15px; order: 0;}
    .product-detail-section > .product-detail-area .left-section .product-details .first-section .evaluation-area a.questions{ display: none;}
    .product-detail-section > .product-detail-area .left-section .product-details .first-section .evaluation-area a.evaluation::after{ content: '>';}
    .product-detail-section > .product-detail-area .left-section .product-details .first-section .seller{ border-top: 1px solid #e4e4e4; margin-top: 10px; order: 1; padding: 10px 15px;}
    .product-detail-section > .product-detail-area .left-section .product-details .first-section .seller a{ font-size: 14px; color: #0e0e95;}
    .product-detail-section > .product-detail-area .left-section .product-details .first-section .seller .store-rating{ padding: 1px 5px; border-radius: 3px; margin-left: 6px; color: var(--white-txt);}
    .product-detail-section > .product-detail-area .left-section .product-details .first-section .collection{ display: none;}
    .product-detail-section > .product-detail-area .left-section .product-details .first-section .cargo{ order: 2; border-top: 1px solid #e4e4e4; padding: 10px 15px; font-size: 12px; display: inline-block;}

    .mobile-fav{ display: block; margin-left: auto;}
    .product-detail-section > .product-detail-area .left-section .product-details{ background-color: #efefef; width: 100%;}
    .product-detail-section > .product-detail-area .left-section .product-details .first-section{ background-color: var(--white-bg); padding-bottom: 0; margin-bottom: 20px;}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section{ background-color: #efefef;}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes{ margin-top: 20px; margin-bottom: 20px; display: flex; flex-direction: column; padding-bottom: 0;}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes > span{background-color: var(--white-bg); padding: 5px 15px; margin: 0; width: 100%;}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons{ display: none;}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .little-info{ display: none;}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes > span{ padding: 9px 17px;}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .header{ background-color: var(--white-bg);}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes{background-color: var(--white-bg);}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .header > span{ padding-right: 15px;}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .all-sizes{ padding: 10px 15px 20px; width: 100%; overflow-x: auto; order: 12;}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .small-imgs{ width: 100vw; gap: 20px; padding: 5px 15px 20px; background-color: var(--white-bg); display: flex !important; flex-wrap: nowrap !important; overflow-x: auto;}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .small-imgs > div { min-width: 60px; width: 60px; height: 88px; min-height: 88px; border-radius: 1px;}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section h5{ background-color: var(--white-bg); margin: 0; padding: 10px 15px; transform: translateY(1px);}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .right-arr.active{ display: none;}
    .product-detail-section > .product-detail-area .right-section .product-shop{ display: none;}

    .product-detail-section > .product-detail-area .left-section .product-details .thrid-section{ padding-bottom: 0 !important;}
    .product-detail-section > .product-detail-area .left-section .product-details .thrid-section .product-information > a{ display: none;}
    .product-detail-section > .product-detail-area .left-section .product-details .thrid-section .product-information > ul{ padding: 0 15px;}
    .product-detail-section > .product-detail-area .left-section .product-details .thrid-section .product-information > ul > li::before{ color: var(--main-blue-txt);}
    .product-detail-section > .product-detail-area .left-section .product-details .thrid-section > span{ display: inline-block;}
    .product-evaluation-area{ padding: 0; order: 7;}
    .product-detail-section > .product-detail-area .left-section .product-details .thrid-section{ background-color: var(--white-bg); margin: 0; padding: 10px 0;}
    .product-detail-section > .product-detail-area .left-section .product-details .thrid-section > h5{ padding: 0 15px; font-size: 13px;}
    .product-detail-section > .product-detail-area .left-section .product-details .thrid-section > h5.third-web{ display: none;}
    .third-mobile{ display: block;}

    .product-detail-section > .product-detail-area .right-section{ display: none;}

    .same-products{ order: 8; background-color: var(--white-bg); padding: 10px 0;}
    .same-products > h4{ font-size: 16px; padding: 0 15px;}
    .same-products .left-arr-div{ display: none;}
    .same-products .right-arr-div{ display: none;}
    .same-products .products-container{ margin-top: 0;}
    .same-products .products-container .slider{ padding: 0 10px; transform: translateX(0); overflow-x: auto;}
    .same-products .products-container .product{ width: 160px; min-width: 160px; height: 350px;}
    .same-products .products-container .product .product-img{ height: 210px;}
    .same-products .products-container .product .product-detail{ padding: 5px 0;}

    .product-information-area{ padding: 0; background-color: var(--white-bg); margin-top: 20px; position: relative;}
    .product-information-area > h4{ display: none;}
    .product-information-area .product-info-area{ position: relative; border-radius: 0; border-right: none; border-left: none; border-bottom: none; padding: 0 15px 10px; overflow: hidden; transition: all .2s ease-in-out;}
    .product-information-area .product-info-area::before{ content: '';display: inline-block;position: absolute;width: 100%;height: 50px;background: linear-gradient(transparent, #e8e8e8c3);left: 0;bottom: 0;}
    .product-information-area > span{ text-decoration: none; display: inline-block; text-align: center; width: 100%; padding: 10px 0; border: 1px solid #c1c1c1; border-left: none; border-right: none; color: #000000; font-weight: 500; background-color: var(--white-bg); font-size: 14px; transition: all .2s ease-out; cursor: pointer;}
    .product-information-area > span.active{ background-color: var(--main-blue-txt); color: var(--white-txt);}
    .product-information-area .product-info-area .product-features h4{ margin-top: 25px; margin-bottom: 3px; font-size: 13px; color: var(--black-txt);}
    .product-information-area .product-info-area .product-info-img{ display: none;}
    .product-information-area .product-info-area .product-features > div{ grid-template-columns: 1fr; gap: 5px;}
    .product-information-area .product-info-area .product-features > div > div{ display: grid; grid-template-columns: 1fr 1fr; text-align: start; background-color: var(--white-bg); border-bottom: 1px solid #e9e9e9; border-radius: 0; padding: 10px 0;}
    .product-information-area .product-info-area .product-features > .metarial > div span{ display: none;}
    .product-information-area .product-info-area .product-features > .metarial > div b{ font-weight: 500 !important; color: #181818;}
    .product-information-area .product-info-area .product-features > div > p{ background-color: var(--white-bg); border-radius: 0; border-bottom: 1px solid #e9e9e9; text-align: start; padding: 10px 0; font-weight: 400; color: #181818;}
    /* .product-information-area .product-info-area .product-features > div > div > span{} */
    /* .product-information-area .product-info-area .product-features > div > div > b{color: #858585; font-weight: 400;} */

    .product-evaluation-area{ margin-top: 20px;}
    .product-evaluation-area h4{ padding: 0 15px; font-size: 15px; margin: 10px 0; text-align: center; color: var(--black-txt);}
    .product-evaluation-area > div{ border-radius: 0; border-right: none; border-left: none; border-top: none; box-shadow: none;}
    .product-evaluation-area > div > .header{ padding: 10px 15px !important; height: auto; display: flex; flex-direction: column; align-items: center; border-top: 1px solid #e0e0e0;}
    .product-evaluation-area > div > .header .star .stars-inner::before, .product-evaluation-area > div .header .star .stars-outer::before{ font-size: 16px;}
    .product-evaluation-area > div > .header .star{ font-size: 20px;}
    .product-evaluation-area > div .body{ padding-top: 0;}
    .product-evaluation-area > div .body .notice{ display: none;}
    .product-evaluation-area > div .body .user-comments .comment{ position: relative;}
    .product-evaluation-area > div .body .user-comments .comment .body{ flex-direction: column;}
    .product-evaluation-area > div .body .user-comments .comment .body .stars-outer{ width: fit-content;}
    .product-evaluation-area > div .body .user-comments .comment .body .stars-outer::before, .product-evaluation-area > div .body .user-comments .comment .body .stars-inner::before{ font-size: 17px;}
    .product-evaluation-area > div .body .user-comments .comment .footer{ position: absolute; right: 0; top: 0;}

    .mobile-store-area{ display: grid;}


}
@media screen and (max-width: 915px){
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .sizes .buttons span::after{left: unset; right: -2px; transform: unset;}
}
@media screen and (max-width: 998px){

}
@media screen and (max-width: 1215px){
    .product-detail-section > .product-detail-area{ flex-direction: column;}
    .product-detail-section > .product-detail-area .right-section{ flex-direction: row !important;}
    .product-detail-section > .product-detail-area .right-section .store-other-products{ width: calc(100% - 183px);}
    .product-detail-section > .product-detail-area .right-section .store-other-products .body{ flex-direction: row !important; }
    .product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product{ height: 180px !important; flex-direction: column; min-width: 120px; width: 120px;}
    .product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product .img{ margin: 0 auto; height: 90px !important; min-width: 62px !important; width: 62px !important;}
    .product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product .detail > div{ flex-direction: column;}
    .product-detail-section > .product-detail-area .right-section .store-other-products .body .other-product .detail > div .stars-outer{ margin-right: auto;}
    .product-detail-section > .product-detail-area .right-section .store-other-products .arr.down-arr { display: none;}
    .product-detail-section > .product-detail-area .right-section .store-other-products .arr.up-arr{ display: none;}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .small-imgs{ max-width: 100%; overflow-x: auto; flex-wrap: wrap;}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .left-arr{ display: none;}
    .product-detail-section > .product-detail-area .left-section .product-details .second-section .right-arr{ display: none;}
    .product-detail-section > .product-detail-area .left-section{ min-width: 100%;}
}
@media screen and (max-width: 1300px){
    .same-products .arr-div{ background-color: var(--white-color)fffaa; box-shadow: inset 0 0 20px 1px rgba(0, 0, 0, 0.2);}
    .same-products .right-arr-div{ right: 0;}
    .same-products .left-arr-div{ left: 0;}
}


@keyframes mobile-main-img {
    0%{position: absolute; transform: translateX(-100%);}
    100%{transform: translateX(0);}
}






@media screen and (max-width: 1100px) {
    .product-container .products-area .products .body{ grid-template-columns: repeat(3, 1fr);}
}

@media screen and (max-width: 771px) {
    .main-container{ padding-top: 0;}
    .products-container{ padding: 0;}
    .product-container .products-area{ padding: 0 10px;}
    .product-container .products-area .products .body{ grid-template-columns: repeat(2, 1fr); padding: 5px;}
    .product-container .products-area .products .body .product .img-area{ height: 35vw;}
    .product-container > .search-results{ font-size: 15px; border-top: none;}
    .product-container > .search-results h2{ font-size: 15px;}
    .product-container > .search-results span{ font-size: 15px;}
    .products-container .product-container{ padding-left: 0;}
    .mobile-filters-area{ margin: 0 auto;}
    #suggested-order-btn select{ font-size: 13px;}
    .mobile-filters-area > div{ font-size: 13px; border: 1px solid var(--main-blue-border); border-top: none; background-color: var(--white-bg);}
    .products-container .filter-container{ padding: 0;}
}




