 /* Tooltip container */
        .product-pin-icon {
            position: relative;
        }

        /* Tooltip styles */
        .tooltip-text {
            visibility: hidden;
            width: 100px;
            background-color: #000;
            color: #fff;
            text-align: center;
            border-radius: 5px;
            padding: 5px;
            position: absolute;
            z-index: 1000;
            top: 50%;
            /* Center vertically */
            left: -109px;
            /* Position it on the left of the pin icon */
            transform: translateY(-50%);
            /* Center vertically */
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
            font-size: 14px;
            white-space: nowrap;
            /* Prevent wrapping */
            pointer-events: none;
            /* Prevent tooltip from blocking clicks */
        }

        /* Tooltip arrow */
        .tooltip-text::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -10px;
            /* Positioned at the right edge of the tooltip */
            transform: translateY(-50%);
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent transparent #000;
            /* Left arrow */
        }

        /* Show the tooltip when hovering over the pin icon */
        .product:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }



        .custom-icon-container {


            position: absolute;
            right: 0px;
            top: 0px;
            z-index: 10;
            transition: all 0.9s ease;

        }





        .abc {

            margin-bottom: 3%;

            margin-top: 5%;


        }




        .product-pin-icon {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
       



        }








        .product-pin-icon .pin-icon {
            width: 40px;
            height: 40px;
background-image: url('../../../../images/unselected-pin.png');
            background-size: contain;
            background-repeat: no-repeat;
            display: inline-block;
            vertical-align: middle;
        }



        .product-pin-icon .product-checkbox-input:checked+.pin-icon {
background-image: url('../../../../images/in-memory-pin.png');
        }

        .product-pin-icon.selectedProd .product-checkbox-input:checked+.pin-icon {
background-image: url('../../../../images/in-memory-selected-pin.png');
        }

        .product-pin-icon .pin-text {
            font-size: 14px;
            vertical-align: middle;
        }






        .product-pin-icon.pinned .tooltip-text {
            display: none;
        }


        /* Ensure the image floats right but is aligned with other content */
        .product-pin-icon img {
            width: 20px;
            /* Adjust size */
            height: auto;
            float: right;
        }




        .wd-loop-footer {
            margin-top: 97px;
        }