
body{padding: 0 2em;}

.burger{
    width: 100%;
    height: auto;
    margin-top: 15px;
    position: relative;
    z-index: 88;
}
#header{
    position: relative;
   
}

.classic-btn{
    	top: 20px;
	right: 20px;
	padding: 5px 24px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 100;
}
.menu-content {
    display: none; /* İlk etapta görünmez yapar */
    position: absolute;
    background-color: #000000a6;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgb(0, 0, 0);
    z-index: 9999;
    border-radius: 10px;
    margin-top: 5px;
    left: 0;
}
.dropdownMenu{
   background: linear-gradient(135deg, #00f0ff96, #000000, #ff00a9a6);
    width: 100%;
   
}

.menu-content ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu-content li a {
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    display: block;
    font-family: sans-serif;
}

/* Üzerine gelince arka planı hafif değiştirir */
.menu-content li a:hover {
    background-color: #dddddd5a;
}

/* JavaScript ile menüyü görünür yapmak için eklenecek sınıf */
.goster {
    display: block;
}


.menu-content ul li a {
    /* Mevcut stilleriniz bozulmasın, sadece geçiş efekti ekleyelim */
    transition: background-color 0.3s ease, border-radius 0.3s ease;
}
.menu-content ul li a.aktif {
    background-color: #00eeff5c;
    border-radius: 10%;
}

.tl{
        font-size: x-large;
    font-weight: bold;
    color: chartreuse;
}

#mainFooter{
        width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
}
.foot1{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
           

    
}
.foot1 div{
     background-color: #e6ecffb3;
    display: flex;
    justify-content: center;
    margin: 0.5%;
}

.foot1 div span{
    font-size: x-large;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    
}


.btn1{
        position: relative;
        display: inline-block;
  margin-top: 15px;

    z-index: 100;
    background:rgb(255 255 255 / 44%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
}

.slider2 span:hover .btn1{
    transform: scale(1.1);
}
.btn1 h3{
        font-family: 'Syne', sans-serif;
    font-weight: 600;
    color: var(--primary);
                font-size: 1em;
    width: 5em;
    white-space: nowrap;
    overflow: hidden;
}
.pre-bag{
    width: auto!important;
}

.btn1 p{
        font-size: 9px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.product-count{
    border-radius: 5px;
    width: 15%;
    background-color: #31909059;
    color: white;

}
.providence{
        border-radius: 0.5em;
    width: 50%;
    height: 2em;
    background-color: #006161a1;
    color: white;
}

/* Dış Çerçeve */
.slider1 {
    width: 100%;
    overflow: hidden; /* 🚀 Çerçevenin dışına taşan resimleri gizler */
}

/* İç Kapsayıcı (Resimleri Taşıyan Alan) */
.slider2 {
    display: flex; /* 🚀 İçindeki elemanları (span) yatayda yan yana dizer */
    width: 100%;
    animation: slideLoop 1500s linear infinite;
}

.slider1:hover .slider2 {
    animation-play-state: paused;
}
/* Her bir görseli tutan çerçeve veya doğrudan görsel */
.slider2 span {
    flex: 0 0 50%; /* 🚀 Genişliği esnemeden tam %50'ye kilitler (ekranın yatayda yarısı) */
    max-width: 25%;
    margin: 0.5em;
    overflow: hidden;
     border-radius: 1em;
     position: relative;
         display: flex;
    justify-content: center;
}

/* Resimlerin çerçevenin dışına taşmasını engellemek ve düzgün oturması için */
.slider2 img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.slider-card{
    position: absolute;
    bottom: 1em;
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
        color: black;
}
.slider-card p{
    text-align: center;
}

.bag-btn{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 2em;
background: rgb(255 255 255 / 33%);
    margin: 0 1em;
    border-radius: 2em;
}
@keyframes slideLoop {
    /* Başlangıç noktası */
    0% {
        transform: translateX(0);
    }
    /* Bitiş noktası (İçerideki elemanların toplam genişliği kadar sola kaydırıyoruz) */
    100% {
        /* Mantık: Sola doğru kayma mesafesi listenizin %100'ü kadardır. 
           Çünkü elemanlar flex ile yan yana dizilmiştir. */
        transform: translateX(-100%);
    }
}
   .header-div{
      display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    }

    .big-img2{
            justify-content: center;
    display: flex;
    width: 100%;
    overflow: hidden;
    height: 25em;
    border-radius: 2em;
    }

    .big-img2 img{
        width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    }


    .btn2{
            border: 1px solid;
    padding: 0.5em;
    display: inline-block;
    border-radius: 1em;
    color: #00ffffcc;
    }
   
    


.arrow1{
        margin: 5em 0;
    height: 5em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrow2{
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.arrow3{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2em;
    cursor: pointer;
        border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.arrow-active{
    background-color: #0000004d;
}


.entry-btn{
        display: flex;
    align-items: center;
    background-color: #00ffff29;
    padding: 0 1em;
    border-radius: 1em;
    cursor: pointer;
}

.ser-a1{
        overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}



.btn1-ex1{
        display: inline-block;
        padding: 0.5em 0.9em;
        font-size: 1em;
        color: white;
        background: rgb(30 127 31 / 61%);
        margin-top: 1em;
        border-radius: 0.7em;
}


@media (max-width: 768px) {
    body{
        padding: 0 1em;
    }
    .account-btn{
        margin: 0;
       padding: 5px;
    font-size: x-small;
    width: 35%;
    }
.btn1-ex1{
        display: inline-block;
        padding: 0.5em 0.9em;
        font-size: 0.7em;
        color: white;
        background: rgb(30 127 31 / 61%);
        margin-top: 1em;
        border-radius: 0.7em;
}

    .header-div{
                align-items: start;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    }
    .bag-count{
            position: absolute;
    right: 20%;
    width: 18px;
    height: 18px;
    background-color:#ff000066;
    color: black;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    }

    .about-content{
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-text h3{
            font-size: 1em;
    }
    .about-text p{
        font-size: 0.7em;
    }
    .about-image{
        width: 75%;
    }
    .product-count{
        width: 30%;
    }

    .btn1{
        padding: 1px;
        font-size: 0.7em;
        color: white;
        background: rgba(10, 0, 84, 0.608);
        margin-top: 0;
    }
    .slider-card{
        padding: 0;
        width: 100%;
    }
    .slider-card p{
        display: none;
    }
    .slider-card h3{
        font-size: 1em;
    }
    .icon1{
            display: flex;
    justify-content: center;
    align-items: center;
    font-size: initial;
    margin-right: 0.5em;
    }

    .big-img2{
        height: 10em;
    }

    .btn2{
        background: #4c83868c;
    display: inline-block;
    font-size: smaller;
    padding: 0.6em;
    border-radius: 0.5em;
    }

    .bag-btn{
        display: none;
    }
    #header{
        padding: 0;
    }
    .info-span{
        margin-right: 0!important;
    }

    .arrow3{
        margin: 0;
    }


}










