/* assets/css/header.css */

.navbar-container {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    width: 100%;
    position: fixed;
    z-index: 1000;
}

.glass-nav {
    background: rgba(0, 20, 10, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(244, 208, 111, 0.3);
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 90%;
    max-width: 1200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* Logo & Brand */
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 40px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.main-name { font-family: 'Cinzel', serif; color: var(--gold); font-weight: 700; font-size: 1.2rem; letter-spacing: 1px; }
.sub-name { font-family: 'Poppins', sans-serif; color: #ccc; font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; }

/* Menu Tengah */
.nav-links { display: flex; gap: 25px; list-style: none; margin: 0; }
.nav-links a { color: #ddd; text-decoration: none; font-size: 14px; font-weight: 500; transition: 0.3s; }
.nav-links a.active, .nav-links a:hover { color: var(--gold); text-shadow: 0 0 5px rgba(244, 208, 111, 0.5); }
.nav-links a.active {
    background: linear-gradient(180deg, #fce38a 0%, #f38181 100%);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 0 10px var(--gold);
}

/* User Tools (Kanan) */
.user-tools { display: flex; align-items: center; gap: 20px; font-size: 14px; }
.user-tools a { color: #fff; text-decoration: none; transition: 0.3s; position: relative; }
.user-tools a:hover { color: var(--gold); }
.cart-badge {
    position: absolute; top: -8px; right: -8px;
    background: var(--gold); color: #000;
    font-size: 9px; font-weight: bold; padding: 2px 5px; border-radius: 50%;
}
.menu-toggle { display: none; }