/* Mobile Filter Toggle - Hidden on Desktop, Shown on Mobile */
.mobile-filter-toggle {
    display: none;
    width: 100%;
    padding: 15px 20px;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    position: relative;
}

.mobile-filter-toggle i {
    margin-right: 8px;
    color: #dc2626;
}

.mobile-filter-toggle .toggle-icon {
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.mobile-filter-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.mobile-filter-toggle:hover {
    border-color: #dc2626;
}

/* Mobile Filter Panel - Hidden on Desktop */
.filter-panel-mobile {
    display: none;
    background: #fff;
    border-radius: 10px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.filter-panel-mobile.active {
    max-height: 1000px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}


.equipment-hero {
            min-height: 60vh;
            background: linear-gradient(135deg, #dddddd 0%, #797575 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 120px;
            position: relative;
            overflow: hidden;
        }
        .equipment-hero::after {
            content: 'EQUIPMENT';
            position: absolute;
            font-size: 10rem;
            font-weight: 900;
            color: rgba(255,255,255,0.05);
            letter-spacing: 1rem;
            animation: float 20s ease-in-out infinite;
        }
        .hero-content-equipment {
            text-align: center;
            z-index: 2;
            animation: fadeIn 1s ease;
        }
        .hero-content-equipment h1 {
            font-size: 5rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 1rem;
            letter-spacing: -3px;
        }
        .hero-content-equipment p {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.9);
        }
        .shop-container {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 20px;
        }
        .filter-bar {
            background: #fff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 3rem;
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            align-items: center;
            animation: slideDown 0.8s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .filter-group {
            flex: 1;
            min-width: 200px;
        }
        .filter-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #333;
        }
        .filter-group select,
        .filter-group input {
            width: 100%;
            padding: 10px 15px;
            border: 2px solid #e5e5e5;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .filter-group select:focus,
        .filter-group input:focus {
            outline: none;
            border-color: #dc2626;
        }
        .filter-tags {
            display: flex;
            gap: 1rem;
            flex: 2;
        }
        .filter-tag {
            padding: 10px 20px;
            background: #f5f5f5;
            border: 2px solid transparent;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .filter-tag:hover,
        .filter-tag.active {
            background: #dc2626;
            color: #fff;
            transform: translateY(-2px);
        }
        .products-grid-shop {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            animation: fadeIn 1s ease 0.3s both;
        }
        
        /* Product Card - Home Page Style */
        .product-card-shop {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            position: relative;
        }
        
        /* Shine Effect on Hover */
        .product-card-shop::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
            z-index: 2;
            pointer-events: none;
        }
        
        .product-card-shop:hover::before {
            left: 100%;
        }
        
        .product-card-shop:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        /* Image Container */
        .product-img-shop {
            width: 100%;
            height: 280px;
            position: relative;
            background-color: #fff;
            background-size: contain !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
            border-radius: 10px;
            overflow: hidden;
        }
        
        /* BUY NOW Button on Hover */
        .product-img-shop::after {
            content: 'BUY NOW';
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            background: #dc2626;
            color: white;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
            z-index: 3;
        }
        
        .product-card-shop:hover .product-img-shop::after {
            opacity: 1;
            bottom: 20px;
        }
        
        /* Product Details */
        .product-details-shop {
            padding: 1rem 1rem 1.2rem;
        }
        
        /* Category Label */
        .product-category {
            font-size: 0.75rem;
            color: #999;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.3rem;
            display: block;
        }
        
        /* Product Title */
        .product-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #000;
            padding: 0;
            margin: 0 0 0.5rem 0;
        }
        
        /* Price */
        .product-price {
            font-size: 1rem;
            font-weight: 700;
            color: #000;
            padding: 0;
            margin: 0;
        }
        
        .product-price .old-price {
            font-size: 0.9rem;
            color: #999;
            text-decoration: line-through;
            margin-left: 0.5rem;
            font-weight: 500;
        }
        
        /* Hide rating and add-to-cart (BUY NOW appears on hover instead) */
        .product-rating,
        .add-to-cart {
            display: none;
        }
        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        .results-count {
            font-size: 1.1rem;
            color: #666;
        }
        .sort-dropdown select {
            padding: 10px 20px;
            border: 2px solid #e5e5e5;
            border-radius: 8px;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            /* Hero Adjustments */
            .equipment-hero {
                min-height: 50vh;
                padding-top: 100px;
            }

            .equipment-hero::after {
                font-size: 6rem;
            }

            .hero-content-equipment h1 {
                font-size: 2.5rem;
                letter-spacing: -1px;
            }

            .hero-content-equipment p {
                font-size: 1rem;
            }

            /* Shop Container */
            .shop-container {
                margin: 40px auto;
                padding: 0 15px;
            }

            /* Show Mobile Filter Toggle */
            .mobile-filter-toggle {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            /* Hide Desktop Filter Bar, Show Mobile Panel */
            .filter-bar {
                display: none;
            }

            .filter-panel-mobile {
                display: block;
            }

            /* Filter Groups in Mobile Panel */
            .filter-panel-mobile .filter-group {
                margin-bottom: 1.5rem;
                min-width: 100%;
            }

            .filter-panel-mobile .filter-group:last-of-type {
                margin-bottom: 1rem;
            }

            .filter-panel-mobile .filter-group label {
                font-size: 0.9rem;
                margin-bottom: 0.6rem;
            }

            .filter-panel-mobile .filter-group select {
                padding: 12px 15px;
                font-size: 0.95rem;
            }

            /* Filter Tags in Mobile */
            .filter-panel-mobile .filter-tags {
                display: flex;
                gap: 0.8rem;
                flex-wrap: wrap;
                margin-bottom: 0;
            }

            .filter-panel-mobile .filter-tag {
                padding: 8px 16px;
                font-size: 0.85rem;
            }

            /* Results Header */
            .results-header {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
                margin-bottom: 1.5rem;
            }

            .results-count {
                font-size: 0.95rem;
            }

            .sort-dropdown {
                width: 100%;
            }

            .sort-dropdown select {
                width: 100%;
                padding: 12px 15px;
                font-size: 0.95rem;
            }

            /* Premium 2-Column Mobile Grid */
            .products-grid-shop {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            /* Product Card Mobile Optimization */
            .product-card-shop {
                border-radius: 8px;
            }

            .product-img-shop {
                height: 180px;
            }

            .product-img-shop::after {
                font-size: 0.75rem;
                padding: 8px 16px;
                bottom: 10px;
            }

            .product-card-shop:hover .product-img-shop::after {
                bottom: 12px;
            }

            .product-details-shop {
                padding: 0.8rem 0.8rem 1rem;
            }

            .product-category {
                font-size: 0.7rem;
                margin-bottom: 0.25rem;
            }

            .product-title {
                font-size: 0.9rem;
                margin-bottom: 0.4rem;
                line-height: 1.3;
            }

            .product-price {
                font-size: 0.95rem;
            }

            .product-price .old-price {
                font-size: 0.8rem;
            }
        }

        /* Extra Small Mobile (iPhone SE, small phones) */
        @media (max-width: 480px) {
            .equipment-hero {
                min-height: 45vh;
            }

            .hero-content-equipment h1 {
                font-size: 2rem;
            }

            .hero-content-equipment p {
                font-size: 0.9rem;
            }

            .shop-container {
                margin: 30px auto;
            }

            .mobile-filter-toggle {
                padding: 12px 15px;
                font-size: 0.9rem;
            }

            .filter-panel-mobile.active {
                padding: 1rem;
            }

            .products-grid-shop {
                gap: 0.8rem;
            }

            .product-img-shop {
                height: 160px;
            }

            .product-details-shop {
                padding: 0.7rem;
            }

            .product-title {
                font-size: 0.85rem;
            }

            .product-price {
                font-size: 0.9rem;
            }
        }

        /* Loading Spinner */
        .loading-products {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
            grid-column: 1 / -1;
        }

        .loading-products .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #dc2626;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 1rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-products p {
            color: #666;
            font-size: 1.1rem;
            font-weight: 500;
        }