@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
}
html{
    scroll-behavior: smooth;
}

/* === Nav hide on scroll === */
nav {
    transition: transform 0.4s ease, opacity 0.3s ease;
}

nav.nav-hidden {
    transform: translateY(-100%);
    display: none;
}

.gradient-text {
    background: linear-gradient(135deg, #d30bc1, #821fad, #3d309c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-glass-effect {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
    width: 80px;
}

.logo-mobile {
    width: 50px;
}

.dropdown {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
}

.dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    transition: all 0.2s ease-in-out;
}

.dropdown-item:hover {
    background-color: rgba(211, 11, 193, 0.1);
    color: #d30bc1;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(115, 115, 128, 0.3), transparent);
    margin: 0.5rem 0;
}

/* Mobile Bottom Nav Animation */
.bottom-nav-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-nav-item.active {
    transform: translateY(-4px);
}

.bottom-nav-item.active i {
    color: #d30bc1;
    transform: scale(1.1);
}

.bottom-nav-item.active span {
    color: #d30bc1;
    font-weight: 600;
}

/* Hide scrollbar for mobile menu */
.mobile-menu::-webkit-scrollbar {
    display: none;
}

.mobile-menu {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Search bar animation */
.search-bar {
    transition: all 0.3s ease;
    transform: translateX(100%);
    opacity: 0;
}

.search-bar.show {
    transform: translateX(0);
    opacity: 1;
}

/* Badge for cart */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, #d30bc1, #821fad);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}