/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: white;
    box-shadow: var(--shadow-sm);
    height: 70px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-text {
    font-size: 32px;
    letter-spacing: 1px;
    color: var(--text-high);
    font-weight: 400;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-actions i {
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: var(--text-medium);
    transition: var(--transition-fast);
}

.nav-actions i:hover {
    color: var(--primary);
}

.cart-trigger {
    position: relative;
}

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

.mobile-menu-toggle {
    display: none;
    color: var(--text-high);
}

/* Mobile Nav Bar */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--mobile-nav-height);
    background: white;
    border-top: 1px solid var(--border-light);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.mob-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-low);
    font-size: 10px;
}

.mob-link i {
    width: 20px;
}

.mob-link.active {
    color: var(--primary);
}

/* Main Content */
main {
    padding-top: var(--nav-height);
    min-height: calc(100vh - var(--nav-height));
}

/* Footer Section */
.footer {
    background: var(--bg-surface);
    padding: 100px 0 40px;
    border-top: 1px solid var(--border-light);
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 32px;
    color: var(--text-high);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-medium);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links i {
    width: 20px;
    color: var(--text-medium);
}

.footer-links h4, .footer-newsletter h4 {
    color: var(--text-high);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-medium);
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-newsletter p {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
    color: var(--text-low);
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .login-btn {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 24px;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border-light);
        z-index: 1001;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    main {
        padding-bottom: var(--mobile-nav-height);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}


