/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;
    transition: all 0.3s ease;
}

/* Reset all anchor styles */
a {
    text-decoration: none;
    color: inherit;
    border: none;
    outline: none;
}

body {
    overflow-x: hidden;
}

/* Top Bar Styles */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
    font-size: 12px;
    max-width: 1400px;
    margin: 0 auto;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-left a {
    text-decoration: none;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 200;
    font-family: "Jost", sans-serif;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
}

.top-bar-left a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    transition: width 0.3s ease;
}

.top-bar-left a:hover::after {
    width: 100%;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: #000;
    transform: translateY(-2px);
}

.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: "Jost", sans-serif;
    font-weight: 200;
    gap: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.language-selector:hover {
    transform: translateY(-2px);
    opacity: 1;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5% 0px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    transition: background-color 0.3s ease;
}

.header:hover {
    background-color: rgba(255, 255, 255);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 100px!important;
    height: auto;
    transition: opacity 0.3s ease;
}

.logo-black {
    position: absolute;
    max-width: 100px!important;
    height: auto;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: opacity 0.3s ease;
}

.header:hover .logo {
    opacity: 0;
}

.header:hover .logo-black {
    opacity: 1;
}

.header:hover .menu-items a {
    color: #333;
}

/* Hero Section Styles */
.hero {
    position: relative;
    width: 100%;
    height: 65vh; /* Desktop yüksekliği */
    overflow: hidden;
    background-color: #f0f0f0; /* Placeholder arka plan rengi */
    z-index: 1;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.video-placeholder video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Menu Styles */
.main-menu {
    background-color: transparent;
    padding: 0;
    width: 100%;
    position: relative;
}

.main-menu:hover .menu-items a {
    color: #333;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-items {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

.menu-items li {
    margin: 0 15px;
    position: relative;
}

.menu-items a {
    text-decoration: none;
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.menu-items a:hover {
    color: #333;
}

.menu-items a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: width 0.3s ease;
}

.menu-items a:hover::after {
    width: 100%;
}

.menu-item {
    position: relative;
    cursor: pointer;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: width 0.3s ease;
}

.menu-item:hover::after {
    width: 100%;
}

/* Submenu Container Styles */
.submenu-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255);
    z-index: 100;
    display: none;
    margin-top: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submenu-container[style*="display: block"] {
    opacity: 1;
}

.submenu-wrapper {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.submenu-content {
    width: 50%;
    padding: 20px;
}

.submenu-items {
    width: 100%;
}

.submenu-image {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.submenu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.main-submenu-image, .sub-submenu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.submenu-image img:hover {
    transform: scale(0.95);
}

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

.submenu-item {
    margin-bottom: 15px;
    position: relative;
    z-index: 105;
}

.submenu-item a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.submenu-item a:hover {
    color: #000;
}

.submenu-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: width 0.3s ease;
}

.submenu-item a:hover::after {
    width: 100%;
}

/* Sub2menu Styles */
.sub2menu-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    position: relative;
    z-index: 170;
}

.sub2menu-item {
    margin-bottom: 8px;
    position: relative;
    display: flex;
    flex-direction: row;
    gap:10px;
}

.sub2menu-item a {
    color: #333;
    text-decoration: none;
    font-size: 14px; /* 2px smaller than submenu-item */
    font-weight: 200;
    position: relative;
    display: inline-block;
    z-index: 180;
    pointer-events: auto;
    transition: color 0.3s ease;
    align-self: center;
    margin-right: 10px;
}

.sub2menu-item a:hover {
    color: #000;
}

.sub2menu-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: width 0.3s ease;
}

.sub2menu-item a:hover::after {
    width: 100%;
}

/* Sub3menu Styles */
.sub3menu-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: 0;
    position: relative;
    z-index: 170;
}

.sub3menu-item-container {
    position: relative;
    display: inline-block;
}

.sub3menu-item {
    color: #333;
    text-decoration: none;
    font-size: 12px; /* 2px smaller than sub2menu-item */
    font-weight: 300;
    /* padding: 2px 4px; */
    /* border: 1px solid #ddd; */
    border-radius: 0px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.sub3menu-item:hover {
    color: #000;
    background-color: #f8f8f8;
    border-color: #ccc;
}

/* Products Slider Section */
.products-slider {
    padding: 0px 0px;
    margin-top: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    font-family: "Jost", sans-serif;
}

.section-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.see-all {
    font-size: 14px;
    color: #333;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 300;
    transition: color 0.3s ease, transform 0.3s ease;
}

.see-all:hover {
    color: #000;
    transform: translateX(5px);
}

.slider-arrows {
    display: flex;
    gap: 10px;
}

.arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.arrow:hover {
    background-color: #f8f8f8;
    transform: scale(1.05);
}

.products-container {
    width: 100%;
    overflow: hidden;
}

.products-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 10px 0;
}

.products-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.product-item {
    min-width: calc(25% - 15px); /* 4 ürün için, her biri ekranın 25%'i kadar, aralarında 20px boşluk */
    max-width: calc(25% - 15px);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Kare şekil için aspect-ratio kullanıyoruz */
    background-color: #f8f8f8;
    overflow: hidden;
}

.first-image, .second-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.second-image {
    opacity: 0;
}

.product-image-container:hover .first-image {
    opacity: 0;
}

.product-image-container:hover .second-image {
    opacity: 1;
}

.product-link {
    text-decoration: none !important;
    display: block;
    border-bottom: none !important;
}

.product-desc {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    text-align: center;
    font-weight: 300;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    transition: transform 0.3s ease;
}

.product-link:hover .product-desc {
    position: relative;
    transform: translateY(-2px);
}

.product-link:hover .product-desc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333;
    transition: width 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        height: 50vh; /* Mobil yüksekliği */
    }

    .top-bar {
        padding: 8px 4%;
        font-size: 12px;
    }

    .top-bar-left {
        gap: 12px;
    }

    .header {
        padding: 15px 4%;
    }
    
    .header-content {
        flex-direction: column;
        gap: 5px;
    }

    .logo {
        max-width: 140px!important;
    }

    .menu-items {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .menu-items li {
        margin: 5px 0;
    }

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

    .main-menu {
        padding: 10px 0;
    }
    
    /* Mobile styles for submenu */
    .submenu-wrapper {
        flex-direction: column;
    }
    
    .submenu-content {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .submenu-items {
        width: 100%;
    }
    
    .submenu-image {
        width: 100%;
        max-height: 200px;
    }
    
    .main-submenu-image, .sub-submenu-image {
        max-height: 200px;
    }
    
    /* Mobile styles for products slider */
    .products-slider {
        padding: 30px 4%;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .product-item {
        min-width: 200px;
    }
    
    .product-image-container {
        aspect-ratio: 1 / 1; /* Mobil görünümde de kare şeklini koruyoruz */
    }
    
    .arrow {
        width: 35px;
        height: 35px;
    }
}

/* Custom Styles */

span.wc-block-components-button__text {
    color: white;
}

.page-header {
    display: none;
}

/* Jost Font Classes */
.jost-100 {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.jost-200 {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.jost-300 {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.jost-400 {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.jost-500 {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.jost-700 {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.jost-italic {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
}

.bordered-container {
    position: relative;
    display: inline-block;
  }
  
  .bordered {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  .bordered-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 0 solid rgba(188, 142, 185, 0.5);
    z-index: 1;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .bordered-container:hover::after {
    border-width: 15px;
  }

  .woocommerce-notices-wrapper {
    max-width: 1400px;
    margin: auto;
}

.woocommerce-message {
    margin: 0;
    background-color: #fff;
}

.woocommerce-message {
    border-top-color: #fff;
}

a.button.wc-forward {
    border-radius: 0px;
    font-family: 'Jost';
    font-weight: 400;
    background-color: black;
    color: white;
}

root {
--e-a-btn-bg-info: #000000;
--e-a-btn-bg-info-hover: #000000;
--e-a-btn-bg-info-active: #000000;
}

.gorsel {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.gorsel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(188, 142, 185, 0);
    transition: background-color 0.8s ease;
    mix-blend-mode: overlay;
}

.gorsel:hover::after {
    background-color: rgba(188, 142, 185, 0.9);
}

.gorsel:hover {
    transform: scale(1.05);
}


.scopdesc {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.3s ease;
    font-size: 14px;
    color: #444;
}

.scop:hover .scopdesc {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.scopdesc2 {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); /* aşağıda başlar */
    transition: 
        opacity 0.3s ease, 
        transform 0.5s ease, 
        visibility 0s linear 0.3s;
    color: #444;
}

.scop:hover .scopdesc2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* yukarı çıkar */
    transition-delay: 0s;
}
