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

    /* new-slider */

    .new-slider-container{
        position: relative;
        max-width: 100%;
        padding: 0 1rem 2rem 1rem;
        overflow: hidden;
        border-radius: 1rem;
    }

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


    .slider-controls{
        position: absolute;
        bottom: 4rem;
        right: 2rem;
        display: flex;
        gap: 1rem;
    }

    .slider-btn{
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        border: none;
        background-color: #B39DDB;
        color: #fff;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .slider-btn:disabled{
        opacity: 0.5;
        cursor: not-allowed;
    }

    .slider-btn:hover:not(:disabled){
        transform: scale(1.1);
    }

    /* SLIDE LINK */
    .slider-link{
        display: none;
        position: relative;
    }

    .slider-link.active{
        display: block;
    }



    /* DOT */
    .slider-dots{
        position: absolute;
        bottom: 4rem;   /* BUTONLARLA AYNI HİZA */
        left: 2rem;     /* SOL MARGIN KORUNDU */
        display: flex;
        gap: 0.6rem;
    }

    .slider-dot{
        width: 0.75rem;
        height: 0.75rem;
        border-radius: 50%;
        background: #B39DDB;
        cursor: pointer;
        transition: 0.3s;
        box-shadow: 0 2px 6px rgba(0,0,0,0.25);
        opacity: 0.6;
    }

    .slider-dot.active{
        opacity: 1;
        transform: scale(1.4);
    }




    /* ürün kategorileri */


    .urun-kategorileri-container {
        padding: 2rem 1rem;
    }

    .urun-kategorileri-baslik {
        font-size: 2rem;
        font-weight: 500;
        margin-bottom: 2rem;
        font-weight: bold;
        text-align: center;
    }

    .urun-kategorileri-card-wrapper {
      position: relative;
      overflow: hidden; /* sadece görünen alan */
    }

    .urun-kategorileri-card-container {
      display: flex;
      gap: 1rem;
      transition: transform 0.5s ease; /* kaydırma animasyonu */
    }

    .urun-kategorileri-card {
        width: calc(20% - 0.8rem); /* 5 kart yan yana */
        background-color: #fff;
        border: 0.1rem solid #d9dbdb;
        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;
        text-decoration: none;
        color: inherit;
    }

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

    .urun-kategorileri-title-container {
      
      box-sizing: border-box;
    }

    .urun-kategorileri-title {
      margin-top: auto;
      font-size: 1rem;
      text-align: center;
      font-weight: 500;
      white-space: normal;
      word-wrap: break-word;   
      margin: 1.5rem;
    }

    .urun-kategorileri-title:hover {
        color: #B39DDB;
    }


    /* Butonlar */
    .urun-kategorileri-button-left-container,
    .urun-kategorileri-button-right-container {
      background-color: #B39DDB;
      width: 2.5rem;
      height: 2.25rem;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1rem;
      cursor: pointer;
      z-index: 5;
    }

    .urun-kategorileri-button-left-container {
      left: 0;
      border-top-right-radius: 2rem;
      border-bottom-right-radius: 2rem;
    }

    .urun-kategorileri-button-right-container {
      right: 0;
      border-top-left-radius: 2rem;
      border-bottom-left-radius: 2rem;
    }

    

    /* Dotlar */
    .dot-container {
      display: flex;
      justify-content: center;
      margin-top: 1rem;
      gap: 0.5rem;
    }

    .dot {
      width: 0.7rem;
      height: 0.7rem;
      background-color: #ccc;
      border-radius: 50%;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .dot:not(.dot-active):hover {
      background-color: #666;
    }

    .dot-active {
      background-color: #B39DDB;
    }




/* öne çıkan ürünler */

.one-cikan-urunler-container {
  padding: 2rem 1rem;
}
.one-cikan-urunler-baslik {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  font-weight: bold;
  text-align: center;
}
.one-cikan-urunler-card-wrapper {
  position: relative;
  overflow: hidden;
}
.one-cikan-urunler-card-container {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
}

.one-cikan-urunler-card {
  width: calc(20% - 0.8rem);
  background-color: #fff;
  padding: 1rem;
  border: 0.1rem solid #d9dbdb;
  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;
  color: inherit;
  text-decoration: none;
}

.one-cikan-urunler-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.one-cikan-urunler-title-container {
  box-sizing: border-box;
}
.one-cikan-urunler-title {
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  white-space: normal;
  word-wrap: break-word;
  margin-top: 1rem;
}
.one-cikan-urunler-title:hover{
    cursor: pointer;
    color: #B39DDB;
}



.one-cikan-urunler-button-left-container,
.one-cikan-urunler-button-right-container {
  background-color: #B39DDB;
  width: 2.5rem;
  height: 2.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 5;
}
.one-cikan-urunler-button-left-container {
  left: 0;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
.one-cikan-urunler-button-right-container {
  right: 0;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.featured-dot-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}
.featured-dot-container .dot {
  width: 0.7rem;
  height: 0.7rem;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.featured-dot-container .dot:not(.dot-active):hover {
  background-color: #666;
}
.featured-dot-container .dot-active {
  background-color: #B39DDB;
}



/* hakkimizda */

.hakkimizda-container{
    display: flex;
    padding: 2rem 1rem;
    gap: 6rem;
}

.hakkimizda-context-container{
    display: flex;
    flex-direction: column;
    width: 50%;
    gap:2rem;
    justify-content: center;
}

.hakkimizda-context-title{
    font-size: 2rem;
    font-weight: 500;
    font-weight: bold;
    margin: 0;
}

.hakkimizda-context-explanations{
    font-size: 1rem;
    line-height: 1.4rem;
    margin: 0;
}

.hakkimizda-context-button{
    display: inline-block; /* 🔥 BU */
    padding: 1rem 2rem;
    background-color: #B39DDB;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1rem;
    width: fit-content; /* ekstra garanti */
    text-decoration: none;
}




.hakkimizda-img-container{
    width: 50%;

}

.hakkimizda-img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* katalog */

.katalog-container{
    display: flex;
    padding: 2rem 1rem;
    gap: 6rem;
    margin-bottom: 2rem;
}

.katalog-context-container{
    display: flex;
    flex-direction: column;
    width: 50%;
    gap:2rem;
    justify-content: center;
}

.katalog-context-title{
    font-size: 2rem;
    font-weight: 500;
    font-weight: bold;

}

.katalog-context-explanations{
    font-size: 1rem;
    line-height: 1.4rem;
    margin: 0;
}

.katalog-context-button{
    display: inline-block; /* 🔥 BU */
    padding: 1rem 2rem;
    background-color: #B39DDB;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1rem;
    width: fit-content; /* ekstra garanti */
    text-decoration: none;
}




.katalog-img-container{
    width: 50%;

}

.katalog-img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}


/* banner ıletısım */

.banner-container {
  width: 100%;
  max-width: calc(100% - 2rem); /* Sağ ve sol 1rem boşluk bırakır */
  margin: 1rem auto;             /* Ortaya alır + üst alt boşluk */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 6;
  overflow: hidden;              /* Taşan kısmı kes */
  border-radius: 0.5rem;         /* isteğe bağlı yuvarlak köşe */
}

.banner-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* Taşan kısımları kırp */
  display: block;                /* küçük boşlukları önler */
}




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



/* ekatalog */


.floating-catalog {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}

.catalog-button {
    display: inline-block;
    padding: 0.9rem 1.6rem;
    background-color:#B39DDB;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 0.5rem; /* 🔥 istediğin */
    box-shadow: 0 0.25rem 0.35rem rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.4rem 0.6rem rgba(0,0,0,0.25);
}



/* kucuk ekran pc */

@media (max-width: 1300px) {


    .hakkimizda-context-container{
        gap:1rem;
    }
    

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



    /* new-slider */

    .new-slider-container{
        margin-top: 7rem;
    }



    /* ürün kategorileri */

    .urun-kategorileri-container {
        padding: 2rem 1rem; 
    }




    .urun-kategorileri-card {
      width: calc(25% - 0.75rem); /* 5 kart yan yana */

    }

    .urun-kategorileri-last-card {
      width: calc(50% - 0.75rem); /* 5 kart yan yana */

    }

   


    

    /* öne çıkan ürünler */

    .one-cikan-urunler-container {
        padding: 2rem 1rem; 
    }
    .one-cikan-urunler-baslik {
        margin-bottom: 1rem;
    }

    .one-cikan-urunler-card {
        width: calc(25% - 0.75rem);
    }






    /* hakkimizda */

    .hakkimizda-container{
        display: flex;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .katalog-container{
        display: flex;
        padding: 2rem 1rem;
        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) {



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







    /* new-slider */

    .new-slider-container{
        margin-top: 5rem;
        border-radius: 0.75rem;
    }

    .new-slider-img {
        width: 100%;
        height: 65vh;            
        object-fit: cover;        
        object-position: center;   
        border-radius: 0.75rem;
    }

    
    .slider-controls{
        position: absolute;
        bottom: 4rem;
        right: 2rem;
        display: flex;
        gap: 0.5rem;
    }

    .slider-btn{
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .slider-btn{
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }






    /* ürün kategorileri */


    .urun-kategorileri-container {
        padding: 0 1rem; 
    }

    .urun-kategorileri-baslik {
      font-size: 1.3rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .urun-kategorileri-card-container {
        gap: 1rem;
        overflow-x: auto;   /* yatay kaydırma */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;  
        scrollbar-width: none;  
    }

    .urun-kategorileri-card-container::-webkit-scrollbar {
        display: none;   
    }

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

    .urun-kategorileri-title {
      font-size: 0.9rem;
      margin: 0.5rem;
    }

  .urun-kategorileri-button-left-container,
  .urun-kategorileri-button-right-container {
    display: none !important;
  }

    /* Dotlar */
    .dot-container {
      margin-top: 1rem;
      gap: 0.5rem;
    }

    .dot {
      width: 0.6rem;
      height: 0.6rem;
    }

 



    /* öne çıkan ürünler */

    .one-cikan-urunler-container {
    padding: 2rem 1rem;
    }
    .one-cikan-urunler-baslik {
        font-size: 1.3rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }
    .one-cikan-urunler-card-container {
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .one-cikan-urunler-card-container::-webkit-scrollbar {
        display: none;
    }
    .one-cikan-urunler-card {
        width: calc(50% - 0.5rem);
        border-radius: 0.25rem;
        padding: 0.5rem;

    }
    .one-cikan-urunler-title {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    .one-cikan-urunler-button-left-container,
    .one-cikan-urunler-button-right-container {
        display: none !important;
    }
    .featured-dot-container {
        margin-top: 1rem;
        gap: 0.5rem;
    }
    .featured-dot-container .dot {
        width: 0.6rem;
        height: 0.6rem;
    }





    
    /* hakkimizda */


    .hakkimizda-container{
        padding: 0 1rem; ;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hakkimizda-context-container{
        width: 100%;
        gap: 1rem;
    }

    .hakkimizda-context-title{
        font-size: 1.3rem;
        font-weight: 500;
        line-height: 1.5rem;
    }

    .hakkimizda-context-explanations{
        font-size: 0.9rem;
        line-height: 1.4rem;
    }


    .hakkimizda-context-button {
        border-radius: 0.5rem;
        padding: 0.65rem 1.25rem;  
        font-size: 0.9rem;
    }


    .hakkimizda-img-container{
        width: 100%; 
    }
    .hakkimizda-img{
        border-radius: 0.5rem;
    }


    /* hakkimizda */


    .katalog-container{
        padding: 0 1rem; ;
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .katalog-context-container{
        width: 100%;
        gap: 1rem;
    }

    .katalog-context-title{
        font-size: 1.3rem;
        font-weight: 500;
        line-height: 1.5rem;
    }

    .katalog-context-explanations{
        font-size: 0.9rem;
        line-height: 1.4rem;
    }


    .katalog-context-button {
        border-radius: 0.5rem;
        padding: 0.65rem 1.25rem;  
        font-size: 0.9rem;
    }


    .katalog-img-container{
        width: 100%; 
    }
    .katalog-img{
        border-radius: 0.5rem;
    }



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