/* Reese Brothers WooCommerce overrides */
.woocommerce .rb-container { max-width: 1100px; margin: 0 auto; }
.woocommerce .products, .woocommerce-page .products { padding: 0 16px; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { margin: 0 12px 24px; }
.woocommerce ul.products li.product a img { border-radius: 8px; }
.woocommerce .price { color: #f2e9e1; font-weight: 600; }

/* Buttons */
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce .added_to_cart, a.added_to_cart, .woocommerce a.add_to_cart_button, .add_to_cart_button {
  background: #9b1c1c;
  border: 1px solid #7f1717;
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 12px;
  text-transform: none;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce a.add_to_cart_button:hover { filter: brightness(1.05); }

/* Hide default blog widgets on /shop */
.woocommerce .widget, .woocommerce .widget-area, .woocommerce-sidebar, .sidebar, .shop-sidebar { display: none; }

/* Mobile edge padding */
@media (max-width:768px){
  .woocommerce .products, .woocommerce-page .products { padding-left: 12px; padding-right: 12px; }
  .woocommerce ul.products li.product, .woocommerce-page ul.products li.product { margin-left: 6px; margin-right: 6px; }
}

/* Header logo size bump */
.site-header .logo img { max-height: 44px; }
@media (min-width:768px){ .site-header .logo img { max-height: 56px; } }

/* Floating cart FAB */
.rb-cart-fab{position:fixed;right:18px;bottom:86px;background:#b02a24;border-radius:999px;
box-shadow:0 8px 22px rgba(0,0,0,.35);display:flex;align-items:center;gap:10px;padding:10px 16px;
z-index:9999;color:#fff;font-weight:700}
.rb-cart-fab .icon{width:22px;height:22px;display:inline-block;background:transparent;position:relative}
.rb-cart-fab .icon:before{content:"";display:block;width:22px;height:14px;border:2px solid #fff;border-top:none;border-radius:0 0 4px 4px;position:absolute;bottom:0}
.rb-cart-fab .icon:after{content:"";display:block;width:18px;height:2px;background:#fff;position:absolute;top:-2px;left:2px;border-radius:1px}
.rb-cart-fab .count{font-size:18px;line-height:1}
@media (max-width:480px){ .rb-cart-fab{bottom:92px;} }

/* Sticky proceed to checkout on cart */
.rb-sticky-checkout{position:fixed;left:12px;right:12px;bottom:92px;background:#0f0f0f;border:1px solid #402; 
border-radius:14px;padding:12px 14px;display:flex;justify-content:space-between;align-items:center;z-index:9998}
.rb-sticky-checkout .btn{background:#9b1c1c;color:#fff;border:1px solid #7f1717;border-radius:12px;padding:10px 16px}