/* Supplemental styles for the Ehay Store fidelity pass:
   star ratings, shop list-view, jQuery-UI price slider, quick-view modal. */

/* Rating stars on cards */
.products-rating { list-style: none; display: flex; gap: 2px; padding: 0; margin: 0 0 8px; align-items: center; }
.products-rating i { color: #f6a821; font-size: 14px; }
.products-rating li a { color: #999; font-size: 12px; margin-left: 6px; }

/* jQuery-UI price range slider (fallback styling) */
.price-range-bar.ui-slider { position: relative; height: 6px; background: #eee; border: 0; border-radius: 4px; margin: 16px 0; }
.price-range-bar .ui-slider-range { position: absolute; height: 100%; background: var(--theme-primary); border-radius: 4px; }
.price-range-bar .ui-slider-handle { position: absolute; top: -6px; width: 18px; height: 18px; margin-left: -9px; background: var(--theme-primary); border: 2px solid #fff; border-radius: 50%; box-shadow: 0 1px 4px rgba(0,0,0,.3); cursor: pointer; outline: none; }

/* Shop list view (custom.js toggles .products-row-view on #products-filter) */
#products-filter.products-row-view > [class*="col-"] { flex: 0 0 100%; max-width: 100%; }
@media (min-width: 768px) {
    #products-filter.products-row-view .single-products { display: flex; gap: 22px; align-items: center; }
    #products-filter.products-row-view .product-img { flex: 0 0 240px; max-width: 240px; }
    #products-filter.products-row-view .product-content { flex: 1; text-align: left; }
}

/* Quick View modal */
#modal_box .modal-body img { max-height: 360px; object-fit: contain; }
#modal_box .modal-content { border: 0; border-radius: 6px; }
