
    .filter_conditions {
            font-family: 'Inter', sans-serif;
            font-weight: 500 !important;
            font-style: normal;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: #f8f9fa;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .filter_conditions_heading {
            font-size: 14px;
            color: #5F6C72;
        }

        .active-filters-list {
            font-size: 14px;
            flex: 1;
            min-width: 200px;
        }

        .filter-chip {
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            background: #36b4a3;
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 1rem;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .filter-close {
            margin-left: 0.5rem;
            background: none;
            border: none;
            font-size: 1.2rem;
            line-height: 1;
            color: #d32f2f;
            cursor: pointer;
            padding: 0;
            width: 1.2em;
            height: 1.2em;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .filter-close:hover {
            background: rgba(211, 47, 47, 0.1);
            border-radius: 50%;
        }

        .filter_conditions_totalproduct {
            color: #6c757d;
            font-size: 0.9rem;
        }



    .products {
        background: linear-gradient(90deg, #43FFEC 0%, #FFB84D 50%, #FF0080 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .product-sub-details {
        margin-top:10px;
        padding: 10px;
    }
    
    .popular-product-heading {
        margin: 0 auto;
        width: 90%;
        margin-top: 60px;
        text-align: left;
        font-weight: 500;
        font-style: Medium;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
        box-sizing: border-box;
        justify-content: center;
        color: #000000;
    }
    
    .popular-product-description {
        margin: 0 auto;
        width: 90%;
        margin-top: 30px;
        text-align: left;
        font-weight: 400;
        font-style: Regular;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 24px;
        letter-spacing: 0%;
        box-sizing: border-box;
        justify-content: center;
        color: #5F6C72;
    }

    /* Styling the products-list container */
    .products-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }

    /* Styling individual product-details */
    .product-details {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        text-align: center;
        width: 250px;
        margin-bottom: 10px;
    }

    .product-details:hover {
        transform: translateY(-5px);
    }

    /* Styling product image container */
    .product-image {
        margin: 0 auto;
        position: relative;
            width: 100%;
        height: 225px;
    }

    /* Styling product image */
    .product-image img {
            width: 100%;
        height: 225px;
        opacity: 1;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .product-image img:hover {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    

    /* Styling product name */
    .product-name {
        text-align: left;
        font-weight: 400;
        font-style: Regular;
        font-size: 14px;
        leading-trim: NONE;
        line-height: 20px;
        letter-spacing: 0%;
        color: #191C1F;
    }

    .product-original-price {
        font-weight: 600;
        font-style: SemiBold;
        font-size: 14px;
        leading-trim: NONE;
        line-height: 20px;
        letter-spacing: 0%;
        color: #2C2C2C;
    } 
    
    .product-mrp-price {
        font-weight: 400;
        font-style: Regular;
        font-size: 14px;
        leading-trim: NONE;
        line-height: 20px;
        letter-spacing: 0%;
        text-decoration: line-through;
        color: #787878;
    }
    
    .product-offer-percentage {
        font-weight: 400;
        font-style: Regular;
        font-size: 12px;
        leading-trim: NONE;
        line-height: 20px;
        letter-spacing: 0%;
        color: #36B4A3;
    }
    
    /* Styling product price */
    .product-price {
        margin-top: 10px;
        text-align: left;
        color: #3A3A3A;
        font-family: Inter;
        font-weight: 600;
        font-size: 18px;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
        display: flex;
        flex-direction: row;
        gap: 15px;
    }

    .product-rating {
        font-family: Inter;
        font-weight: 400;
        font-size: 15px;
        text-align: left;
        line-height: 20px;
        color: #000000;
        margin-top: 8px;
    }

    .product-rating .star {
        color: #FFC700;
    }

    .add-to-cart-div {
        margin: 10px auto;
        width: 90%;
    }

    .add-to-cart-div button {
        font-family: DM Sans;
        font-weight: 500;
        font-style: Medium;
        font-size: 14px;
        leading-trim: NONE;
        line-height: 110.00000000000001%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 10px;
        color: #000000;
        border: none;
        border-radius: 5px;
        font-family: Inter;
        cursor: pointer;
    }

    .add-to-cart-div button:hover {
        background-color: #36B4A3;
        color: white;
    }

    .add-to-cart-div button::before {
        content: '\1F6D2'; /* Unicode for shopping cart */
        font-size: 16px;
        margin-right: 8px;
        color: #000000;
    }

    .add-to-cart-div button:hover::before {
        color: #FFFFFF;
    }

    /* Responsive design for all devices */
    /* TV screens (>2560px) */
    @media (min-width: 2561px) {
        .products-list {
            padding-top: 30px;
            gap: 50px;
            max-width: 90%;
        }

        .product-details {
            width: 225px;
            max-width: 225px;
        }

        .product-image {
            margin: 0 auto;
            width: 100%;
            height: 200px;
        }

        .product-image img {
            max-width: 225px;
            height: 200px;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            object-fit: cover;
        }

        .popular-product-heading {
            font-size: 32px;
        }

        .popular-product-description {
            font-size: 20px;
            line-height: 28px;
        }
    }

    /* Desktop and Laptop (1025px - 2560px) */
    @media (min-width: 1025px) and (max-width: 2560px) {
        .products-list {
            padding-top: 30px;
            gap: 15px;
            max-width: 100%;
        }

        .product-details {
            width: 225px;
        }

        .product-image {
            margin: 0 auto;
            width: 225px;
            height: 200px;
        }

        .product-image img {
            width: 225px;
            height: 200px;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            object-fit: cover;
        }
    }

    /* Tablet (601px - 1024px) */
    @media (min-width: 601px) and (max-width: 1024px) {
        .products-list {
            padding-top: 30px;
            gap: 30px;
        }

        .product-details {
            width: 225px;
            max-width: 250px;
        }

        .product-image {
            margin: 0 auto;
            width: 225px;
            height: 190px;
        }

        .product-image img {
            width: 225px;
            height: 190px;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            object-fit: cover;
        }
    }

    /* Mobile (≤600px) */
    @media (max-width: 600px) {
        .products-list {
            padding-top: 30px;
            gap: 20px;
        }

        .product-details {
            width: 306px;
        }

        .product-image {
            width: 100%;
            width: 306px;
            height: 300px;
        }

        .product-image img {
            width: 306px;
            height: 300px;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            object-fit: cover;
        }

        .product-image img:hover {
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }
    }
    
   