   .cleaning-products {
            max-width: 1590px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .cleaning-products__title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 300;
            color: #555555;
            line-height: 1.2;
            margin-bottom: 2rem;
            max-width: 100%;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 0.2s forwards;
            text-align: center;
        }

        .cleaning-products__list {
            display: flex;
            flex-direction: column;
            gap: 0rem !important;
        }

        .cleaning-product {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease-out;
            gap: 1.5rem;
        }

        .cleaning-product--animated {
            opacity: 1;
            transform: translateX(0);
        }

        .cleaning-product__content {
            flex: 1;
            padding: 0;
            text-align: center;
            max-width: 100%;
        }

        .cleaning-product__step {
            font-size: 0.875rem;
            color: #555555;
            margin-bottom: 0.5rem;
            opacity: 0.8;
        }

        .cleaning-product__header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .cleaning-product__name {
            font-size: clamp(1.5rem, 4vw, 1.75rem);
            font-weight: 600;
            color: #000000;
            text-align: center;
        }

        .cleaning-product__icon {
            width: 1.5rem;
            height: 1.5rem;
            transition: transform 0.3s ease;
            margin-top: 0.5rem;
        }

        .cleaning-product__display {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            max-width: 500px;
            margin: 0 auto;
        }

        .cleaning-product__display:hover {
            transform: scale(1.02);
           
        }

        .cleaning-product__display::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }

        .cleaning-product__image {
            width: 100%;
            height: 100%;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            transition: transform 0.4s ease;
            animation: float 3s ease-in-out infinite;
        }

        /* Color themes */
        /* .cleaning-product__display--laundry {
            background: linear-gradient(135deg, #7dd3d8 0%, #a8e6ea 100%);
        }

        .cleaning-product__display--surface {
            background: linear-gradient(135deg, #8a8a8a 0%, #b0b0b0 100%);
        }

        .cleaning-product__display--bathroom {
            background: linear-gradient(135deg, #5b9bd5 0%, #87ceeb 100%);
        } */

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        /* Tablet and Desktop Styles */
        @media (min-width: 768px) {
            .cleaning-products {
                padding: 3rem 2rem;
            }

            .cleaning-products__title {
                margin-bottom: 3rem;
                text-align: left;
                max-width: 800px;
            }

            .cleaning-product {
                flex-direction: row;
                margin-bottom: 3rem;
                gap: 2rem;
                align-items: center;
            }

            .cleaning-product__content {
                text-align: left;
                padding-right: 2rem;
            }

            .cleaning-product__header {
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;
                gap: 1rem;
            }

            .cleaning-product__name {
                text-align: left;
            }

            .cleaning-product__icon {
                margin-top: 0;
            }

            .cleaning-product__display {
                height: 250px;
                border-radius: 125px;
                max-width: none;
                flex: 2;
            }
        }

        /* Large Desktop Styles */
        @media (min-width: 1024px) {
            .cleaning-products {
                padding: 2rem 2rem;
            }

            .cleaning-product__display:hover .cleaning-product__image {
                transform: scale(1.05);
            }
        }

        /* Very small mobile devices */
        @media (max-width: 360px) {
            .cleaning-products__title {
                font-size: 1.8rem;
            }
            
            .cleaning-product__name {
                font-size: 1.3rem;
            }
            
            .cleaning-product__display {
                height: 180px;
            }
        }