/* =========================================================
   TOP RATED PRODUCTS – SIMPLE LIST
========================================================= */

.bf-top-rated-heading {
    margin: 0 0 .75rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    padding-bottom: 2em;
}

.bf-top-rated .products {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.bf-top-rated .product {
    margin: 0;
}

.bf-top-rated .product-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

/* IMAGE */
.bf-top-rated .product-thumb {
    width: 90px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.bf-top-rated .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* INFO */
.bf-top-rated .product-info {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.bf-top-rated .product-title {
    margin: 0;
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.3;
    color: #000;
    transition: 0.2s;
}
.bf-top-rated .product-title:hover{
    color: var(--e-global-color-primary);
}

.bf-top-rated .price {
    font-size: .95rem;
    font-weight: 600;
    color: #000;
}

.bf-top-rated .price del {
    opacity: .5;
    font-weight: 400;
}

.bf-top-rated .price ins {
    text-decoration: none;
}

/* HOVER – desktop only */
@media (hover: hover) {
    .bf-top-rated .product-link:hover .product-title {
        opacity: .85;
    }
}
