:root {
    --themeColoeOne: #0A69D8;
    --themeColorTwo: #ffa500;
    --colorGreen: #05A845;
    --colorOlive: #AB9774;
    --colorYellow: #FFD43A;
    --colorRed: #DB4437;
    --paraColor: #7d7b7b;
    --colorBlack: #333333;
    --colorWhite: #ffffff;
    --lightBg: #edf5ff;
    --lightBg2: #F5F5F5;
    --headingFont: "Jost", serif;
    --bodyFont: "Roboto", serif;
    --cursiveFont: "Oregano", serif;
    --ratingColor: #F9A61C;
    --boxShadow: rgb(149 157 165 / 16%) 0px 3px 22px;
}
.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px 40px 15px;
}

.products-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.product-item {
    padding: 0px 3px;
    margin-bottom: 40px;
    color: #edeef2 !important;
    /* height: 370px; */
    border-radius: 0;
    background: #FFFFFF;
    border: 1px solid #dde0e9;
    position: relative;
}

.product-image {
    background-color: #fff;
    /* padding: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /*height: 200px; */
    margin-bottom: 20px;
 /*   border-radius: 5px; */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
    position: relative;
    overflow: hidden;
}
.product-text {
    text-align: center;
    margin: 15px 0;
}
.product-image img {
    /* max-width: 100%; */
    /* max-height: 100%; */
    height: 100%;
    width: 100%;
    object-fit: contain !important;
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}
.product-image {
    position: relative;
    overflow: hidden; /* Butonun dışarı taşmasını engeller */
}

.view-product {
    position: absolute;
    bottom: 20px; /* Sabit konum */
    left: 50%;
    transform: translateX(-50%) translateY(100px); /* Başlangıçta aşağıda ve gizli */
    opacity: 0; /* Başlangıçta şeffaf */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Daha akıcı hareket */
    z-index: 3;
    width: 60%; /* Buton genişliği */
}

/* Hover Durumu: Görselin üzerine gelince */
.product-item:hover .view-product {
    transform: translateX(-50%) translateY(0); /* Yukarı çıkar */
    opacity: 1; /* Görünür olur */
}

.view-product a {
    display: block;
    background-color: #2289c0; /* Woodcan kırmızı tonu */
    color: #ffffff !important;
    text-align: center;
    padding: 12px 20px;
    text-decoration: none !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    border-radius: 50px; /* Oval buton yapısı */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Butona tıklandığında hafif küçülme efekti */
.view-product a:active {
    transform: scale(0.95);
}

/* Butonun üzerine gelince renk değişimi */
.view-product a:hover {
    background-color: #222; /* Koyu gri/siyah hover rengi */
    color: #fff !important;
}

/* İsteğe bağlı: Görselin üzerine hover gelince hafif karartma */
.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-image::after {
    opacity: 1;
}
.product-image:hover .view-product {
    bottom: 0;
}

.product-category {
    font-size: 14px;
    color: #666;

}

.product-title {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 26px;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #0056b3;
}

@media (max-width: 992px) {
    .product-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .product-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .sidebar-container {
        width: 100%;
    }

    .customer-support {
        padding-bottom: 60px;
    }

    .support-image {
        max-width: 120px;
        max-height: 140px;
    }
}

.detail-page .site-header.header-style-14 {
    padding: 0 !important;
}

/* Mevcut stil ile Ã§akÄ±ÅŸmayÄ± Ã¶nlemek iÃ§in Ã¶zel prefix kullanÄ±yoruz */
.lang-dropdown-container {
    position: relative;
    display: inline-block;
    font-family: inherit;
}

.lang-dropdown-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    font-size: inherit;
    color: inherit;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.lang-dropdown-btn:hover {
    /* background-color: rgba(255, 255, 255, 0.1); */
}

.lang-dropdown-arrow {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.lang-dropdown-container.active .lang-dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.lang-dropdown-container.active .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;

    transition: background-color 0.2s ease;
    font-size: 14px;
}

.lang-dropdown-item:last-child {
    border-bottom: none;
}

.lang-dropdown-item:hover {

}

.lang-dropdown-item.active {

    color: #1976d2;
    font-weight: 500;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .lang-dropdown-menu {
        right: -10px;
        left: -10px;
        min-width: auto;
    }
}

/* Demo iÃ§in mevcut header stilini taklit ediyoruz */
.demo-header {
    background: #333;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pbmit-header-search-btn a {
    color: white;
    text-decoration: none;
}

span#selectedLang {
    color: #fff;
    font-size: 16px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 4px;
    position: relative;
    padding-right: 8px;
    line-height: 16px;
}

.lang-dropdown-btn span {
    color: white;
}

span#selectedLang:after {
    content: "";
    background: #fff;
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
}

/* main gÃ¶rsel iÃ§in basit lightbox */
#productSection .img-zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#productSection .img-zoom-overlay.open {
    display: flex;
}

#productSection .img-zoom-overlay figure {
    margin: 0;
    max-width: 92vw;
    max-height: 92vh;
    position: relative;
    background: white;
}

#productSection .img-zoom-overlay img {
    max-width: 92vw;
    max-height: 92vh;
    display: block;
}

#productSection .img-zoom-overlay .close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgb(0 0 0 / 15%);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

#productSection .main-image img {
    cursor: zoom-in;
}

.product-col {
    padding: 20px;
}


.sidebar-container {
    width: 400px;
    border-radius: 50px;
    background: radial-gradient(circle, #f6f6f6 0, #f4f4f4 100%);
    padding: 20px 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.logo-section {
    padding: 10px 20px 30px;
    border-bottom: 1px solid #e6e9ee;
    margin-bottom: 20px;
}

.logo-title {
    font-size: 32px;
    color: #333;
    font-weight: 400;
    margin-bottom: -5px;
}

.logo-subtitle {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    border-bottom: 1px solid #e6e9ee;
}

.sidebar-menu a {
    display: block;
    padding: 15px 20px;
    color: #555;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.sidebar-menu a:hover {
    background: linear-gradient(to right, #272727, #323334);
    color: white;
}

.sidebar-menu a.active {
    background-color: #2289c0;
    color: white;
}

.sidebar-menu a.activee:before {
    background: #171c1f;
    transition: all .2s;
    right: -55px;
}

.sidebar-menu a.active li:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 55px;
    height: 100%;
    background: 0 0;
    transition: all .3s;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.sidebar-menu a::before {
    content: "»";
    margin-right: 5px;
}

/* --- Woodcan Ürün Detay Premium Tasarım --- */

/* Genel Boşluk ve Arka Plan */
.shop_details {
    background-color: #fff;
    padding-bottom: 80px;
}

/* Ürün Görselleri (Slider) */
.details_slider_nav_item, .details_slider_thumb_item {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.details_slider_nav_item:hover {
    border-color: #2289c0; /* Woodcan Kırmızı */
}

/* Kategori ve Başlık */
.shop_details_text .category {
    text-transform: uppercase;
    font-weight: 700;
    color: #2289c0;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.details_title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Açıklama Alanı */
.short_description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    border-left: 3px solid #eee;
    padding-left: 20px;
}

/* WhatsApp / Sipariş Butonu */
.details_btn_area .common_btn.buy_now {
    background-color: #313334; /* WhatsApp Yeşili */
    color: #fff !important;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(49 51 52 / 88%);
}

.details_btn_area .common_btn.buy_now:hover {
    background-color: #2289c0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgb(49 51 52 / 42%);
}

/* SKU, Etiket ve Paylaşım Bölümü */
.details_tags_sku {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.details_tags_sku li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #777;
}

.details_tags_sku span {
    font-weight: 700;
    color: #1a1a1a;
    margin-right: 5px;
}

.shop_details_shate {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.shop_details_shate li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2289c0;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s;
}

.shop_details_shate li a:hover {
    background: #2289c0;
    color: #fff;
}

/* Tab Yapısı (Açıklama & Ek Bilgiler) */
.shop_details_des_area .nav-pills .nav-link {
    background: transparent;
    color: #888;
    font-weight: 700;
    font-size: 18px;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding: 10px 30px;
}

.shop_details_des_area .nav-pills .nav-link.active {
    color: #1a1a1a;
    border-bottom-color: #2289c0;
}

.tab-content {
    padding-top: 15px;
}

.shop_details_description h3 {
    display: none; /* Tab başlığı olduğu için tekrar gerek yok */
}

/* Benzer Ürünler */
.section_heading_2 h3 {
    font-size: 28px;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}

.section_heading_2 h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #2289c0;
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .details_title { font-size: 28px; }
    .shop_details_slider_area { margin-bottom: 40px; }
}

/* Swiper Konfigürasyonu */
.relatedProductsSwiper {
    padding: 10px 5px 40px 5px;
}

/* Özel Navigasyon Buton Stilleri */
.swiper-button-prev-custom, .swiper-button-next-custom {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}

.swiper-button-prev-custom:hover, .swiper-button-next-custom:hover {
    background: #2289c0;
    border-color: #2289c0;
    color: #fff;
}

.swiper-pagination-bullet-active {
    background: #2289c0 !important;
}

.details_slider_thumb_item a.woodcan-lightbox {
    display: block;
    cursor: zoom-in;
    overflow: hidden;
}

.woodcan-main-img {
    transition: transform 0.5s ease;
}

.details_slider_thumb_item a.woodcan-lightbox:hover .woodcan-main-img {
    transform: scale(1.05); /* Yumuşak bir zoom efekti */
}


/*=============================
    BECOME A VENDOR START
=============================*/
.become_vendor_text {
    margin-top: -25px;
}

.become_vendor_text p {
    margin-top: 20px;
}

.become_vendor_text h1,
.become_vendor_text h2,
.become_vendor_text h3,
.become_vendor_text h4,
.become_vendor_text h5,
.become_vendor_text h6 {
    margin-top: 20px;
    font-weight: 600;
}

.become_vendor_text h1 {
    font-size: 36px;
}

.become_vendor_text h2 {
    font-size: 32px;
}

.become_vendor_text h3 {
    font-size: 28px;
}

.become_vendor_text h4 {
    font-size: 24px;
}

.become_vendor_text h5 {
    font-size: 20px;
}

.become_vendor_text h6 {
    font-size: 16px;
}

.become_vendor_text ul,
.become_vendor_text ol {
    margin-top: 15px;
}

.become_vendor_text ul li,
.become_vendor_text ol li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: var(--paraColor);
    line-height: 35px;
    padding-left: 17px;
}

.become_vendor_text ul li::after,
.become_vendor_text ol li::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: #c6c0c0;
    top: 15px;
    left: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.become_vendor_form {
    padding: 30px 40px 40px 40px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.become_vendor_form h3 {
    text-transform: capitalize;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.single_input .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: initial;
    height: auto;
    border: none;
    font-size: 14px;
    padding: 15px 20px;
}

.single_input .select2-container--default .select2-selection--single {
    background-color: transparent;
    border: none;
}

.become_vendor_form_chek {
    margin-top: 15px;
}

.become_vendor_form_chek input {
    padding: 0;
}

.become_vendor_form_chek .form-check {
    margin-bottom: 30px;
}

.become_vendor_form_chek label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--paraColor);
}

.become_vendor_form_chek label a {
    font-size: 16px;
    font-weight: 400;
    color: var(--themeColorTwo);
}

.become_vendor_form_chek label a:hover {
    color: var(--colorBlack);
}

.single_review {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #eee;
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.single_review .img {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border: 3px solid var(--colorWhite);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.single_review .text {
    width: 93%;
    padding-left: 25px;
}

.single_review .text h5 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.single_review .text h5 span {
    font-size: 14px;
    letter-spacing: -1px;
    color: var(--ratingColor);
}

.single_review .text .date {
    font-size: 14px;
    color: var(--colorBlack);
    margin-top: 5px;
    margin-bottom: 13px;
}

.single_review .text ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.single_review .text ul li {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.single_review_input_area h3 {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
}

.single_input {
    position: relative;
    border: 1px solid #ddd;
    margin-top: 25px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.single_input label {
    position: absolute;
    top: -8px;
    left: 15px;
    background: var(--colorWhite);
    font-size: 14px;
    line-height: 15px;
    padding: 0px 5px;
    text-transform: capitalize;
}

.single_input input,
.single_input textarea {
    border: none;
    font-size: 14px;
    padding: 15px 20px;
}

.single_review_input_area form button {
    margin-top: 20px;
}

.woodcan-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.woodcan-product-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    text-align: left;
}

.woodcan-product-table thead tr {
    background-color: #333333;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
}

.woodcan-product-table th,
.woodcan-product-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eeeeee;
}

.woodcan-product-table tbody tr:nth-of-type(even) {
    background-color: #f9f9f9;
}

.woodcan-product-table tbody tr:hover {
    background-color: #f1f1f1;
    transition: 0.3s;
}

.woodcan-product-table td:first-child {
    font-weight: bold;
    color: #2289c0;
}

@media (max-width: 768px) {
    .woodcan-product-table th,
    .woodcan-product-table td {
        padding: 10px;
        font-size: 13px;
    }
}

.shop_details_des_area .nav-pills {
    display: flex;
    justify-content: center;
}
/*=============================
    BECOME A VENDOR END
=============================*/


.pbmit-right-box .pbmit-button-box {
    margin-right: 50px;
}