* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Playfair Display", serif;
            font-optical-sizing: auto;
            font-weight: 550;
            font-style: normal;
        }

        html,body {
            background-color: #05001bf8; 
            color: #ffffff;
            min-height: 100vh;
            position: relative;
            height: 100%;
            width: 100%;
            margin: 0;
            padding: 0;
            font-size: 14px;
        }


        /* --- 2. NAVBAR (Sadece Logo Kaldı) --- */
        nav {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.925) 0%, rgba(0, 0, 0, 0) 100%);
            background-color: transparent;
            height: 150px;
            width: 100%;
            display: flex;
            align-items: center;
            padding: 0 50px;
            position: absolute; 
            top: 0;
            left: 0;
            z-index: 10;
            justify-content: flex-end; /* Linkleri sağa itmek için */
        }

        .logo-container {
          position: absolute;
          left: 50%;          
          transform: translateX(-50%);
          height: 100%;
          display: flex;
          align-items: center;
          z-index: 101;
        }

        .logo-container img {
         height: 135px;
         width: auto;
        }

        .logo {
            margin-top: 3vh;
            text-decoration: none;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        /* LİNKLER (Desktop) */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.2); /* Okunabilirlik için gölge */
            color: #ffffff;
            text-decoration: none;
            font-size: 22px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: rgba(170, 0, 0);
        }

        /* HAMBURGER MENÜ (Mobilde görünecek) */
        .hamburger {
            display: none; /* Masaüstünde gizli */
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            border-radius: 5px;
        }

        /* 3. RESPONSIVE (MOBİL) AYARLAR */
        @media screen and (max-width: 1200px) {

            .logo-container img {
             height: 110px; /* Mobilde daha kibar durması için küçültüyoruz */
             width: auto;
            }
            /* Logoyu mobilde sola alalım (İsteğe bağlı, ortada da kalabilir) */
            .logo {
                position: static;
                transform: none;
                margin-right: auto; /* Sağa yaslanan her şeyi iter */
            }

            nav {
                z-index: 9999;
                justify-content: space-between; /* Logo solda, hamburger sağda */
            }

            /* Linkleri gizle ve dikey menü yap */
            .nav-links {
                position: fixed;
                right: 0;
                top: 0; /* Navbar yüksekliği kadar aşağı */
                height: 100vh;
                background-color: #0a0a0a;
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.499) 100%);
                flex-direction: column;
                align-items: center;
                justify-content: center; /* Linkleri dikeyde ortala */
                width: 50%;
                display: flex;
                transform: translateX(100%); /* Ekran dışına it */
                transition: transform 0.3s ease-in-out;
                padding-top: 50px;
                z-index: 9999;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
            }

            .nav-links li {
                margin: 20px 0;
            }

            .hamburger {
                display: flex;
                position: fixed;
                z-index: 10000;  
                background-color: rgba(0, 0, 0, 0.15); 
                padding: 5px;
                border-radius: 5px;
            }
        }

        /* JavaScript ile eklenecek sınıf */
        .nav-active {
            transform: translateX(0%) !important;
        }


        /* --- 3. İÇERİK ve AKORDİYON (SOLA YASLI) --- */
        .main-content {
            text-align: center;
            padding-top: 180px;
            padding-left: 5%;
            padding-right: 5%;
            padding-bottom: 50px;
        }

        .menu-header {
            
            font-size: 3rem;
            margin-bottom: 30px;
            border-bottom: 2px solid #d32f2f;
            display: inline-block;
            color: #fff;
        }

        .swiper {
      width: 90%;
      height: 90%;
      border-radius: 30px;
    }

    .swiper-slide {
      
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none; /* Link alt çizgisini kaldır */
    }

    .swiper-slide img {
      
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      
    }

        /* Akordiyon Kutusu */
        .accordion-wrapper {
            padding-top: 30px;
            max-width: 700px;
            width: 100%;
            max-width: 800px; 
            margin: 0 auto;
            text-align: left;
        }

        .acc-item {
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .acc-header {
            font-size: 1.5rem;
            padding: 15px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #e0e0e0;
            transition: 0.3s;
        }
        
        .acc-header:hover { color: #d32f2f; padding-left: 10px; }
        .acc-item.active .acc-header { color: #d32f2f; font-weight: bold; }

        .arrow { transition: transform 0.3s; font-size: 1rem; }
        .acc-item.active .arrow { transform: rotate(180deg); }

        /* İçerik (Ürünler) */
        .acc-content {
            display: none;
            padding: 10px 0;
            animation: fadeIn 0.5s;
        }
        .acc-item.active .acc-content { display: block; }
        @keyframes fadeIn { from {opacity:0;} to {opacity:1;} }

        /* Ürün Listesi */
        .product-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 5px;
            cursor: pointer;
            transition: 0.2s;
        }
        .product-item:hover { background: rgba(255,255,255,0.1); }

        .p-name { font-size: 1.2rem; }
        .p-price { color: #d32f2f; font-weight: bold; font-size: 1.2rem; }

        /* --- 4. DETAY POPUP --- */
        .popup-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
        }
        .popup-overlay.open { display: flex; }

        .popup-box {
            background: #222;
            width: 90%; max-width: 500px;
            padding: 20px;
            border-radius: 10px;
            position: relative;
            text-align: center;
            border: 1px solid #444;
        }

        .popup-img { width: 100%; height: 250px; object-fit: cover; border-radius: 5px; margin-bottom: 15px; }
        .popup-title { font-size: 2rem; margin-bottom: 10px; color: #fff; }
        .popup-price { font-size: 1.8rem; color: #d32f2f; margin-bottom: 15px; }
        .popup-desc { color: #bbb; margin-bottom: 20px; line-height: 1.5; }
        .close-btn {
            position: absolute; top: 10px; right: 15px;
            font-size: 30px; color: #fff; cursor: pointer;
        }

.main-footer {
    width: 100%;
    min-height: 100vh; /* Tam ekran yüksekliği */
    background-color: #0a0a0a; /* Simsiyah'a yakın koyu gri */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Dikeyde ortala */
    align-items: center;
    padding: 50px;
    position: relative;
    box-sizing: border-box;
    
}

/* İÇERİK IZGARASI (GRID) */
.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Sütunlu yapı */
    gap: 60px; /* Kutular arası boşluk */
    width: 100%;
    max-width: 1000px; /* İçerik çok dağılmasın */
    margin-bottom: auto; /* Alt kısmı en aşağı itmek için */
    margin-top: auto;    /* Üst kısmı dengelemek için */
}

/* LINK KUTUSU TASARIMI */
.footer-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1); /* Çok silik çerçeve */
    transition: all 0.4s ease;
    border-radius: 5px;
}

/* Hover Efekti: Üzerine gelince parlasın ve yukarı kaysın */
.footer-item:hover {
    background-color: rgba(255,255,255,0.05);
    border-color: #fff;
    transform: translateY(-10px);
}

/* İKON TASARIMI */
.icon-box {
    font-size: 2.5rem;
    margin-right: 25px;
    color: #888;
    transition: color 0.3s ease;
}

.footer-item:hover .icon-box {
    color: #fff; /* Hover olunca ikon beyazlaşsın */
}

/* YAZI ALANI */
.text-box h3 {
    font-size: 1.2rem;
    font-weight: 750;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.text-box p {
    font-size: 0.9rem;
    color: #a4a4a4;
    transition: color 0.3s;
    font-family:Arial, Helvetica, sans-serif;
    font-weight: normal;
}

.footer-item:hover .text-box p {
    color: #ccc;
}

/* --- ALT KISIM (COPYRIGHT) --- */
.footer-bottom {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin-top: 50px;
}

/* İnce Çizgi */
.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #555, transparent); /* Ortası belirgin, kenarları silik çizgi */
    margin-bottom: 30px;
}

.urgco {
    font-family: "amandine", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fafafa;
    font-size: 1.3rem;
}

/* --- MOBİL UYUMLULUK --- */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* Mobilde tek sütuna düş */
        gap: 20px;
    }

    .footer-item {
        padding: 20px; /* Mobilde kutuları küçült */
    }

    .icon-box {
        font-size: 1.8rem;
    }

    .main-footer {
        padding: 30px 20px;
    }
}

/* FOOTER LOGO AYARLARI */
.footer-logo {
    display: inline-block;
    margin-bottom: 50px; /* İkonlarla arasına boşluk */
    transition: transform 0.3s ease;
}

.footer-logo img {
    height: 120px; /* Logonun yüksekliği (İsteğine göre artır/azalt) */
    width: auto;   /* Genişlik orantılı kalsın */
    display: block;
}

/* Mouse üzerine gelince hafif büyüsün */
.footer-logo:hover {
    transform: scale(1.05);
}

/* --- MOBİL İÇİN DÜZELTME --- */
@media screen and (max-width: 768px) {
    .footer-logo img {
        height: 80px; /* Mobilde logoyu biraz küçültelim */
    }
    
    .footer-logo {
        margin-bottom: 30px; /* Mobilde boşluğu azaltalım */
    }
}