<!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>BASSEL KEMER | Official Store</title>
    <style>
        /* --- GENEL TASARIM VE LÜKS GECE MODU --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }

        body {
            background-color: #0a0a0a; /* Ağır ve koyu arka plan */
            color: #ffffff;
            overflow-x: hidden;
        }

        /* --- NAVIGASYON (ÜST MENÜ) --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 10%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            background-color: #0a0a0a;
            position: sticky;
            top: 0;
            z-index: 90;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .nav-buttons {
            display: flex;
            gap: 25px;
        }

        .nav-btn {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: opacity 0.3s ease;
            padding: 5px 10px;
        }

        .nav-btn:hover {
            opacity: 0.7;
        }

        /* --- ÖRNEK İÇERİK ALANI --- */
        .hero-section {
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero-section h1 {
            font-size: 42px;
            font-weight: 300;
            letter-spacing: 6px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        /* --- ARMA BÖLÜMÜ (MODAL OVERLAY) --- */
        .search-overlay {
            display: none; /* İlk başta tamamen gizli */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 10, 0.98); /* Premium koyu transparanlık */
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        /* Arama açıldığında JS ile bu sınıf eklenecek */
        .search-overlay.active {
            display: flex;
            opacity: 1;
        }

        .search-content {
            width: 80%;
            max-width: 600px;
            position: relative;
            text-align: center;
        }

        .luxury-search-input {
            width: 100%;
            padding: 20px 10px;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            color: #ffffff;
            font-size: 20px;
            letter-spacing: 2px;
            outline: none;
            text-align: center;
            transition: border-color 0.3s ease;
        }

        .luxury-search-input:focus {
            border-bottom: 1px solid #ffffff;
        }

        .close-search {
            position: absolute;
            top: -60px;
            right: 0;
            font-size: 36px;
            font-weight: 200;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.5);
            transition: color 0.3s ease;
        }

        .close-search:hover {
            color: #ffffff;
        }

        /* --- SEPET BÖLÜMÜ (RIGHT DRAWER) --- */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -450px; /* İlk başta ekranın sağında gizli */
            width: 420px;
            height: 100%;
            background: #111111; /* Gece moduna uygun ara ton */
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
            z-index: 1000;
            transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Pürüzsüz lüks kayma efekti */
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        @media (max-width: 480px) {
            .cart-sidebar { width: 100%; right: -100%; }
        }

        /* Sepet açıldığında JS ile bu sınıf eklenecek */
        .cart-sidebar.active {
            right: 0;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding-bottom: 20px;
        }

        .cart-header h3 {
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .close-cart {
            font-size: 30px;
            font-weight: 200;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.5);
            transition: color 0.3s ease;
        }

        .close-cart:hover {
            color: #ffffff;
        }

        .cart-body {
            flex-grow: 1;
            padding: 30px 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .empty-cart-msg {
            color: rgba(255, 255, 255, 0.4);
            font-size: 14px;
            letter-spacing: 1px;
        }

        .cart-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
        }

        .whatsapp-order-btn {
            width: 100%;
            padding: 18px;
            background: #ffffff;
            color: #0a0a0a;
            border: none;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .whatsapp-order-btn:hover {
            background: #111111;
            color: #ffffff;
            border: 1px solid #ffffff;
        }
    </style>
</head>
<body>

    <header>
        <div class="logo">BASSEL KEMER</div>
        <div class="nav-buttons">
            <button class="nav-btn" onclick="toggleSearch()">Arama</button>
            <button class="nav-btn" onclick="toggleCart()">Sepet (0)</button>
        </div>
    </header>

    <main class="hero-section">
        <h1>ÖZGÜN VE AĞIR ÇİZGİLER</h1>
        <p style="color: rgba(255,255,255,0.5); letter-spacing: 1px;">Yenilenen koleksiyonları keşfetmek için yukarıdaki menüyü kullanın.</p>
    </main>

    <div id="search-modal" class="search-overlay">
        <div class="search-content">
            <span class="close-search" onclick="toggleSearch()">&times;</span>
            <input type="text" placeholder="ÜRÜN VEYA KOLEKSİYON ARA..." class="luxury-search-input">
        </div>
    </div>

    <div id="cart-drawer" class="cart-sidebar">
        <div class="cart-header">
            <h3>Alışveriş Sepeti</h3>
            <span class="close-cart" onclick="toggleCart()">&times;</span>
        </div>
        
        <div class="cart-body">
            <p class="empty-cart-msg">Sepetiniz şu an boş.</p>
        </div>
        
        <div class="cart-footer">
            <button class="whatsapp-order-btn">WhatsApp ile Siparişi Tamamla</button>
        </div>
    </div>

    <script>
        // Arama panelini açıp kapatan fonksiyon
        function toggleSearch() {
            const searchModal = document.getElementById('search-modal');
            
            if (searchModal.classList.contains('active')) {
                searchModal.classList.remove('active');
                setTimeout(() => {
                    searchModal.style.display = 'none';
                }, 400); // Kapanma animasyonu süresi
            } else {
                searchModal.style.display = 'flex';
                setTimeout(() => {
                    searchModal.classList.add('active');
                }, 10);
            }
        }

        // Sepet panelini sağdan içeri sokup çıkaran fonksiyon
        function toggleCart() {
            const cartDrawer = document.getElementById('cart-drawer');
            cartDrawer.classList.toggle('active');
        }

        // Dışarı tıklanınca panellerin kapanması (Kullanım kolaylığı için lüks detay)
        window.onclick = function(event) {
            const searchModal = document.getElementById('search-modal');
            const cartDrawer = document.getElementById('cart-drawer');
            
            if (event.target === searchModal) {
                toggleSearch();
            }
        }
    </script>

</body>
</html>