    * {
        margin: 0px;
        padding: 0px;
        box-sizing: border-box;
    }
    body {
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        background: #66785F;
        font-family: Arial, sans-serif;
        height: auto;
        transition: background-color 1s ease;
    }
    #menu-icon {
        position: fixed;
        top: 20px;
        right: 20px;
        cursor: pointer;
        z-index: 10;
        width: 40px; 
        height: 40px; 
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #FADA7A; 
        border-radius: 50%; 
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        z-index: 1100;
    }

    #menu-icon img {
        width: 60%; 
        height: 60%; 
        object-fit: contain;
    }

    #menu-icon:hover {
        transform: scale(1.1); 
    }

#dropdown-menu {
    visibility: hidden; /* Menü başlangıçta gizli */
    opacity: 0; /* Görünmez */
    position: fixed;
    top: -100%; /* Menü başlangıçta yukarıda */
    right: 42px;
    background-color: #66785F;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    border-radius: 0 0 10px 10px;
    z-index: 1000;
    transition: top 0.5s ease, opacity 0.5s ease, visibility 0.5s ease; /* Geçişler */
    padding: 20px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Menü Görünür Olduğunda */
#dropdown-menu.active {
    visibility: visible; /* Görünür yap */
    opacity: 1; /* Tam görünürlük */
    top: 0; /* Konum değiştir */
}

/* Menü Kapanırken */
#dropdown-menu.closing {
    visibility: visible; /* DOM'da kalır */
    opacity: 0; /* Görünmezlik animasyonu */
    top: -100%; /* Yukarı kayar */
}


        #dropdown-menu ul li a img {
        display: inline-block;
        width: 20px;
        height: 20px;
    }
    #dropdown-menu ul li a:hover {
        background-color: #FADA7A;
        color: white;
    }

    /* Menü Görüntülendiğinde */
    #dropdown-menu.active {
        display: block;
        top: 0;
    }
    #dropdown-menu ul {
        list-style: none;
        padding: 20px;
        margin: 0;
    }

    #dropdown-menu ul li {
        margin: 10px 0;
        display: flex;
        align-items: center;
        gap: 10px; 
    }

    #dropdown-menu ul li a {
        text-decoration: none;
        color: #FADA7A;
        font-size: 16px;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 10px; 
        padding: 10px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
    
    #main-categories {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Her satırda 3 kategori */
        gap: 10px;
    
    }
    
    .main-category {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: #FADA7A; /* Kategori kutusu rengi */
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 10px;
        margin: 5px;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .main-category:hover {
        transform: scale(1.05); /* Hover'da büyüt */
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Hover'da gölge büyüt */
    }
    
    .main-category img {
        width: 50px; /* Resim genişliği */
        height: 50px; /* Resim yüksekliği */
        object-fit: cover;
        border-radius: 50%; /* Resmi yuvarlak yap */
        margin-bottom: 5px; /* Resim ile isim arasındaki boşluk */
    }
    .category-products {
        display: none;
    }
    
    .category-products[data-category] {
        display: grid; /* Ürünler grid olarak düzenlenir */
    }

.category-name {
    font-size: 12px;
    font-weight: bold;
    color: #333;
}

    /* Listeyi yatay yapmak için */
.contact-info {
    list-style: none;
    display: flex; /* Yatay düzen */
   
    padding: 0;
    margin: 0;
    gap: 15px; /* Elemanlar arasında boşluk */
}

/* Bağlantılar için stil */
.contact-info li a {
    text-decoration: none;
   
    font-size: 16px;
    display: flex;
    align-items: center; /* İkon ve metni hizala */
    gap: 5px; /* İkon ve metin arasında boşluk */
}

/* İkonlar için */
.contact-info li a i {
    
    font-size: 18px;
}


    /* Kategori Slider Container */
    .category-slider-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 0; 
        overflow: hidden; 
        width: 100%; 
        position: relative; 
        z-index: 1;
    }

    /* Kategori Slider */
    .category-slider {
        position: relative;
        width: 100%; 
        max-width: 1200px; 
        height: 200px; 
        margin: 50px auto; 
        perspective: 1000px;
        display: flex;
        justify-content: center; 
        align-items: center; 
        gap: 20px; 
        transform: translateX(0); 
        transition: transform 11s ease; 
        will-change: transform; 
    }


    .rectangle {
        position: absolute;
        width: 150px; 
        height: 150px; 
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        border-radius: 15px; 
        overflow: hidden; 
        transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    }

    .active {
        z-index: 3;
        transform: translateZ(200px) scale(1.2);
        opacity: 1;
        visibility: visible;
    }

    .right {
        transform: translateX(300px) translateZ(100px) scale(0.9);
        opacity: 0.9;
        visibility: visible;
    }

    .left {
        transform: translateX(-300px) translateZ(100px) scale(0.9);
        opacity: 0.9;
        visibility: visible;
    }
    .hidden {
        
        opacity: 0;
        visibility: hidden;
        pointer-events: none; 
        transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    }

    .rectangle:not(.active):not(.right):not(.left) {
        pointer-events: none;
    }



    .rectangle img {
        width: 100%; 
        height: 100%;
        border-radius: 15px;
        object-fit: cover;
        position: relative;
        z-index: 1; 
    }

    .rectangle-label {
        position: absolute;
        color: black; 
        padding-bottom: 160px;
        border-radius: 5px; 
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        max-width: 90%;
        overflow: hidden;
        white-space: nowrap; 
        text-overflow: ellipsis;
        z-index: 2; 
    }

    #category-title {
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        font-size: calc(1rem + 1vw);
        font-weight: bold;
        color: #FADA7A;
        padding: 10px 20px;
        border-radius: 10px; 
        z-index: 10; 
        text-align: center;
        white-space: nowrap; 
        overflow: hidden; 
        text-overflow: ellipsis; 
    }

    .controls {
        margin-bottom: 30px;
        display: flex;
        gap: 50px;
        z-index: 2;
    }

    button {
        padding: 10px 20px;
        font-size: 16px;
        font-weight: bold;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        background-color: #007bff;
        color: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    button:hover {
        background-color: #0056b3;
        transform: scale(1.1);
    }

   
    /* Sabit Arka Plan */
    .slider-background {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 500px;
        border-radius: 50px;
        z-index: 0;
        pointer-events: none;
        box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }
    .slider-background::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, var(--start-color) 0%, var(--end-color) 100%);
        transition: opacity 1s ease-in-out;
        opacity: 1;
        z-index: 1;
    }

    .slider-background.transitioning::before {
        opacity: 0; 
    }
 /* Sabit kategori resimleri */
    .category-products {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px; 
        justify-items: center;
        width: 100%;
    }

    .category-products img {
        width: 250px;
        height: 200px;
        border-radius: 15px;
        object-fit: cover;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        opacity: 0;
        transform: translateY(-20px); 
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .category-products img.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .image-container {
        position: relative;
        width: 250px; 
        border-radius: 15px; 
        background-color: #FADA7A;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between; 
        align-items: center;
        margin: 10px; 
    }
    
    .card-image img {
        width: 100px;
        height: 100px;
        border-radius: 50%; 
        object-fit: cover;
        border: 2px solid #ddd; 
    }
    
    .image-name {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        margin: 10px 0;
        text-align: center;
    }
    
    .card-description {
        font-size: 14px;
        color: #666;
        text-align: center;
        margin: 5px 0;
    }
    
    .image-price {
      
        width: 100%;
        text-align: center; 
        font-size: 20px; 
        font-weight: bold;
        padding: 10px 0;
    
    }

    .image-container.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .image {
        display: block !important; 
        width: 100%; 
        height: auto; 
        visibility: visible !important;
        opacity: 1 !important; 
    }


  

    /* Tablet ekranlar */
    @media (max-width: 1024px) {
        
        #menu-icon {
        font-size: 20px;
        padding: 8px;
        z-index: 1100;
        }

        #dropdown-menu {
        width: 100%;
        z-index: 1000;
        }

        #dropdown-menu ul li a {
        font-size: 14px;
        }
        .category-slider {
        height: 180px; 
        max-width: 95%;
        }

        .slider-background {
        border-radius: 0%;
        }

        .category-products img {
        width: 250px;
        height: 160px;
        }
        .rectangle {
        width: 160px;
        height: 160px;
        transition: transform 0.5s ease-in-out, z-index 0.3s ease-in-out, opacity 0.5s ease;
        }

        .active {
        z-index: 3;
        transform: translateZ(80px) translateX(0px) translateY(0px) scale(1.1);
        opacity: 1;
        visibility: visible;
        }

        .right {
        z-index: 2;
        transform: translateX(300px) translateY(0px) translateZ(-50px) scale(0.85);
        opacity: 0.8;
        visibility: visible;
        }

        .left {
        z-index: 1;
        transform: translateX(-300px) translateY(0px) translateZ(-50px) scale(0.85);
        opacity: 0.8;
        visibility: visible;
        }

        .controls {
        margin-top: 20px;
        display: flex;
        gap: 280px;
        position: relative;
        top: -70px;
        }
        .category-products {
        grid-template-columns: repeat(2, 1fr);
        
        }
     @media (max-width: 1024px) {
    .image-container {
        width: 220px; /* Kart genişliği küçültüldü */
        padding: 15px; /* İç boşluk azaltıldı */
    }

    .card-image img {
        width: 80px; /* Görsel boyutu küçültüldü */
        height: 80px;
    }

    .image-name {
        font-size: 16px; /* Yazı boyutu küçültüldü */
    }

    .card-description {
        font-size: 12px; /* Açıklama yazı boyutu küçültüldü */
        margin: 5px 0;
    }

    .image-price {
        font-size: 16px; /* Fiyat yazı boyutu küçültüldü */
    }
}

        #dropdown-menu {
        right: -30px;
        }

    }

    /* Telefon ekranları */
    @media (max-width: 768px) {
        #menu-icon {
        font-size: 18px;
        padding: 6px;
        z-index: 1100;
        }

        #dropdown-menu {
        width: 100%;
        z-index: 1000;
        }

        #dropdown-menu ul li a {
        font-size: 12px;
        }
        .category-slider {
        height: 150px; 
        max-width: 100%;
        }
        .slider-background {
        top: 20%;
        width: 110%;
        height: 300px;
        }
        .slider-background {
        border-radius: 50%;
        }

        .category-products{
        gap: 10px; 
        grid-template-columns: repeat(2, 1fr); 
        margin-right: 10px;
        }

        .category-products img {
        width: 200px;
        height: 140px;
        }

        button {
        padding: 8px 16px;
        font-size: 14px;
        }
        .rectangle {
        width: 120px;
        height: 120px;
        transition: transform 0.5s ease-in-out, z-index 0.3s ease-in-out, opacity 0.5s ease;
        }

        .active {
        z-index: 3;
        transform: translateZ(60px) translateX(0px) translateY(0px) scale(1.1);
        opacity: 1;
        visibility: visible;
        }

        .right {
        z-index: 2;
        transform: translateX(200px) translateY(0px) translateZ(-40px) scale(0.8);
        opacity: 0.8;
        visibility: visible;
        }

        .left {
        z-index: 1;
        transform: translateX(-200px) translateY(0px) translateZ(-40px) scale(0.8);
        opacity: 0.8;
        visibility: visible;
        }
         .image-container {
        width: 180px; /* Kart genişliği daha da küçültüldü */
        padding: 10px; /* İç boşluk daha da azaltıldı */
    }

    .card-image img {
        width: 70px; /* Görsel boyutu küçültüldü */
        height: 70px;
    }

    .image-name {
        font-size: 14px; /* Yazı boyutu daha küçük */
    }

    .card-description {
        font-size: 12px; /* Açıklama daha küçük yazı */
        margin: 5px 0;
        line-height: 1.2; /* Satır aralığı daraltıldı */
    }

    .image-price {
        font-size: 14px; /* Fiyat yazı boyutu küçüldü */
    }
      
        .controls {
        margin-top: 20px;
        display: flex;
        gap: 280px;
        position: relative;
        top: -70px;
    }
    #dropdown-menu {
        right: -10px;
    }
    .category-products {
        grid-template-columns: repeat(2, 1fr);
        
    }
 
    .image-price {
    top: 142px;
    right: 35px;
    }
    #dropdown-menu {
        right: -20px;
    }
    }

    /* Küçük telefon ekranları */
    @media (max-width: 480px) {

        .category-slider {
        height: 130px; 
        max-width: 100%; 
        }
        .slider-background {
        top: 0%;
        width: 110%;
        height: 400px;
        }
         #menu-icon {
        font-size: 18px;
        padding: 6px;
        z-index: 1100;
        }

       
        #dropdown-menu {
        right: 0px;
        z-index: 1000;
    }
        .image-price {
        top: 142px;
        right: 35px;
        }
        .category-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-items: center;
        margin-top: 40px;
        
        }

        .category-products img {
        width: 160px; 
        height: 120px;
        }
        .rectangle {
        width: 150px;
        height: 150px;
        margin-top: 50px;
        }
        .slider-background {
        border-radius: 100%;
        }
        .active {
        z-index: 3;
        opacity: 1;
        visibility: visible;
        }

        .right {
        z-index: 2;
        transform: translateX(200px) translateY(-40px) translateZ(-0px) scale(0.9);
        opacity: 0.8;
        visibility: visible;
        }

        .left {
        z-index: 1;
        transform: translateX(-200px) translateY(-40px) translateZ(0px) scale(0.9);
        opacity: 0.8;
        visibility: visible;
        }
        .controls {
        margin-top: 20px;
        display: flex;
        gap: 280px;
        position: relative;
        top: -70px;
    }
        .image-container {
        width: 160px; /* Daha küçük ekranlar için kart genişliği */
        padding: 8px; /* Daha az iç boşluk */
    }

    .card-image img {
        width: 60px; /* Görsel boyutu küçültüldü */
        height: 60px;
    }

    .image-name {
        font-size: 12px; /* Yazı boyutu iyice küçültüldü */
    }

    .card-description {
        font-size: 10px; /* Açıklama daha küçük */
        margin: 3px 0;
        line-height: 1.1; /* Daha sıkı satır aralığı */
    }

    .image-price {
        font-size: 12px; /* Fiyat yazı boyutu küçüldü */
    }
       

    }




