/* Frontend badge styles (modern & futuristic) */

:root {
  --wcpb-pad-y: 6px;
  --wcpb-pad-x: 10px;
  --wcpb-shadow: 0 6px 20px rgba(0,0,0,.25), inset 0 0 8px rgba(255,255,255,.12);
  --wcpb-glow: 0 0 16px rgba(14,165,233,.45);
}

/* Ensure product containers are positioning context */
.products .product, .woocommerce div.product .images, .woocommerce div.product .woocommerce-product-gallery {
  position: relative;
}

.wcpb-badge-wrap { 
  position: absolute; 
  inset: 0;          /* cover the entire product tile/gallery */
  z-index: 5; 
  pointer-events: none; 
}
.wcpb-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--wcpb-pad-y) var(--wcpb-pad-x);
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  box-shadow: var(--wcpb-shadow), var(--wcpb-glow);
  backdrop-filter: blur(2px) saturate(120%);
  border: 1px solid rgba(255,255,255,.15);
  transform: translateZ(0);
  pointer-events: none; /* don’t block clicks */
}

.wcpb-badge span { line-height: 1; }

/* Position utilities */
.wcpb-pos-tl { top: 10px; left: 10px; }
.wcpb-pos-tr { top: 10px; right: 10px; }
.wcpb-pos-bl { bottom: 10px; left: 10px; }
.wcpb-pos-br { bottom: 10px; right: 10px; }

/* Improve visibility on images */
.woocommerce ul.products li.product .wcpb-badge { z-index: 5; }
.woocommerce div.product .wcpb-badge { z-index: 9; }

/* Responsive tweaks */
@media (max-width: 480px) {
  :root { --wcpb-pad-y: 5px; --wcpb-pad-x: 8px; }
}


/* Bottom Center */
.wcpb-pos-bc { bottom: 10px; left: 50%; transform: translate(-50%,0) translateZ(0); }


/* Ensure inside-image anchoring on single product */
.woocommerce div.product .woocommerce-product-gallery__wrapper{ position: relative; }

.wcpb-badge-wrap-single{ position:absolute; inset:0; z-index:9; pointer-events:none; }
