 .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .category-filter {
            transition: all 0.3s ease;
        }
        .category-filter:hover {
            transform: translateY(-2px);
        }
        .active-category {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            color: white;
        }
        .search-container {
            position: relative;
        }
        .search-input {
            transition: all 0.3s ease;
        }
        .search-input:focus {
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
        }
        .filter-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .filter-dropdown.active {
            max-height: 200px;
        }
        .product-card {
            transition: all 0.3s ease;
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .list-view .product-card {
            display: flex;
            flex-direction: row;
            align-items: center;
        }
        .list-view .product-card img {
            width: 120px;
            height: 120px;
            flex-shrink: 0;
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.5s ease forwards;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .loading {
            opacity: 0.5;
            pointer-events: none;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #6b7280;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #dc2626;
        }
        .breadcrumb .current {
            color: #dc2626;
            font-weight: 500;
        }