﻿*{
    margin:0;
    padding:0;
}


@font-face {
    font-family: Inter;
    src: url(/fonts/Inter/Inter_18pt-Thin.ttf);
}

@font-face {
    font-family: Inter-Ext;
    src: url(/fonts/Inter/Inter_18pt-ExtraLight.ttf);
}

@font-face {
    font-family: Inter-Light;
    src: url(/fonts/Inter/Inter_18pt-Light.ttf);
}

@font-face {
    font-family: Inter-Reg;
    src: url(/fonts/Inter/Inter_18pt-Regular.ttf);
}

@font-face {
    font-family: Inter-Sbold;
    src: url(/fonts/Inter/Inter_18pt-SemiBold.ttf);
}

:root {
    --color-gray: #f3f4f6;
    --color-gray2: #f2f2f9;
    --color-black: #1c1c1c;
    --color-border: #e4e4f4;
    --color-success-1: #dff0d8;
    --color-success-2: #28a745;

    --font-inter: Inter;
    --font-inter-ext: Inter-Ext;
    --font-inter-light: Inter-Light;
    --font-inter-reg: Inter-Reg;
    --font-inter-sbold: Inter-Sbold;
}

body {
    background: var(--color-gray);
}
ul{
    list-style:none;
    margin:0;
}
img{
    max-width:100%
}
.h-50{
    height:50px
}
.h-15{
    height:15px
}
.w-100{
    width:100%
}
.p-t-50{
    padding:50px 0;
}
.p-b-50 {
    padding: 50px 0;
}
.p-10{
    padding:10px;
}
.pt-100{
    padding-top:100px;
}
.pb-100{
    padding-bottom:100px
}
.m-0{
    margin:0!important;
}
.b-r-5{
    border-radius:5px
}
[class^="show-max-"] {
    display: none
}
a{
   text-decoration:none!important
}
.zoomin:hover{
    cursor:zoom-in;
}
.custom-container{
   width:1350px;
   max-width:100%
}
.counter-box *{
    font-weight:bold;
    font-size:26px;
    font-family:var(--font-inter-sbold)
}

.fixed-button {
    position: fixed;
    z-index: 9999;
    background: #118c7e;
    padding: 15px 26px;
    border-radius: 3px;
    font-size: 16px
}
.fixed-button *{
    color:#fff;
}
.fixed-button.right{
    right:15px;
}
.fixed-button.bottom{
    bottom:30px;
}

/****Flex****/
.flex{
    display:flex;
}
.flex-center{
    justify-content:center;
}
.flex-align-center{
    align-items:center;
}
.flex-beetwen{
    justify-content:space-between;
}
.flex-wrap {
    flex-wrap: wrap;
}

/****Fonts****/
.fnt-22 {
    font-size: 22px;
}
.fnt-11{
    font-size:11px;
}
.shadow-1 {
    box-shadow: rgb(0 0 0 / 10%) 0px 2px 3px;
}
/****************************/

.home-slider .slick-item img{
    height:362px;
    object-fit:cover
}
.home-slider-container .col-md-9{
    width:80%;
}
.home-slider-container .col-md-3{
    width:20%;
}


/*********
HEADER
*********/
.main-header{
    background:#fff
}
.main-header .header-top{
    border-bottom:1px solid var(--color-border)
}
.main-header .header-top ul li{
    float:left;
    padding:5px 15px;

}
.main-header .header-top ul li a{
    text-decoration:none;
    color:#6e6e6e;
    font-size:12px
}
.main-header .header-middle{
    padding-top:10px;
}
.main-header .header-middle a{
    color:#6e6e6e;
}
.main-header .header-middle .text-white{
    color:#fff;
}
.main-header .header-bottom{
    background-image: linear-gradient(to left, #ad006b, #1d3d65);
}
.main-header .search {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width:500px
}
.main-header .search input[type=text]{
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #ddd;
    border-radius: 2px;
    outline: none;
    border: 2px solid #5ea1a1;
    -webkit-box-shadow: 0px 0px 25px 10px rgb(94 161 161 / 50%);
   box-shadow: 0px 0px 25px 10px rgb(94 161 161 / 50%);
}
.main-header .search input[type=text]::placeholder {
    color: #000; /* Change to your desired color */
    opacity: 1; /* Adjust if needed, default can be lower */
    font-size:12px
}
.main-header .search button[type=submit]{
    position: absolute;
    right: 15px;
    outline: none;
    background: transparent;
    border: 0;
    top: 50%;
    transform: translateY(-50%);
    color:#78787e
}
/****************************/

/*********
NAV BAR
*********/
.nav-wrapper{
  /*overflow-x: auto;
  white-space: nowrap;
   -ms-overflow-style: none;*/  /* Internet Explorer / Edge */
  /*scrollbar-width: none;*/     /* Firefox */
}
.nav-wrapper ul.nav-bar{
 /* display: inline-flex;
  list-style: none;
  gap: 10px;*/
}
.nav-bar li {
    float: left;
    font-weight: bold;
    padding: 8px 20px;
    position: relative;
    border-right:1px solid #fff;
}
.nav-bar li a{
    color:#fff;
    text-decoration:none
}
.nav-bar li ul{
    position:absolute;
    background:#fff;
    top:100%;
    min-width:200px;
    z-index:9999;
    display:none;
    box-shadow: 0 5px 10px 0 rgb(230 230 243 / 88%);
    -webkit-box-shadow: 0 5px 10px 0 rgb(230 230 243 / 88%);
    -moz-box-shadow: 0 5px 10px 0 rgba(230, 230, 243, 0.88);
    -ms-box-shadow: 0 5px 10px 0 rgba(230, 230, 243, 0.88);
    border:1px solid var(--color-border)
}
.nav-bar li ul ul{
    top:0;
    left:calc(100% + 5px);
    position:absolute;

}
.nav-bar li ul ul::before{
    content:"";
    height:100%;
    width:5px;
    background:transparent;
    position:absolute;
    top:0;
    left:-5px;
}
.nav-bar li ul li{
    float: none;
    padding:0 15px 0 0;
    border-bottom: 1px dotted #d1d1d1;
} 
.nav-bar li ul ul li{
    padding:7px 15px;
}
.nav-bar li ul a{
    color: #403e3e;
    white-space: nowrap;
} 
.nav-bar li li:hover{
    background:var(--color-gray2);
}
.nav-bar li:hover > ul{
    display:block;
}
/****************************/


/*********
COLORS
*********/
.text-white {
    color: #fff;
}
.bg-white{
    background:#fff;
}
/****************************/

/*********
BOX
*********/
.box {
    padding: 10px;
    border-radius: 5px;
}
.box-success {
    background: var(--color-success-1);
    color: var(--color-success-2)
}
.box-danger {
    background: #fce8e6;
    color: #dc4037;
    font-family: var(--font-inter-sbold);
    font-weight: 500;
}
/****************************/

/*********
SLİDER
*********/
.slick-slider img{
    width:100%
}
/****************************/

/*********
PRODUCTS
*********/
.product-item{
    border:1px solid var(--color-border);
    margin:10px;
    background:#fff;
    border-radius:5px;
    overflow:hidden
}
.product-item .header{
    position:relative;
    height:225px;
    overflow:hidden
}
.product-item .header button{
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0px 2px;
    border: 1px solid transparent;
    border-radius: 2px;
    color: #fff;
    font-size: 11px;
    font-family: var(--color-black);
    font-style: italic;
}
.product-item .header button.danger{
     background: rgb(255 0 0 / 70%);
}
.product-item .header button.success{
    background:var(--color-success-2)
}
.product-item .body{
    padding:15px;
    height:130px;
    overflow:hidden
}
.product-item .body *{
    color:var(--color-black)
}
.product-item .footer{
    padding:15px;
    border-top:1px solid var(--color-border)
}
.product-detail .img-product {
    width: 100%;
    height: 400px;
    object-fit: contain;
}
.product-detail h1 {
    font-size: 32px;
    font-weight: bold;
    color:#000
}
.product-detail .sale-regular {
    display: inline-block;
    border: 1px solid #cc5303;
    border-radius: 5px;
    margin: 15px 0;
}
.product-detail .sale-regular .sale {
    font-size: 2rem;
    color: #000;
    font-weight: 500;
    margin-right: 1.2rem;
}

/***** thumbnail images ******/
.thumbnail-images {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    margin-top: 15px;
    flex-wrap: wrap;
}
.thumbnail-images .thumbnail{
    margin-right:5px;
    flex-basis: 65px;
}
.thumbnail-images .thumbnail.active{
    border:1px solid red;
}
.thumbnail-images .thumbnail img{
    text-align: center;
    margin-right: 15px;
    height: 70px;
    border:1px solid var(--default-border-color);
    width:150px;
    object-fit:contain
}

.product-slider {
   border-radius:5px;
   overflow:hidden
}
.product-slider .title{
    background-image: linear-gradient(to left, #ad006b, #1d3d65);
    padding:5px;
    text-align:center;
    color:#fff;
}
.product-slider .product-item{
   margin:0;
}
/****************************/

/*********
BANNERS
*********/
.banner-title{
    position:relative;
}
.banner-title .title {
    font-weight: bold;
    font-size: 26px;
}
.banner-title .slick-controls{
    position: absolute;
    right: 0;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
}
.banner-title .slick-controls button {
    font-size: 30px;
    border: 0;
    outline: none;
    background: transparent;
    margin: 0 5px;
}

.group-banner .banner-item{
    position:relative;
    cursor:pointer;
    margin-bottom:30px
}
.group-banner .banner-item .banner-text{
       position: absolute;
    left: 20%;
    top: 18px;
    z-index: 99;
}
.group-banner .banner-item .banner-text .title{
    color: #fff;
    font-family: var(--font-inter-sbold);
    font-weight: 800;
    font-size: 32px;
}
.group-banner .banner-item .banner-text *{
    color:#fff;
}
.group-banner .banner-item::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0043AE 0%, rgba(1, 117, 228, 0) 100%);
    opacity: 1;
    visibility: visible;
    transition: all 0.2s linear;
    pointer-events: none;
}
.group-banner .banner-item:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #EBBC16 0%, rgba(1, 117, 228, 0) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s linear;
    pointer-events: none;
}
.group-banner .banner-item:hover::before{
    opacity:0;
    visibility:hidden
}
.group-banner .banner-item:hover::after{
    visibility:visible;
    opacity:1;
}
.group-banner .banner-button{
    position:absolute;
    bottom:15px;
    right:15px
}
.group-banner .btn {
    background: #2563eb;
    border: #2563eb;
    outline: none;
    border-radius: 2px;
    font-family: var(--font-inter-sbold);
    font-weight: bold;
    font-size: 18px;
}
/****************************/

/*********
FOOTER
*********/
footer.footer {
    background: var(--color-black);
    min-height: 400px;
    border-top: 2px solid #fff;
    padding-top: 30px
}
.footer h2{
   font-size:2rem;
   color:#fff;
}
.footer h4{
    color:#fff;
}
.footer p {
    color: #fff;
}
.footer ul li{
    padding:8px 5px;
    list-style:inside;
}
.footer ul li a{
    color:#fff;
}
.footer ul li::marker {
    color: #fff; /* Marker rengini kırmızı yap */
    font-size: 1.5em; /* Marker boyutunu büyüt */
}
.footer .adress {
    background-image: url(/Images/Genel/map.png);
    min-height: 155px;
    background-repeat: no-repeat;
}
.footer .adress p{
}
.footer .copright {
    margin-top:30px;
    padding: 15px 0;
    color:#fff;
}


.footer .social-media .icon {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    color: #fff !important;
    transition: all 500ms;
    margin-right: 5px;
    border-radius: 50%;
}
.footer .social-media .icon:hover {
        transform: translateY(-5px)
    }
.footer .social-media .face {
    background: #4267B2
}
.footer .social-media .twitter {
    background: #1DA1F2
}
.footer .social-media .youtube {
    background: #FF0000;
}
.footer .social-media .instagram {
    background: #8a3ab9
}
/****************************/

/*********
BREAD CRUMP
*********/
.bread-crump {
    padding: 10px 0;
}
.bread-crump h1 {
        font-size: 22px;
        margin: 0;
    }
.bread-crump ul {
    border-radius: .25rem;
    display: flex;
    align-items: center;
    margin-bottom:0;
}
.bread-crump ul li {
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: relative;
}
.bread-crump ul li a{
    font-size:12px;
    font-family:var(--font-inter-reg);
}
.bread-crump ul li:first-child::before {
    content: "";
    display: inline-block;
    color: orange;
    padding: 0 5px;
}
.bread-crump ul li::before {
    content: "\f105";
    display: inline-block;
    color: rgb(255 126 0);
    padding: 0 5px;

     font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit
}
/****************************/

/*********
CATEGORY SİDEBAR
*********/
.category-sidebar h6{
    padding:0 20px
}
.category-sidebar li {
    border-bottom: 1px solid #dedede;
    position: relative;
    font-family: var(--font-inter-reg);
    font-size: 13px;
    overflow: hidden;
    transition:all 500ms;
}
.category-sidebar li > div{
    position:relative;
    padding: 10px;
}
.category-sidebar li span{
       position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 23px;
    width: 25px;
    text-align: center;
    cursor:pointer;
}
.category-sidebar li a{
    color:#000;
    text-decoration:none;
    display:block;
    padding-left:10px
}
.category-sidebar ul ul li a {
    padding-left: 20px
}
.category-sidebar ul ul {
    max-height: 0;
    transition: max-height 500ms ease-in;
    background: rgb(249 250 251);
    margin-left:1px
}
.category-sidebar ul ul li{
    border:0;
}
.category-sidebar li > div:hover {
    background: rgb(249 250 251)
}
.category-sidebar ul ul li > div:hover {
    background: #ececed
}
.category-sidebar li.active > ul {
    max-height: 100%;
}
.category-sidebar li.active {
    background: #dadcdf;
}
/****************************/

/*********
BANNER
*********/
.call-to-action-inner h5 {
    font-size: 62px;
    color: #fff;
    font-weight: bold;
    font-family: var(--font-inter-sbold);
}
.call-to-action-inner .btn-effect-4 {
    border: 1px solid #fff;
    border-radius: 0;
    padding: 13px 30px;
    color: #fff;
    font-weight: bold;
    position:relative;
    transition:all 1500ms;
    z-index:9999;
}
.call-to-action-inner .btn-effect-4 .hover{
     width:100%;
    height:100%;
    position:absolute;
    background:#e86d35;
    left:0;
    top:0;
    z-index:-1;
    width:0;
    transition:all 500ms;
}
.call-to-action-inner .btn-effect-4:hover > .hover{
    width:100%;
}
/****************************/

/*********
CONTACT
*********/
.contact-address-item {
    border: 2px solid #dedede;
    padding: 50px 30px 25px;
    text-align:center;
    height:260px;
    background:#fff;    
}
.contact-address-item .address-icon{
        margin-bottom: 35px;
}
.contact-address-item .address-icon img{
    max-width:60px
}
.contact-form-box {
    z-index: 999;
    position: relative;
    top: 50px;
    background: #fff;
    padding:40px 50px 50px;
}
.contact-form-box .form-control{
    box-shadow: none;
    border-radius: 2px;
    outline: none;
    height: 46px;
    border: 2px solid #e4ecf2;
}
.contact-form-box .form-group{
    position:relative;
}
.contact-form-box .form-group.has-icon .icon{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: red;
}
.contact-form-box .btn-submit{
    padding: 12px 20px;
    border-radius: 2px;
    position:relative;
    z-index:99;
    border:1px solid transparent;
}
.contact-form-box .btn-submit::before{
    content:"";
    width:0;
    height:100%;
    position:absolute;
    z-index:-1;
    left:0;
    top:0;
    background:#fff;
    transition:all 300ms;
}

.contact-form-box .btn-submit:hover{
    color:#000;
    border:1px solid #000;
    background:#000;
}
.contact-form-box .btn-submit:hover::before{
    width:100%;
}
/****************************/

/*********
PAGİNG
*********/
.paginationn {
    margin: 2em 0;
}
.paginationn a.active {
       background-image: linear-gradient(to left, #ad006b, #1d3d65);
    color: #fff;
}
.paginationn a {
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: 0.5em 1em;
    margin-left: 2px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color: #54667a;
    border: 1px solid transparent;
    border-radius: 2px;
}
/****************************/


/*********
SCROLL
*********/
.scroll-style1{
    overflow-y:auto
}
.scroll-style1::-webkit-scrollbar {
    width: 8px; /* scrollbar genişliği */
}
.scroll-style1::-webkit-scrollbar-track {
    background: transparent; /* track (arka alan) rengi */
}
.scroll-style1::-webkit-scrollbar-thumb {
    background: #888; /* kaydırma çubuğu rengi */
    border-radius: 4px;
}
.scroll-style1::-webkit-scrollbar-thumb:hover {
    background: #555; /* hover efekti */
}
/****************************/


@media screen and (max-width:992px),screen and (max-device-width:992px){
.hide-flex-992{
    display:block
}
.main-header .header-middle .search {
    margin-bottom:15px
}
.main-header .logo{
    margin-bottom:15px
}
.main-header .logo img{
        width: 150px;
}
.main-header .logo a{
    position:relative;
    left:55%;
    transform:translateX(-50%);
    display:inline-block;
}
.main-header .header-middle a{
        font-size: 13px;
    font-family: var(--font-inter-sbold);
    color: #484545;
}
.main-header .header-top{
    display:none
}
.main-header .header-bottom{
    position:fixed;
    z-index:999;
    width:100%;
    height:100%;
    top:0;
    left:-100%;
    background:#fff;
    padding:10px 0;
    transition: all 500ms
}
.main-header .header-bottom.active{
    left:0;
}
.main-header .header-bottom *{
    color:var(--color-black);
}
.main-header .search input[type=text] {
    -webkit-box-shadow: 0px 0px 15px 1px rgb(94 161 161 / 50%);
    box-shadow: 0px 0px 15px 1px rgb(94 161 161 / 50%);
}
.nav-bar {
    padding-left:10px;
}
.nav-bar li {
    float: none;
    font-weight: normal;
    padding: 10px 0;
    position: relative;
    border-bottom:1px dotted var(--color-gray2)
}
.nav-bar li a {
    font-family: var(--font-inter-light);
    font-size: 12px;
}
.nav-bar li ul ul{
    display:none!important
}
.mbl-menu-control{
    padding: 10px;
    background: #e6e6e7;
           margin: -10px -15px 21px;
    position:relative;
}
.mbl-menu-control button{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 32px;
    border: 0;
    background: red;
    color: #fff;
}
.btnIconMenu{
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    outline: 0;
    background: transparent;
    color: #000;
    font-size: 25px;
}

.show-max-992{
    display:block;
}
.hidden-max-992{
    display:none
}

.home-slider{
    margin-bottom:15px
}
.home-slider .slick-item img {
    height: auto;
    object-fit: cover;
}
.home-slider-container .col-md-9{
    width:100%;
}
.home-slider-container .col-md-3{
    width:100%;
}

.product-item{
    margin:10px 0;
}
.product-item .header{
    height:150px;
}
.product-item img{
    max-height:150px;
    object-fit:contain;
}
}