* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: "Fredoka"; 
}
        body { background-color: #0d0d0d; color: #fff; }

        /* NAVBAR */
        nav {
            display: flex; justify-content: space-between; align-items: center;
            padding: 20px 50px; background-color: #0d0d0d;
            border-bottom: 1px solid #222; position: sticky; top: 0; z-index: 100;
        }
           .logo {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 1px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%); /* Logoyu tam ortalar */
        }
        .nav-links a { color: #ccc; text-decoration: none; margin: 0 15px; transition: 0.3s; }
        
        /* --- DEĞİŞİKLİK BURADA: NEON MAVİ RENK (#00ccff) --- */
        .nav-links a:hover, .nav-links a.active { color: #00ccff; }

        /* MAĞAZA DÜZENİ */
        .store-container { display: flex; padding: 50px; gap: 40px; }
        .sidebar { flex: 1; min-width: 200px; }
        .products-area { flex: 3; }

        /* FİLTRELER */
        .filter-title { 
            font-size: 1.2rem; margin-bottom: 15px; 
            color: #00ccff; /* Mavi Başlık */
            border-bottom: 1px solid #333; padding-bottom: 5px; 
        }
        .filter-list { list-style: none; }
        .filter-list li { margin-bottom: 10px; }
        .filter-list a { color: #aaa; text-decoration: none; transition: 0.2s; display: block; }
        .filter-list a:hover { color: #fff; transform: translateX(5px); }
        .filter-group { margin-bottom: 30px; }

        /* ÜRÜN KARTLARI */
        .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }
        .product-card { background-color: #1a1a1a; border-radius: 15px; overflow: hidden; transition: 0.3s; border: 1px solid #333; }
        
        /* Hover olunca Mavi Çerçeve ve Gölge */
        .product-card:hover { 
            transform: translateY(-10px); 
            border-color: #00ccff; 
            box-shadow: 0 10px 20px rgba(0, 204, 255, 0.2); 
        }
        
        .card-img { width: 100%; height: 200px; object-fit: contain; padding: 20px; background-color: #222; }
        .card-info { padding: 20px; }
        
        .price { color: #00ccff; font-weight: bold; font-size: 1.2rem; } /* Mavi Fiyat */
        
        .add-btn { 
            background-color: #fff; color: #000; border: none; 
            width: 35px; height: 35px; border-radius: 50%; 
            cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; 
        }
        
        /* Buton Hover Mavi */
        .add-btn:hover { background-color: #00ccff; color: #000; }
        

        /* RESPONSIVE */
        @media (max-width: 768px) { .store-container { flex-direction: column; padding: 20px; } }
    /* --- SEPET SAYFASI TASARIMI --- */

.cart-page {
    padding: 100px 10%; /* Menü altında kalmasın diye üstten boşluk */
    color: white;
    min-height: 80vh; /* Sayfa boşken de dolu gözüksün */
}


.cart-page h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.cart-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap; /* Mobilde alt alta geçsin */
}

/* Ürün Listesi Alanı */
#cart-items {
    flex: 3; /* Sol taraf daha geniş olsun */
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
}

/* Tekil Ürün Kartı */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #333;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.item-details {
    flex: 1;
    margin-left: 20px;
}

.item-details h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.item-details p {
    color: #0f0; /* Yeşil fiyat */
    font-weight: bold;
    margin: 0;
}

/* Silme Butonu */
.remove-btn {
    background-color: #ff3b3b;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.remove-btn:hover {
    background-color: #cc0000;
}

/* Sağ Taraf: Özet Alanı */
.cart-summary {
    flex: 1;
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    height: fit-content;
}

.cart-summary h3 {
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.total-price {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background-color: #0f0; 
    color: black;
    border: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}
#sepeti-temizle-btn{
     width: 100%;
    padding: 12px;
    background-color: rgb(255, 0, 34); 
    color: black;
    border: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    
}

.clear-cart-btn {
    width: 100%;
    padding: 10px;
    background-color: transparent;
    border: 1px solid #555;
    color: #aaa;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.clear-cart-btn:hover {
    background-color: #333;
    color: white;
}

/* Sepet Boş Uyarısı */
.empty-msg {
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
    color: #888;
}




