.best_selling_with_top_rated_1{


    /* PRODUCT CARD */
    .__best-selling {
        position: relative;
        display: block;
        border-radius: 5px;
        background: #fff;
    }

    .__best-selling img {
        aspect-ratio: 1;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .__best-selling:hover img {
        transform: scale(1.14);
    }

    .__best-selling .ptr {
        transition: color 0.3s ease;
    }

    .__best-selling:hover .ptr {
        color: #1b7fed;
    }

    /* IMAGE BOX */
    .best-selleing-image,
    .top-rated-image {
        overflow: hidden;
        background: #1b7fed10;
        border-radius: 5px;
    }

    /* DETAILS */
    .widget-product-title {
        position: relative;
    }

    .widget-product-title .ptr {
        display: inline-block;
        overflow: hidden;
        max-height: 1.2em;
        line-height: 1.2em;
        font-size: 13px;
        font-weight: 400;
    }

    /* PRICE */
    .text-accent {
        font-family: "Roboto", sans-serif;
        font-weight: 700;
        font-size: 17px;
        color: #1b7fed;
    }

    @media (max-width: 768px) {
        .text-accent {
            font-size: 14px;
        }
    }

    /* DISCOUNT BADGE */
    .for-discoutn-value {
        position: absolute;
        top: 8px;
        inset-inline-start: 8px;
        background: #1b7fed;
        color: #fff;
        font-size: small;
        border-radius: 4px;
        z-index: 3;
    }

    /* ICONS */
    .czi-arrow-right {
        color: #1b7fed;
    }

    .czi-star-filled {
        color: #fea569;
    }

    /* SCROLLBAR */
    ::-webkit-scrollbar {
        width: 3px;
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(194,194,194,.38);
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #000;
    }

    /* RTL FIX */
    .rtl {
        direction: ltr;
    }

    /* SELECTION */
    ::selection {
        background: #1b7fed;
        color: #fff;
    }
}
