.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--accent-2);
    border-radius: 10px;
    transition: all 0.3s linear;
}

.menu-active .hamburger span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-active .hamburger span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.desktop-nav {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
    margin-top: -10px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-2);
    transform: translateY(-2px);
}

.nav-links i {
    font-size: 1.2rem;
}

.login-btn {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
    color: var(--dark) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(255, 241, 0, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 241, 0, 0.4);
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2)) !important;
}

.cart-icon {
    position: relative;
    padding: 0.5rem !important;
    border-radius: 50% !important;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-2);
    color: var(--dark);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid var(--dark);
}

/* Mobile Menu Styling */
.hamburger {
    width: 30px;
    height: 30px;
    position: relative;
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--accent-2);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 6px; }
.hamburger span:nth-child(2) { top: 14px; }
.hamburger span:nth-child(3) { top: 22px; }

.menu-active span:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
}

.menu-active span:nth-child(2) {
    opacity: 0;
}

.menu-active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 14px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(30, 30, 30, 0.98));
    backdrop-filter: blur(10px);
    padding: 80px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-section {
    margin-bottom: 2.5rem;
}

.mobile-menu-section h3 {
    color: var(--accent-2);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
}

.mobile-menu-links li {
    margin-bottom: 1rem;
}

.mobile-menu-links a {
    color: var(--light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    color: var(--accent-2);
    border-color: var(--accent-2);
}

.mobile-menu-links i {
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
}


.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: var(--dark);
    padding: 80px 2rem 2rem;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-section {
    margin-bottom: 2rem;
}

.mobile-menu-section h3 {
    color: var(--accent-2);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu-links {
    list-style: none;
}

.mobile-menu-links li {
    margin-bottom: 1rem;
}

.mobile-menu-links a {
    color: var(--light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.mobile-menu-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-2);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu, .nav-overlay {
        display: block;
    }
}
.cart-icon {
    position: relative;
    margin-left: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-2);
    color: var(--dark);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.mobile-nav-item {
    position: relative;
}

.mobile-nav-item .cart-count {
    top: -4px;
    right: 25%;
}

/* Navigation */
nav {
    height: 60px;
    background-color: rgba(20, 20, 20, 0.95);
    padding: 1rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
    margin-top: -5px;
}

.mobile-login {
    color: var(--accent-2);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:hover {
    color: var(--accent-2);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}