.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    z-index: -1;
}

.product-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nav-link {
    transition: all 0.3s ease;
}

.nav-link.active {
    border-bottom: 2px solid #3b82f6;
    color: #3b82f6;
}

.filter-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.filter-section.expanded {
    max-height: 500px;
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-menu.open {
    max-height: 500px;
}

.product-detail-page {
    display: none;
}

.product-detail-page.active {
    display: block;
}

@media (max-width: 768px) {
    .hero-canvas {
        height: 60vh;
    }
}