/* Montserrat fallback with adjusted metrics to prevent CLS on font swap */
@font-face {
    font-family: 'Montserrat-fallback';
    size-adjust: 112%;
    ascent-override: 85%;
    descent-override: 22%;
    line-gap-override: 0%;
    src: local('Arial');
}

/* CLS prevention: reserve space for carousels before JS initializes */
.slider-banner { height: 600px; overflow: hidden; }
.main-cat-bgcolor { min-height: 420px; }
.selected-product .catalog-product { min-height: 420px; }
.new-product .catalog-product { min-height: 420px; }
.partners .index-product { min-height: 140px; }
/* Make Owl Carousel fill the fixed slider height */
#owl-demo,
#owl-demo .owl-stage-outer,
#owl-demo .owl-stage,
#owl-demo .owl-item,
#owl-demo .item { height: 100%; }
.slider-banner img { width: 100%; height: 100%; object-fit: cover; }

/* Mobile: match actual carousel heights */
@media (max-width: 768px) {
    .main-cat-bgcolor { min-height: auto; }
    .selected-product .catalog-product { min-height: auto; }
    .new-product .catalog-product { min-height: auto; }
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", "Montserrat-fallback", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
}
:root {
    --main-color: #7b53a2;
}
a{
    text-decoration: none !important;
    
}
a:hover{
    text-decoration: none;
}

.slide-text{
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    font-weight: 700;
    color: #7b53a2;
}

.main-container{
    width: 80%;
    margin: 0 auto;
}

header .header-top{
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    align-items: baseline;
}
header .header-top .logo img{
    width: 180px;
    height: 35px;
}
header .header-top .header-top-middle{
    font-weight: 400;
    font-size: 18px;
    color: var(--main-color);
}
header .header-top .header-top-middle span{
    padding-right: 20px;
}
header .header-top .header-top-middle a{
    color: var(--main-color);
}

.header-social ul, footer .header-social ul{
    display: flex;
    margin-bottom:0;
}
.header-social ul li, footer .header-social ul li{
    list-style: none;
    padding: 0 18px;
}

header .header-top .header-social ul li:nth-child(1),header .header-top .header-social ul li:nth-child(2) {
    border-right: 2px solid var(--main-color);
}
header .header-top .header-social ul li:last-child, footer .header-social ul li:last-child{
    padding-right: 0;
}
.header-social ul li a{
    color: var(--main-color);
    font-size: 18px;
}

header nav{
    background-color: var(--main-color);
    color: white;
}
header nav div{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

header nav .menu ul{
   display: flex;
    margin-bottom: 0;
}

header nav .menu ul li{
    list-style: none;
    padding: 10px 20px 10px 0;
}
header nav .nav-category, header nav .menu ul li a{
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 19.5px;
}
header nav .nav-category i{
    padding-right: 10px;
}
header nav .lang i{
   padding-right: 7px;
    border-right: 2px solid white;
    font-size: 16px;
}

header nav .lang select {
    background: transparent;
    border: none;
    appearance: none; /* remove default appearance set by the browser */
    outline: none; /* remove the outline shown on focus */
    cursor: pointer; /* change the mouse cursor icon */
    padding-left: 5px;
    color: white;
    text-align: right;
    font-family: inherit; /* use the same font as the parent element */
}

/* Styling the dropdown options */
header nav .lang select option {
    background-color: #fff;
    width: 100%; /* make the options full width */
    padding: 10px; /* adjust padding for better spacing */
    color: var(--main-color);
    border: 1px solid var(--main-color);
    font-family: inherit; /* use the same font as the parent element */
    text-align: center; /* center the text inside the options */
}

/* Adding hover effect to dropdown options */
.custom-select option:hover {
    background-color: #e9e03d;
    /*color: #000;*/
}

/* Adding focus effect to the select element for better accessibility */
header nav .lang select:focus {
    border: 1px solid var(--main-color);
    box-shadow: 0 0 5px var(--main-color);
}

.search {
    --text-color: #fff;
    --border-radius: 10px;
    --width: 190px;
    --height: 30px;
    background: transparent;
    width: auto;
    height: var(--height);
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(65, 72, 86, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}
.search input[type=text] {
    position: relative;
    width: var(--height);
    height: var(--height);
    font-size: 16px;
    color: var(--text-color);
    border: 0;
    box-sizing: border-box;
    outline: none;
    padding: 0 0 0 40px;
    transition: width 0.6s ease;
    z-index: 10;
    opacity: 0;
    cursor: pointer;
    background-color: transparent;
}
.search input[type=text]::placeholder {
    color:#fff;
}

.search input[type=text]:focus {
    z-index: 0;
    opacity: 1;
    width: var(--width);
    border-bottom: 1px solid #fff;
    padding: 0 0 0 10px;
}


.search input[type=text]:focus ~ .symbol::before {
    width: 0;
}
.search input[type=text]:focus ~ .symbol:after {
    clip-path: inset(0% 0% 0% 100%);
    transition: -webkit-clip-path 0.04s linear 0.105s;
    transition: clip-path 0.04s linear 0.105s;
}
.search input[type=text]:focus ~ .symbol .lens {
    opacity: 0;
    transform: translate(0, 0);
    transition: top 0.5s ease 0.1s, left 0.5s ease 0.1s, fill 0.3s ease;
}
.search .symbol {
    height: 100%;
    width: 100%;
    position: absolute;
    top: -18px;
    right: 5px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search .symbol:before {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: width 0.6s ease;
}
.search .symbol:after {
    content: "";
    position: absolute;
    top: 21px;
    left: 21px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 1;
    clip-path: inset(0% 0% 0% 0%);
    transition: -webkit-clip-path 0.04s linear 0.225s;
    transition: clip-path 0.04s linear 0.225s;
}
.search .symbol .lens {
    position: absolute;
    fill: #fff;
    stroke: none;
    top:0;
    /*transform: translate(-50%, -50%);*/
}
.search .symbol .lens {
    fill: #fff;
    width: 16px;
    height: 16px;
    z-index: 2;
    top: 24px;
    left: 24px;
    transition: top 0.3s ease, left 0.3s ease, fill 0.2s ease 0.2s;
}


.slider-banner #carousel {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}
.slider-banner .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all 0.6s ease;
}
.slider-banner .slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.48);
}

.slider-banner #carousel .slide,
.slider-banner #carousel .slide-hidden {
    display: none;
}

.slider-banner #carousel .active {
    display: block;
}

.slider-banner .slide-search{
    width: 90%;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.slider-banner .slide-search .slide-search-input{
    width: 400px;
    height: 48px;
    border: 1px solid white;
    padding: 5px 0;
    border-radius: 200px;
    background-color: rgba(167, 172, 177, 0.2);
}
.slider-banner .slide-search .slide-search-input input{
   background-color: transparent;
    outline: none;
    border: none;
    color:var(--main-color);
    position: relative;
    top:50%;
    left: 15px;
    transform: translateY(-50%);
}
.slider-banner .slide-search .slide-search-input input::placeholder{
    color:var(--main-color);
}
.slider-banner .slide-search .slide-search-input .search_icon{
    width: 37px;
    border-radius: 50%;
    background-color: var(--main-color);
    position: relative;
    right: 10px;
}
.slider-banner .slide-search .slide-search-input .search_icon i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:white;
}

.slider-banner .icon {
    font-size: 3rem;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border: 1.5px solid white;
    border-radius: 50%;
    position: relative;
}
.slider-banner .icon i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
}


.slider-banner .circle {
    display: flex;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-banner .circle div {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-left: 20px;
    border: 2px solid white;
    background: transparent;
}

.slider-banner .circle-active {
    background-color: var(--main-color) !important;
}

.main-category{
    margin: 100px 0;
}
.section-line{
    width: 60%;
    margin: 0 auto;
    height: 1px;
    background-color: var(--main-color);
}
.section-text{
    position: relative;
}
.section-title{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--main-color);
    border-radius: 80px;
    background-color: white;
}
.section-title h1{
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 0;
    color: var(--main-color);
    font-weight: 400;
    /*line-height: 30px;*/
}
.main-category .main-category-box{
    width: 75%;
    margin: 50px auto 100px auto;
    border: 1px solid var(--main-color);
    display: flex;
    justify-content:space-between;
    padding: 5px;
    border-radius: 30px;
}

.main-category .main-category-box .main-category-title{
    padding: 5px 18px;
    border: 1px solid var(--main-color);
    border-radius: 30px;
}

.main-category .main-category-box .main-category-title.active {
    padding: 5px 18px;
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
}

.main-category .main-category-box .main-category-title.active h3{
  color:white;
}

.main-category .main-category-box h3{
    font-size: 24px;
    color: var(--main-color);
    margin-bottom: 0;
    font-weight: 400;
}
.index-product {
    margin: 100px auto;
}
.product-card {
    border: 1px solid var(--main-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 226px;
    height: 362px;
    position: relative;
}


.main-cat-bgcolor .product-card{
    width: 250px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}
.main-cat-bgcolor .product-card img{
    width: 90%;
    height: auto;
}
.cat-carousel > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalog-product{
    padding: 100px 0;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    justify-content: space-between;
    row-gap:70px;
}

.main-cat-bgcolor .catalog-product{
    padding: 0;
    /*display: grid;*/
    /*display: flex;*/
    /*grid-template-columns: auto auto auto;*/
    justify-content: space-between;
    row-gap:70px;
}
.catalog-product .product-card {
    width: 146px;
    height: 234px;
}
.catalog-product .product-card img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.main-category .main-cat-bgcolor{
    background: rgba(121, 42, 186, 0.1);
    padding: 50px 70px;
}


.new-carousel .slide img {
    display: block;
    /*width: 144px;*/
    /*height: 76px;*/
    object-fit: cover;

}

.partner-carousel .slide img {
    display: block;
    width: 144px;
    height: 76px;
    object-fit: contain;

}


footer{
    background: var(--main-color);
    color: white;
}
footer .footer-top{
   padding-top: 100px;
}
footer .footer-top p{
    font-size: 24px;
    line-height: 30px;
    max-width: 628px;
}
footer .subscribe{
    width: 570px;
    height: 60px;
    border-radius: 100px;
    border: 1px solid white;
}
footer .subscribe .sbs-btn{
    width: 194px;
    border-radius: 100px;
    background: white;
    border: none;
    outline: none;
    color: var(--main-color);
    font-size: 24px;
    line-height: 30px;
    padding: 14px 0;
}
footer .subscribe .sbs-inp{
    border-radius: 100px;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 20px;
    line-height: 25px;
    padding-left: 10px;
}
footer .subscribe .sbs-inp::placeholder{
    color: white;
}

footer .header-social ul li a{
    color: white;
}
footer .header-social ul li:nth-child(1),footer .header-social ul li:nth-child(2) {
    border-right: 2px solid white;
}
footer .header-social ul li:nth-child(1){
    padding-left: 0;
}
footer table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    font-size: 16px;
    line-height: 20px;
    margin-top: 20px;
}
footer table a{
    font-size: 16px;
    line-height: 20px;
    margin-top: 20px;
    color:#fff;
    text-decoration: none;
}

footer table ul{
    padding-left: 0;
    margin-bottom: 0;
}
footer table th {
    padding: 18px 0;
}
footer table td {
    padding: 10px 0;
}

footer table th {
    text-align: left;
}
footer .footer-bottom{
    padding: 40px 0;
}

footer .footer-bottom p{
    font-size: 24px;
    line-height: 30px;
    color:rgba(201, 201, 201, 0.32);
}



.card__collection .cards {
    width: 210px;
    height: 280px;
    display: block;
    background-size: cover;
    float: left;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    background-position: center;
    margin: 10px;
}
.card__collection .cards--three {
    position: relative;
    z-index: 10;
}
.card__collection .cards--three:hover .cards--three__rect-1 {
    left: 10%;
}
.card__collection .cards--three:hover .cards--three__rect-1 .shadow-1 {
    left: -20%;
}
.card__collection .cards--three:hover .cards--three__rect-2 {
    left: 60%;
}
.card__collection .cards--three:hover .cards--three__rect-2:before {
    left: -100%;
}
.card__collection .cards--three:hover .cards--three__rect-2:after {
    left: 80%;
}
.card__collection .cards--three:hover .cards--three__rect-2 .shadow-2 {
    left: -10%;
}
.card__collection .cards--three:hover .cards--three__circle {
    transform: scale(1);
}
.card__collection .cards--three:hover .cards--three__circle:before {
    transform: scale(0.9);
}
.card__collection .cards--three:hover .cards--three__list li {
    transform: translateX(0);
}
.card__collection .cards--three__rect-1 {
    background: #fff;
    width: 120px;
    height: 66px;
    transform: skewX(-20deg);
    display: block;
    position: absolute;
    top: 73%;
    opacity: 0.9;
    left: -100%;
    z-index: 8;
    transition: all 0.5s ease-in;
}
.card__collection .cards--three__rect-1 p{
    font-size: 12px;
    color: #fff;
    /*transform: skewX(20deg);*/
    line-height: 3rem;
}
.card__collection .cards--three__rect-1 .shadow-1 {
    background: var(--main-color);
    width: 138px;
    height: 60px;
    display: block;
    position: absolute;
    left: -200%;
    z-index: -1;
    transition: all 0.3s ease-in;
}


.card__collection .cards--three__circle {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: -15%;
    left: 50%;
    opacity: 0.9;
    transform: scale(0);
    transition: all 0.3s ease;
}
.card__collection .cards--three__circle:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s ease;
    transition-delay: 0.2s;
}
.card__collection .cards--three__list {
    list-style: none;
    position: absolute;
    top: -40px;
    right: 0px;
    padding-top: 60px;
    transition: all 0.4s ease;
}
.card__collection .cards--three__list li {
    display: inline-block;
    margin: 4px;
    color: var(--main-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    text-align: center;
    line-height: 1.7rem;
    font-size: 12px;
    transition: all 0.3s ease;
    transform: translateX(500%);
}
.card__collection .cards--three__list li a {
    color: var(--main-color);
}
.card__collection .cards--three__list li i{
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);

}
.card__collection .cards--three__list li:nth-child(1) {
    transition-delay: 0.2s;
}
.card__collection .cards--three__list li:nth-child(2) {
    transition-delay: 0.3s;
}
.card__collection .cards--three__list li:nth-child(3) {
    transition-delay: 0.4s;
}
/*-------------------------------------------------------------ABOUT PAGE-------------------------------------------------------------*/

.about h1{
    color: var(--main-color);
    font-size: 32px;
    font-weight: 600;
    line-height: 39px;
    margin: 60px 0 40px 0;
}
.about div span{
    display: inline-block;
    color: rgba(0, 0, 0, 1);
    font-size: 20px;
    font-weight: 400;
    line-height: 24.38px;
}
.about .main-container{
    padding-bottom: 100px;
}


/*-------------------------------------------------------------CATALOG PAGE-------------------------------------------------------------*/

.categories a{
    text-decoration: none;
}
li{
    list-style: none;
    padding-top: 10px;
}

.catalog{
    padding-top: 50px;
    padding-bottom: 100px;
}

.catalog h2{
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color:var(--main-color) ;
}

.catalog  .categories .main_cat, .catalog  .categories .sub_cat{
    padding: 0;
}

.catalog  .categories .main_cat li a{
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color:var(--main-color) ;
}

.catalog  .categories .sub_cat li a{
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color:var(--main-color) ;
}
.catalog .catalog-product{
    padding-top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}



/*-------------------------------------------------------------PRODUCT DETAIL-------------------------------------------------------------*/

.product{
    padding-top: 80px;
    color: var(--main-color);
}

.product .product-details p{
    font-size: 20px;
    line-height: 25px;
}

.product .header-social ul{
   padding-left: 0;
}
.product .header-social ul li{
    margin-left: 0;
    padding-left: 0;
}
.product .product-text ul li{
    list-style: disc;
}
.similar-products h2{
    padding-top: 10px;
    color: var(--main-color);
}

/*-------------------------------------------------------------Stores PAGE-------------------------------------------------------------*/

.stores h1{
    color: var(--main-color);
    font-size: 32px;
    font-weight: 600;
    line-height: 39px;
    margin: 80px 0 40px 0;
}
.stores p{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 24.38px;
}
.stores .store2{
    padding: 60px 0;
}

.stores p:last-child,.stores p:first-child {
    font-weight: 600;
}

.stores iframe{
    height: 300px;
    width: 100%;
}

.stores a{
    color: var(--main-color);
}


/*-------------------------------------------------------------Certification PAGE-------------------------------------------------------------*/


.stores div img{
    height: 460px;
    /*width: 296px;*/
    object-fit:contain;
}

.bodymeasurement .bodymeasurement1 img{
    height: 100% !important;
    width: 100% !important;
}


.sertifikat{
    padding: 100px 0;
}

.clients{
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
}
.clients .client-img{
    display: flex;
    justify-content: center;
    transition: 1s;
    cursor: pointer;
}
.clients .client-img:hover{
    transform: scale(1.3);
}

.client-img img{
    height: 100px;
    width: 190px;
        object-fit: contain;
    transition: filter 0.3s; /* Geçiş efekti */
}

/*-------------------------------------------------------------CONTACT PAGE-------------------------------------------------------------*/

.contact h1{
    color: var(--main-color);
    font-size: 32px;
    font-weight: 600;
    line-height: 39px;
    margin: 60px 0 40px 0;
}

.contact form input, .contact form textarea{
  width: 100%;
    padding: 20px 0 10px 10px;
    margin: 20px 0;
    border: none;
    border-bottom :2px solid var(--main-color);
    outline: none;
    background-color: #fff;
}
.contact form .form-btn{
    display: flex;
    justify-content: flex-end;
}

.contact form .form-btn button{
    display: flex;
    justify-content: flex-end;
    margin: 20px 0;
    padding:15px 30px;
    border:none;
    outline: none;
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    font-size: 24px;
    border-radius: 30px;
}

.contact .contact-left i{
    color: var(--main-color);
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    padding-bottom: 10px;
}

.contact .contact-left p{
    color: var(--main-color);
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
}

.contact .contact-left >div{
  padding-bottom: 50px;
}
