
    @font-face {
        font-family: 'Nexa';
        src: url('/fonts/Web/Nexa-Regular.woff2') format('woff2'),
            url('/fonts/Web/Nexa-Regular.woff') format('woff');
        font-weight: 400;
        font-style: normal;
    }


    html,
    body {
    padding: 0;
    margin: 0;
    font-family: 'Nexa', sans-serif;
    background-color: #ffff;
    color: #343a40;
    }

    .main-container{
        padding-top: 1rem;
    }

        /* navbar new dil */

    .launge-container {
        margin: 0 1rem 1rem 1rem;
        background-color: #eaeae7;
        max-width: 100%;
        border-radius: 1rem;
        box-sizing: border-box;

        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 3rem;
        position: relative;
    }

        .launge-container::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 2rem;
            right: 2rem;
            height: 4px;
            border-radius: 2px;
            background: linear-gradient(
                90deg,
                #A7DAD7,
                #B39DDB,
                #A7DAD7
            );
        }


    .launge-sosyal-icon {
        display: flex;
        gap: 1rem;
    }

    


    .social-icon i {
        color: #333;
        font-size: 1.5rem;
        text-decoration: none;
    }

    .social-icon :hover{
        color: #B39DDB;
    }


    .launge-text {
        font-size: 1rem;
        font-weight: 500;
    }

    .language-selector {
        position: relative; /* zaten var */
        cursor: pointer;
        user-select: none;
        z-index: 100; /* üstte olsun */
    }
    .language-selected {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 1rem;
    }

    .language-selected i {
        font-size: 0.6rem;
    }

    .language-options {
        display: none;
        position: absolute;
        top: 2rem;
        left: -2rem;
        background-color: #eaeae7;
        border-radius: 1rem;
        overflow: hidden;
        padding: 1rem 2rem;
    }

    .language-options a {
        display: block;              /* ✔ inline → block */
        position: relative;
        cursor: pointer;
        transition: color 0.3s ease;
        margin-bottom: 1rem;
        font-size: 1rem;
        color: inherit;
        text-decoration: none;
    }

    .language-options a:last-child {
        margin-bottom: 0;
    }

    .language-options a::after {
        content: "";
        position: absolute;
        bottom: -0.25rem;
        left: 0;
        right: 0;
        margin: auto;
        height: 0.5px;
        background-color: #B39DDB;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .language-options a:hover::after,
    .language-options a.active::after {
        transform: scaleX(1);
    }

    /* new navbar */

    .bar-container {
        margin: 1rem;
        padding: 2rem 2rem 2rem 2rem;
        display: flex;
        flex-direction: column;
        background-color: transparent;
        border-radius: 0;
        transition: all 0.3s ease;
        position: relative;
        z-index: 10;
    }

    .ust-bar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-img {
        width: 15rem;
        height: auto;
    }


    .ust-bar-item-continer {
        display: flex;
        gap: 1rem;
    }

    .ust-bar-item {
        font-size: 1rem;
        position: relative;
        padding-bottom: 0.2rem;
        cursor: pointer;
        text-decoration: none;
        color: #343a40;
    }


    .ust-bar-item::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0.05rem;
        background-color: #B39DDB;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .ust-bar-item:hover::after {
        transform: scaleX(1);
    }

    .hamburger-button-container{
        display: none;
    }


    .alt-bar-container {
        display: none; /* başlangıçta tamamen gizli */
        pointer-events: none;
        position: absolute; 
        top: 100%; 
        left: 0;
        width: 100%;
        background-color: #ffff;
        border-radius: 0 0 1rem 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem 2rem 2rem;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 10;
        box-sizing: border-box;
    }

    .alt-bar-item-sub-container {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .ara-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start; /* <-- BU ÇOK ÖNEMLİ */
    }

    .alt-bar-item-sub {
        font-size: 1rem;
        position: relative; /* ::after için gerekli */
        cursor: pointer;
        padding-bottom: 0.2rem; /* çizgi ile yazı arasına boşluk */
        text-decoration: none;
        color: #343a40;
    }

    .alt-bar-item-sub::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0.05rem;
        background-color: #B39DDB;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .alt-bar-item-sub:hover::after {
        transform: scaleX(1);
    }


    .bar-container.active {
        background-color: #ffff;
        border-top-right-radius: 1rem;
        border-top-left-radius: 1rem;
    }

    .bar-container.active .alt-bar-container {
        opacity: 1;
        transform: translateY(0);
        display: flex; /* aktif olduğunda göster */
        pointer-events: auto;
        
    }
    
    /* Hafif buzlama için */
    body.bar-active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3); /* gri ton */
        backdrop-filter: blur(0.1rem);        /* daha hafif buzlama */
        -webkit-backdrop-filter: blur(3px);
        z-index: 5;                        
        pointer-events: none;              
    }





    .mobil-bar-container{
        display: none;
    }

    .mobil-menu-container{
        display: none;
    }






    
    /* ürün-detay */

    .urun-detay-container {
        padding: 0 3rem; 
    }

    .harita-container {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
    }

    .path-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        
    }

    .breadcrumb{
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .breadcrumb-link {
        text-decoration: none;
        color: inherit; /* Prevent color changes on hover */
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .breadcrumb-separator {
        font-size: 0.7rem;
        color: #999;
    }

    .product-name {
        white-space: nowrap; /* Prevent line breaks */
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%; /* Ensure it takes full width available */
        font-size: 0.8rem;
        display: inline-block;
        color: #B39DDB;
    }


    /* ürün */

    .urun-container-mobile{
        display: none;
    }
    .urun-container-pc {
        display: flex;
        justify-content: space-between;
        gap: 2rem;
        margin: 3rem 0;
        
    }

    .urun-left-container {
        display: flex;
        flex: 1;
        gap: 0.5rem;
        flex-direction: column;
    }


    .urun-img {
        cursor: pointer;
        width: 100%;
        height: auto;
        border-radius: 0.5rem;
        border: 0.1rem solid #ffff;
    }

    .aktif-urun{
        border: 0.1rem solid #B39DDB;
    }

    .urun-right-container {
        flex: 14;
        display: flex;
        gap: 4rem;
        align-items: flex-start;
    }

    .urun-buyuk-img {
        flex: 3;
        border: 0.1rem solid #B39DDB;
        border-radius: 1rem;
        padding: 1rem;
    }

    .urun-buyuk-img img {
        width: 100%;
        height: auto;
        border-radius: 1rem;
    }

    .urun-info {
        flex: 2;
        gap: 1rem;
        display: flex;
        flex-direction: column;

        position: sticky;   /* Sabitle */
        top: 2rem;          /* Üstten mesafe (header vs. çakışmasın) */
        align-self: flex-start; 
    }

    .urun-baslik {
        font-size: 2rem;
        font-weight: 500;
        line-height: 2rem;
        margin: 0;
    }

    .urun-marka {
        font-size: 1.3rem;
        font-weight: bold;
        color: #B39DDB;
    }

    .urun-aciklama {
        font-size: 1rem;
        margin: 0;
        line-height: 1.4;
    }

    .urun-iletisim {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start; /* Butonları sola hizalar */
    }

    .konum-btn, .call-btn, .whatsapp-btn {
        background-color: #ff6347;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        font-size: 1rem;
        display: flex; /* Sadece flex */
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        width: auto; /* Genişlik içerik kadar olsun */
    }

    .konum-btn i, .call-btn i, .whatsapp-btn i {
        font-size: 1rem;
    }

    .call-btn {
        background-color: #0a66c2;
    }

    .whatsapp-btn {
        background-color: #25d366;
    }


    /* benzer ürünler */


    .vitrin-container{
        margin: 4rem 0;
    }
    
    .vitrin-title{
        font-size: 2rem;
        font-weight: 500;
        margin-bottom: 2rem;
    }
    
    .vitrin-alt-container{
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .vitrin-urun-container {
        width: calc(20% - 0.8rem); /* 5 kart yan yana */
        background-color: #fff;
        border: 0.1rem solid #d9dbdb;
        padding: 1rem;
        border-radius: 0.5rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        box-sizing: border-box;
        gap: 1rem;
        text-decoration: none;  /* linkin alt çizgisini kaldır */
        color: inherit;    
    }

    .vitrin-urun-img{
        width: 100%;
        height: auto;
        object-fit: contain;
        flex-shrink: 0;
    }

    .vitrin-urun-container {
      box-sizing: border-box;
    }
    
    .vitrin-urun-title {
        font-size: 1rem;
        text-align: center;
        font-weight: 500;
        color:#343a40; 
    }
    .vitrin-urun-title:hover{
        color: #B39DDB;
    }
    




    /* foother */


    .foother-container {
        background-color: #f8f9fa;
        display: flex;
        padding: 4rem 6rem;
        justify-content: space-between;
        padding-bottom: 6rem;
    }

    .foother-item-title {
        color: #343a40;
        font-size: 1.5rem;
        font-weight: 500;
        padding-bottom: 0.5rem;
        position: relative;
        display: inline-block;
    }

    .foother-item-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0; /* Çizgi soldan başlar */
        width: 50%; /* Yazının genişliğinin %30’u kadar */
        height: 0.15rem;
        background-color: #343a40;
    }




    .foother-item-text-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .foother-item-text {
        color: #343a40;
        font-size: 1rem;
    }

    .foother-item-link {
        color: #343a40;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

    .foother-item-link i {
        font-size: 1rem;
    }

    .foother-item-link:hover {
        color: #B39DDB; /* Hover rengi */
    }

    .foother-social-icons {
        display: flex;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .social-icon {
        color: #343a40;
        font-size: 1.5rem;
        transition: color 0.3s ease;
    }

    .social-icon:hover {
        color: #B39DDB;
    }


    .foother-bottom {
        /* background-color: rgb(29,29,31); */
        color: #343a40;
        text-align: center;
        padding: 1rem 0;
        font-size: 0.9rem;
    }

    .foother-bottom-circle {
        text-decoration: none;
        color: #343a40;
    }


    .mobil-launge-container{
        display: none;
    }


    /* kucuk ekran pc */

    @media (max-width: 1300px) {

        /* urun detay */



        .foother-container {
            padding: 2rem 3rem;
            gap: 2rem;
        }


    }


/* TABLET */

@media (max-width: 1024px) {


    /* navbar new dil */
    .main-container{
        padding-top: 0;
    }

    .launge-container {
        display: none;
    }

    .bar-container{
        display: none;
    }

    .mobil-bar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: #fff;
        padding: 0 1rem;
        height: 6rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .mobil-logo-img {
        width: 10rem;
        height: auto;
    }

    .mobil-hamburger-button-container {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .mobil-hamburger-button-container i {
        font-size: 1.75rem;
        color: #333;
    }


    .mobil-menu-container {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        z-index: 1000;
        overflow-y: auto;
        transition: all 0.3s ease;
    }

    .mobil-menu-container.active {
        display: flex;
    }

    .mobil-menu-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        border-bottom: 0.01rem solid #eee;
        height: 6rem;
    }

    .mobil-menu-action-icon i{
        font-size: 1.75rem;
        color: #333;
    }

    .mobil-main-menu, .mobil-submenu-items {
        display: flex;
        flex-direction: column;
    }

    .mobil-menu-item {
        padding: 1rem 0;
        margin: 0 1rem;
        cursor: pointer;
        font-weight: 500;
        border-bottom: 0.01rem solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1rem;
        color: #343a40;
        text-decoration: none;
    }

    .mobil-menu-item i {
        font-size: 1rem;    
        color: currentColor;   
        transition: transform 0.3s ease; 
    }

    .mobil-submenu-items {
        display: none;
        padding-left: 1rem;
    }

    .mobil-submenu {
        display: flex;       
        flex-direction: column;
        padding: 0;               
        margin: 0;         
    }

    .mobil-submenu-item {
        display: block;
        padding: 1rem 0;     
        font-weight: 500;
        font-size: 1rem;
        color: #343a40;
        text-decoration: none;
        border-bottom: 0.01rem solid #eee;
    }

    .mobil-submenu-items {
        display: none;           
        flex-direction: column;
    }

    .mobil-submenu-items.active {
        display: flex;
    }

    /* urundetay */

    .urun-detay-container{
        padding: 1rem;
        margin-top: 6rem;
    }


    /* benzer urunler */

    .vitrin-urun-container {
        width: calc(25% - 0.8rem);
    }

    .urun-right-container {
        gap: 2rem;
    }


    /* foother */


    .foother-container {
        background-color: #f8f9fa;
        display: flex;
        padding: 2rem 3rem;
        flex-wrap: wrap; 
        gap: 2rem;
    }

    .foother-item-title {
        color: #343a40;
        font-size: 1.5rem;
        font-weight: 500;
        padding-bottom: 0.5rem;
        position: relative;
        display: inline-block;
    }


}




@media (max-width: 767px) {

    /* navbar new dil */

    .mobil-bar-container {
        height: 4rem;
    }

    .mobil-logo-img {
        width: 6rem;
    }

    .mobil-hamburger-button-container i {
        font-size: 1.5rem;
    }



    /* Üst logo + X / geri */
    .mobil-menu-top {
        height: 4rem;
    }

    .mobil-menu-action-icon i{
        font-size: 1.5rem;
        color: #333;
    }


    .mobil-menu-item {
        font-size: 0.9rem;
    }



    .mobil-menu-item i {
        font-size: 0.9rem;    
    }

    .mobil-submenu-item {
        font-size: 0.9rem;
    }



    /* urundetay */

    
    
    /* site haritası */

    .urun-detay-container{
        padding: 1rem;
        margin-top: 4rem;
    }

    .harita-container {
        flex-direction: column;
    }


    
    .breadcrumb{
        font-size: 0.7rem;
    }
    .breadcrumb-link {
        font-size: 0.7rem;
    }
    
    .breadcrumb-separator {
        font-size: 0.6rem;
    }
    
    .product-name {
        font-size: 0.7rem;
    }


    /* ürün */

    .urun-container-pc {
        display: none;
    }

    .urun-container-mobile{
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
        
    }

    
    .urun-buyuk-img {
        border-radius: 0.5rem;
        position: relative;
        
    }
    
    .urun-buyuk-img img {
        width: 100%;
        height: auto;
    }

    .dot-container {
        text-align: center;
        position: absolute;
        bottom: 0.5rem; /* büyük görselin üstüne almak için */
        width: 100%;
    }
    
    .dot {
        height: 1rem;
        width: 1rem;
        margin: 0 5px;
        background-color: #bbb; /* normal renk */
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.3s ease;
        cursor: pointer;
        border: none;          /* çerçeve kaldırıldı */
        box-sizing: border-box;/* boyut sabit kalır */
    }


    .dot.aktif-urun {
    background-color: #B39DDB; /* aktif renk */
}

    
    .urun-info {
        flex: 1;
        gap: 1rem;
        display: flex;
        flex-direction: column;
    }
    
    .urun-baslik {
        font-size: 1.3rem;
        font-weight: bold;
        line-height: 1.3rem;
        margin-bottom: 0;
    }
    
    .urun-marka {
        font-size: 1.1rem;
        font-weight: bold;
        color:#B39DDB;
    }
    
    .urun-aciklama {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .urun-iletisim {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start; /* Butonları sola hizalar */
    }
    
    .konum-btn, .call-btn, .whatsapp-btn {
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .konum-btn i, .call-btn i, .whatsapp-btn i {
        font-size: 0.9rem;
    }
    



    /* benzer urunler */


    .vitrin-container{
        margin: 2rem 0 1rem 0;
     }
     
     .vitrin-title{
         font-size: 1.3rem;
         margin-bottom: 2rem;
     }
     
     .vitrin-alt-container{
        gap: 1rem;
     }
     
     .vitrin-urun-container {
        width: calc(50% - 0.5rem);
        padding: 1rem;
        border-radius: 0.5rem;
        gap: 0.5rem;
     }
     
    
    .vitrin-urun-title {
        font-size: 0.9rem;
        text-align: center;
        font-weight: 500;
        color:#343a40; 
    }
    .vitrin-urun-title:hover{
        color: #B39DDB;
    }
     
    




    /* foother */

    .foother-container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .foother-item {
        width: 100%; /* iki item yan yana sığsın */
    }

    .foother-item-title {
        font-size: 1.2rem;
        display: inline-block;
    }

    
    .foother-item-text {
        font-size: 0.9rem;
    }
    
    .foother-item-link {
        font-size: 0.9rem;
    }
    
    .foother-item-link i {
        font-size: 0.9rem;
    }
    
    .foother-social-icons {
        gap: 1.3rem;
    }
    
    .social-icon {
        font-size: 1.3rem;
    }



    /* mobil dil seçimi */

    .mobil-launge-container{
        display: flex;
        position: fixed;

        bottom: 2rem;
        left:1rem;

    }

    .chosen-container{
        display: flex;
        
        background-color: #eaeae7;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        border-radius: 0.25rem;
    }

    .mobil-launge-text{
        font-size: 0.9rem;
    }

    .mobil-launge-container i{
        font-size: 0.9rem;
        color:#343a40;
    }

    .selected-container {
        display: none; /* ilk başta gizli */
        position: absolute;
        bottom: 100%; /* chosen-container'ın üstünde */
        left: 0;
        background-color: #eaeae7;
        padding: 1rem;
        margin-bottom: 0.5rem;
        border-radius: 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }


    .selected-text {
        font-size: 0.9rem;
        padding: 0.25rem 0;
        color: inherit;
        text-decoration: none;
    }


    /* aktif dil */
    .selected-text.active {
        border-bottom: 0.01rem solid #343a40;
    }


    
}

@media (min-width: 2048px) {
    html {
      font-size: 30px; /* 2K ekranlar için artırılmış font-size */
    }
  }
