* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    position: relative;
}

/* Section Separation */
section {
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
}

section:nth-child(odd) {
    z-index: 10;
}

section:nth-child(even) {
    z-index: 5;
}

/* Footer Reveal Effect - Porto Style */
#footer,
footer {
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
    margin-top: 0 !important;
}

/* Footer içindeki tüm linkler için */
#footer a,
footer a {
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

/* Footer-reveal class için doğru reveal efekti */
.footer-reveal {
    position: relative !important;
    z-index: 1 !important;
    margin-top: -500px !important;
    /* Footer'ın kendi yüksekliği kadar negatif margin */
}

/* Son section'ları footer'ın üstünde tut */
.parallax-container:last-of-type,
.fullwidth-image:last-of-type {
    position: relative;
    z-index: 10;
}

/* Body padding'ini kaldır */
body {
    position: relative;
    padding-bottom: 0 !important;
}

/* Fullwidth Image Container */
.fullwidth-image {
    width: 100vw;
    height: 80vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.fullwidth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

@media (min-width:1000px) and (max-width: 1700px) {
    .product-header-title {
        margin-top: 120px !important;
        font-size: 28px !important;
    }
    .product-title{
        font-size: 13px !important;
    }
    .logo-icon {
        width: 100px !important;
        height: 100px !important;
    }
    .logo img {
        height: 60px;
        width: 205px;
    }
    }


/* Parallax Container */
.parallax-container {
    height: 80vh;
    overflow: hidden;
    position: relative;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    isolation: isolate;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    /* Başlangıç pozisyonunu sabitle */
    background-position-y: 0px;
}

/* Mobile cihazlar için parallax devre dışı bırakma */
@media (max-width: 768px) {
    .parallax-container {
        background-attachment: scroll;
        background-position: center center !important;
        transform: none;
        will-change: auto;
    }
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.parallax-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
}

.parallax-content h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    text-transform: uppercase;
}

.parallax-content p {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: white;
    max-width: 600px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    margin: 0 auto;
}

/* Luxury Button */
.luxury-btn {
    display: inline-block;
    padding: 15px 40px;
    margin-top: 2rem;
    background: transparent;
    border: 2px solid white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.luxury-btn:hover {
    background: white;
    text-shadow: none;
    text-decoration: none;
    color: #333;
    transform: translateY(-2px);
}

/* Content Overlay for Fullwidth Images */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.image-content {
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
    z-index: 4;
}

.image-content h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    text-transform: uppercase;
}

.image-content .subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    .product-header-title {
        margin-top: 90px !important;
    }
        .image-content .subtitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .parallax-content h2 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .parallax-content p {
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for content */
.fade-in {
    animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Styles */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.menu-left {
    flex: 1;
}

.logo {
    flex: 1;
    text-align: center;
}

.logo img {
    transition: all 0.3s ease;
}
.logo-icon {
    position: absolute;
    background: white;
    width: 140px;
    height: 140px;
    padding: 10px;
    left: 20%;
    top: 0;
}
.menu-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger:hover span {
    background-color: #666;
}

/* Hamburger animasyonu */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    overflow-y: auto;
    transform: translateX(0);
}

.sidebar.active {
    right: 0;
    width: 415px;
    visibility: visible;
    transform: translateX(0);
}

.sidebar-header {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #666;
}

.sidebar-nav {
    padding: 1rem 0;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    position: relative;
}

.sidebar-nav a {
    display: block;
    padding: 1rem 2rem;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-nav a:hover {
    background-color: #fff;
    color: #666;
    padding-left: 2.5rem;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}
.dropdown .dropdown-toggle i {
    margin-left: 10px;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
}

.dropdown.active .dropdown-content {
    max-height: 600px;
}

/* Contact dropdown özel durum */
.dropdown.contact-open .contact-dropdown {
    max-height: 700px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Brands Dropdown Styles */

.brand-item {
    text-align: center;
}

.brand-item:hover {
    background: #fff;
}

.brand-logo {
    margin-bottom: 5px;
}

.brand-logo strong {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    display: block;
}

.brand-item span {
    font-size: 10px;
    color: #666;
    font-style: italic;
}

.brands-footer {
    text-align: center;
}

.view-all-brands {
    display: inline-block;
    background: #fff;
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-brands:hover {
    background: #555;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Contact Dropdown Styles */
.contact-dropdown {
    background: #fff;
    min-width: 400px;
    max-width: 450px;
    padding: 0;
}

.contact-form-header {
    padding: 20px 25px 0 25px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.contact-form-header h5 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.contact-form-header p {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.contact-form {
    padding: 0 25px 25px 25px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.1);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 16px;
    appearance: none;
    padding-right: 35px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    background: #333;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: #555;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.submit-btn i {
    font-size: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.contact-form button {
    width: 100%;
    padding: 0.75rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #555;
    transform: translateY(-1px);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    pointer-events: none;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Header Scroll Animation */
.main-header {
    width: 100%;
    padding: 0;
    background-color: #fff;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    transform: translateY(0);
    transition: all 0.6s ease-in-out; /* daha yumuşak */
}

.main-header.scrolled {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    padding: 0;
    transform: translateY(0);
}
.main-header.scrolled .logo-icon {
    box-shadow: 0 13px 11px -8px rgba(0, 0, 0, 0.15);
}
.main-header.scrolled .logo img {
    transform: scale(1); /* küçülerek yumuşak bir geçiş */
    opacity: 0.9;
}Ï

     /* Header üzerindeki içerik için padding */
 body {
     padding-top: 0;
 }

.fullwidth-image:first-of-type {
    margin-top: 0;
}

/* Product Detail Page Styles */
.product-container {
    padding: 100px 200px;
}
.product-header-title {
    margin-top: 150px;
    font-size: 38px;
}
.product-title {
    line-height: 18px;
    font-weight: 600;
    letter-spacing: .72px;
    text-transform: uppercase;
}

.product-detail-link {
    position: relative;
    display: inline-block;
    color: #000;
    text-decoration: none;
}

.product-detail-link:hover {
    color: #000;
}

.product-detail-container {
    margin-left: 0;
    margin-right: 0;
}

.product-detail-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1.5px;
    background: #000;
    transition: width 0.3s ease;
}

.product-detail-link:hover::after {
    width: 100%;
}

.product-detail-container .col-md-5 {
    padding-left: 0 !important;
    padding-right: 15px;
}

.thumb-gallery-wrapper {
    margin-left: -15px;
    width: calc(100% + 15px);
    position: relative;
}

.thumb-gallery-detail {
    margin-bottom: 0 !important;
}

.thumb-gallery-detail .owl-stage-outer,
.thumb-gallery-detail .owl-stage {
    height: 100vh;
}
.dropdown-toggle::after{
    display: none !important;
}
.thumb-gallery-detail .owl-item {
    height: 100vh;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.thumb-gallery-detail .owl-item img {
    width: 100%;
    height: 100%;
    min-width: 800px;
    object-fit: cover;
    object-position: center;
}

.thumb-gallery-thumbs {
    margin-top: 10px;
    margin-left: -15px;
    width: calc(100% + 15px);
}

.thumb-gallery-thumbs .owl-item {
    height: 80px;
    margin-right: 8px;
}

.thumb-gallery-thumbs .owl-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.thumb-gallery-thumbs .owl-item.active img,
.thumb-gallery-thumbs .owl-item:hover img {
    border-color: #333;
    transform: scale(1.05);
}

/* Navigation arrows için stil */
.thumb-gallery-detail .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.thumb-gallery-detail .owl-nav button {
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
}

/* Color Selection Styles */
.color-selection {
    display: flex;
    align-items: center;
    gap: 12px;
}

.color-selection input[type="radio"] {
    display: none;
}

.color-option {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.color-option::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Renk tanımlamaları */
.color-black {
    background-color: #000000;
}

.color-burgundy {
    background-color: #8B0000;
}

.color-beige {
    background-color: #F5F5DC;
    border: 1px solid #ddd;
}

.color-khaki {
    background-color: #6B7332;
}

/* Hover durumu */
.color-option:hover::before {
    border-color: #333;
}

/* Seçili durum */
.color-selection input[type="radio"]:checked+.color-option::before {
    border-color: #333;
}

/* Product Details Sidebar Styles */
.product-details-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999;
    overflow-y: auto;
}

.product-details-sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.sidebar-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.close-details-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-details-btn:hover {
    color: #333;
}

.sidebar-content {
    padding: 1rem;
}

/* Accordion Customizations */
.accordion-item {
    border: 1px solid #e9ecef;
    background: #fff;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    background: #fff;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #000;
}

.accordion-button::after {
    margin-left: auto;
}

.accordion-body {
    padding: 1.25rem;
    font-size: 0.9rem;
}

/* Detail List Styles */
.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list strong {
    color: #333;
    min-width: 120px;
}

/* Contact Info Styles */
.contact-info {
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-item i {
    font-size: 1.1rem;
    color: #333;
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.contact-item span {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* Contact Form Styles */
.contact-form h6 {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #333;
}

.contact-form .form-control-sm {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
}

/* Details Overlay */
.details-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1001;
    pointer-events: none;
}

.details-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Responsive için slider boyutları */
@media (max-width: 768px) {
    .product-container {
        padding: 0;
    }
    .hamburger {
        width: 27px;
        height: 20px;
    }
    .hamburger span{
        height: 2px;
    }

    .logo img {
        width: 160px;
        height: 50px;
    }
    .logo-icon {
        width: 80px;
        height: 80px;
        left: 5%;
        padding: 5px;
    }
    .btn-modern {
        width: 100%;
    }

    .thumb-gallery-detail .owl-stage-outer,
    .thumb-gallery-detail .owl-stage,
    .thumb-gallery-detail .owl-item {
        height: 50vh;
    }

    .thumb-gallery-thumbs .owl-item {
        height: 60px;
    }

    .thumb-gallery-wrapper {
        margin-left: -15px;
        width: calc(100% + 30px);
    }

    .thumb-gallery-thumbs {
        margin-left: -15px;
        width: calc(100% + 30px);
    }
    .contact-dropdown {
        min-width: 100%;
        max-width: 100%;
        width: calc(100% - 20px);
        margin: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        /* Ayrı scroll kaldırıldı, sidebar'ın scroll'u kullanılacak */
        overflow: visible;
    }

    .dropdown.contact-open .contact-dropdown {
        max-height: none; /* Max height kaldırıldı */
        overflow: visible; /* Ayrı scroll kaldırıldı */
    }

    body.sidebar-open {
        height: 100%;
        overflow: hidden;
    }

    .color-selection {
        gap: 10px;
    }

    .color-option {
        width: 20px;
        height: 20px;
    }

    .product-details-sidebar {
        width: 320px;
        right: -320px;
    }

    .sidebar-header {
        padding: 1rem;
    }

    .sidebar-content {
        padding: 0.75rem;
    }

    .contact-item {
        padding: 0.5rem;
    }
}
@media (min-width: 1200px) and (max-width: 1900px) {
    .thumb-gallery-detail .owl-item img {
        min-width: 620px !important;
    }
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .thumb-gallery-detail .owl-item img {
        min-width: 100% !important;
    }
    .nav-container {
        padding: 0 1rem;
    }

    .sidebar {
        width: 280px;
        right: -280px;
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
        height: auto; /* Dinamik yükseklik */
        max-height: none; /* Maksimum yükseklik sınırı yok */
        overflow-y: visible; /* Normal durumda scroll yok */
        padding-bottom: 40px; /* Extra space at bottom for form */
    }

    /* Sidebar dropdown açık olduğunda scroll aktif et */
    .sidebar.has-open-dropdown {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        height: 100vh;
        height: 100dvh;
    }
    .sidebar.active {
        width: 310px;
    }
    .sidebar-nav a {
        padding: 1rem 1.5rem;
        font-size: 15px;
    }

    .sidebar-nav a:hover {
        padding-left: 2rem;
    }

    /* Mobile için brands dropdown */
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .brand-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 10px;
    }

    .brand-logo {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .brand-logo strong {
        font-size: 11px;
    }

    .brand-item span {
        font-size: 9px;
    }


    /* Mobile için contact dropdown */
    .contact-dropdown {
        min-width: 290px;
        max-width: 310px;
    }

    .contact-form-header {
        padding: 15px 20px 0 20px;    }

    .contact-form {
        padding: 0 10px 20px 10px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        color: #000;
        padding: 8px 10px;
        font-size: 13px;
    }

    .submit-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    /* Mobilde header'daki dil değiştiricileri gizle */
    .menu-right .language-switcher {
        display: none;
    }

    /* Sidebar içindeki dil değiştirici stilleri */
    .sidebar-language-switcher {
        display: flex;
        justify-content: center;
        gap: 1rem;
        padding: 1rem 2rem;
        border-bottom: 1px solid #f0f0f0;
        background-color: #f9f9f9;
    }

    .sidebar-language-switcher .lang-btn {
        background: white;
        border: 2px solid #ddd;
        border-radius: 8px;
        padding: 0.5rem 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 12px;
        font-weight: 600;
        color: #333;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }


    .sidebar-language-switcher .lang-btn img {
        width: 16px;
        height: 12px;
    }
}

.sidebar-language-switcher{
    display: none;
}
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-right: 20px;
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 0.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


.lang-btn img {
    display: block;
    transition: transform 0.3s ease;
}

.lang-btn:hover img {
    transform: scale(1.1);
}