/* RF Superstore — shop.css (only enqueued on WooCommerce pages) */

.rfs-shop-wrapper{display:flex;gap:var(--rfs-gap);align-items:flex-start;padding:30px 0;}
.rfs-shop-main{flex:1 1 auto;min-width:0;}
.rfs-shop-sidebar{flex:0 0 300px;}

ul.products{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--rfs-gap);list-style:none;margin:0;padding:0;}
ul.products li.product{border-radius:var(--rfs-radius);overflow:hidden;position:relative;}
ul.products li.product img{border-radius:var(--rfs-radius);}
ul.products li.product .price{color:var(--rfs-color-accent);font-weight:600;}

.rfs-quick-view-btn,.rfs-wishlist-btn,.rfs-compare-btn{border:0;background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.1);border-radius:50%;width:34px;height:34px;cursor:pointer;}

.rfs-swatches{display:flex;gap:6px;margin-top:8px;}
.rfs-swatch{width:22px;height:22px;border-radius:50%;border:2px solid #fff;box-shadow:0 0 0 1px #ddd;cursor:pointer;}
.rfs-swatch.is-active{box-shadow:0 0 0 2px var(--rfs-color-accent);}

.rfs-shop-filters{margin-bottom:20px;}
.rfs-filter-notice{font-size:12px;color:#888;}

@media (max-width: 900px) {
	ul.products{grid-template-columns:repeat(2,1fr);}
	.rfs-shop-wrapper{flex-direction:column;}
}
