@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
        
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
}

/* Mobile Menu Styles */
#mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

#mobileMenu.hidden {
    opacity: 0;
    visibility: hidden;
}

#mobileMenu:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

#mobileMenu a {
    display: block;
    padding: 1rem 2rem;
    margin: 0.5rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1f2937;
    text-align: center;
    width: 100%;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

#mobileMenu a:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    color: #000;
}

#menuButton {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 51;
}

#menuButton:hover {
    background-color: #f3f4f6;
}

#menuButton i {
    transition: transform 0.4s ease;
    font-size: 1.25rem;
}

#menuButton.active i {
    transform: rotate(180deg);
}

.hero-gradient {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card {
    transition: all 0.3s ease;
}

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ef4444;
    color: white;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
}

.newsletter-input {
    border: none;
    border-bottom: 2px solid #e5e7eb;
    background: transparent;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-bottom-color: #000;
}

.nav-link:hover {
    color: #000;
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.cart-item-enter {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cart-quantity {
    width: 40px;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}

.cart-remove {
    color: #ef4444;
    cursor: pointer;
}

.cart-remove:hover {
    color: #dc2626;
}