/* NAVBAR - PERFECT */
        .navbar {
            position: fixed; 
            top: 0; 
            width: 100%;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            font-weight: bolder;
            left: 0 !important;
            right: 0 !important;
            position: fixed; /* Atau absolute sesuai kebutuhan navbar kamu */
            z-index: 9999;
        }
        .navbar.scrolled {
            background: rgba(255,255,255,0.98);
            box-shadow: 0 4px 30px rgba(0,0,0,0.15);
        }
        .nav-container {
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 0 2rem;
        }
        .nav-logo {
            display: flex; 
            align-items: center; 
            font-size: 1.8rem; 
            font-weight: 700; 
            gap: 0.5rem;
            color: #1e293b;
        }
        .nav-logo i {
            font-size: 2rem;
            background: linear-gradient(135deg, #ff8c42, #f97316);
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent;
        }
        .nav-menu { 
            display: flex; 
            list-style: none; 
            gap: 2rem; 
        }
        .nav-link { 
            text-decoration: none; 
            color: #475569; 
            font-weight: 500; 
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active { 
            color: #ff8c42; 
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: ''; 
            position: absolute; 
            bottom: 0; 
            left: 0; 
            height: 3px;
            background: linear-gradient(90deg, #ff8c42, #1e40af); 
            width: 0;
            transition: width 0.3s ease; 
            transform: translateY(0);
            border-radius: 2px;
        }
        .nav-link:hover::after, .nav-link.active::after { width: 100%; }
        .hamburger {
            display: none; 
            flex-direction: column; 
            cursor: pointer; 
            gap: 4px;
        }
        .hamburger span {
            width: 25px; 
            height: 3px; 
            background: #ff8c42;
            transition: 0.3s; 
            border-radius: 2px;
        }

        .cart-btn {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;      /* Sesuaikan agar pas di pojok atas */
    right: -12px;   /* Sesuaikan agar pas di pojok kanan */
    background: #ff8c42; /* Warna oranye seperti foto pertama */
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
}

/* Pastikan transisi smooth dan tidak terhalang */
.nav-link {
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease-in-out; /* Tambahkan ini */
}

/* Hilangkan hambatan klik */
.nav-container {
    pointer-events: auto !important;
}

/* Supaya link yang aktif tetap berwarna orange */
.nav-link.active {
    color: #ff8c42 !important;
}

/* ===  MUSIC PLAYER BUTTON === */
.music-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 15px;
}

.music-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--terracotta);
    border: none;
    color: var(--bg-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px var(--terracotta-glow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px var(--terracotta-glow);
}

/* Animasi saat musik play */
.music-btn.playing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 125, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(198, 125, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(198, 125, 94, 0);
    }
}

/* Icon animasi berputar saat play */
.music-btn.playing i {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.music-info {
    position: absolute;
    right: 75px;
    background: rgba(36, 32, 30, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(198, 125, 94, 0.3);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.music-btn:hover + .music-info,
.music-btn.playing + .music-info {
    opacity: 1;
    transform: translateX(0);
}

.music-title {
    display: block;
    font-size: 0.85rem;
    color: var(--terracotta);
    font-weight: 600;
}

.music-artist {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}   