
    @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;
    }





    /* hakkımızda */
    .baslik-gorsel-container {
        max-width: 100%;
        margin: 0 1rem;
        position: relative;
        display: flex;
        overflow: hidden;
    }

    /* Görsel */
    .baslik-gorsel-img {
        width: 100%;
        height: 27.5rem;
        border-radius: 1rem;
        background-image: 
            linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
            url("/public/urunler/banner.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


    /* Başlık ve breadcrumb */
    .baslik-gorsel-context {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); /* ortalama */
        z-index: 1;
        text-align: center;
        color: #ffff;
        min-width: 95%;
    }


    /* Başlık */
    .baslik-gorsel-title {
        font-size: 4rem;
        font-weight: bold;
        letter-spacing: 0.4rem;
        line-height: 0.20;
        color: #ffff;
    }

    /* Breadcrumb linkleri */
    .breadcrumb-link {
        color: #ffff;
        text-decoration: none;
        cursor: pointer;
        font-size: 1rem;
    }

    /* Breadcrumb devre dışı */
    .breadcrumb-disabled {
        font-size: 1rem;
        color: #ffff;
    }


    .title{
        font-size: 2rem;
        font-weight: 500;
        margin: 0;
        margin-bottom: 2rem;
    }

    
    .urunler-container{
        padding: 4rem 6rem 4rem 6rem;
           min-height: 70vh;
    }

    .kategoriler-container{
        display: flex;
        gap: 1rem;

    }

    .tab-container{
        background-color:#fff;
        padding: 0.75rem;
        color:#343a40;
        font-size: 1rem;
        border-radius: 0.25rem;
        border: 0.1rem solid #d9dbdb;
        margin-bottom: 2rem;
    }

    .tab-container:hover{
        cursor: pointer;
    }

    .active-tab{
        background-color: #B39DDB;
        color: #ffff;
        border: 0.1rem solid #B39DDB;
    }



    .card-container{
        display: flex;
        gap: 1rem;
        width: 100%;
        flex-wrap: wrap;
     
    }

    .card{
        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;
    }

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

    .card-title-container {
      box-sizing: border-box;

      
    }

    .card-title1 {
        font-size: 1rem;
        text-align: center;
        font-weight: 500;
        white-space: normal;
        word-wrap: break-word;   
        color:#343a40; 
        display: inline-block; 
        
    }

    .card-title1:hover{
        cursor: pointer;
        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) {

        /* iletişim */

        .title{
            margin-bottom: 1rem;
        }

        .urunler-container{
           padding: 2rem 3rem 2rem 3rem;
        }

        .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;
    }

    /* ürünler */

    .baslik-gorsel-container {
        margin-top: 7rem ;
    }

    .card{
        width: calc(33.333% - 0.6666rem); /* 5 kart yan yana */
        border-radius: 0.5rem;
    }


    .kategoriler-container {
        display: flex;
        overflow-x: auto;   /* Yatay kaydırma aktif */
        scrollbar-width: none;  /* Firefox için scrollbar gizle */
        -ms-overflow-style: none; /* IE/Edge için */
    }

    .kategoriler-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari için */
    }

    .tab-container{
        background-color:#fff;
        color:#343a40;
        border: 0.1rem solid #d9dbdb;
        flex-shrink: 0;
    }

    .active-tab{
        background-color: #B39DDB;
        color: #ffff;
        border: 0.1rem solid #B39DDB;
    }







    /* 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;
    }



    /* ekatalog */

    
    .baslik-gorsel-container {
        margin: 5rem 1rem 0 1rem;
    }


    .baslik-gorsel-img { 
        border-radius: 0.75rem;
        height: 50vh; 
    }



    .baslik-gorsel-title {
        font-size: 1.5rem;  /* mobilde biraz küçültmek iyi olur */
        letter-spacing: 0.2rem;
    }

    .breadcrumb-link {
        font-size: 0.9rem;
    }

    .breadcrumb-disabled {
        font-size: 0.9rem;
    }

    
    .title{
      font-size: 1.3rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }




    .urunler-container{
        padding:  2rem 1rem;
        padding-bottom: 2rem;
    }

    
    .kategoriler-container {
        display: flex;
        gap: 1rem;
        overflow-x: auto;   /* Yatay kaydırma aktif */
        scrollbar-width: none;  /* Firefox için scrollbar gizle */
        -ms-overflow-style: none; /* IE/Edge için */
    }

    .kategoriler-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari için */
    }

    .tab-container{
        background-color:#fff;
        padding: 0.5rem;
        color:#343a40;
        font-size: 0.9rem;
        border-radius: 0.25rem;
        border: 0.1rem solid #d9dbdb;
        margin-bottom: 2rem;
        flex-shrink: 0;
    }

    .active-tab{
        background-color: #B39DDB;
        color: #ffff;
        border: 0.1rem solid #B39DDB;
    }


    .card-container{
        display: flex;
        gap: 1rem;
        width: 100%;
        flex-wrap: wrap;
    }

    .card{
        width: calc(50% - 0.5rem); /* 5 kart yan yana */
        border-radius: 0.5rem;
        gap:0.5rem;
    }

    .card-title1 {
      font-size: 0.9rem;
      font-weight: 500;
    }


    




    /* 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 */
    }
  }
