/* Product listings - light grid with overlay shapes */
.tp-listing--light-grid .tp-listing-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:20px}
.tp-product-card{font-family:var(--font-family);}
.tp-product-card--light{background:var(--listing-bg,#fff);border-radius:12px;padding:12px;box-shadow:0 6px 18px rgba(35,47,63,0.06);overflow:hidden}
.tp-product-image-wrapper{position:relative;display:block;padding:10px 12px 18px;display:flex;align-items:center;justify-content:center}
.tp-product-overlay{position:absolute;left:50%;transform:translateX(-50%);bottom:6px;z-index:0;pointer-events:none;opacity:0.95;width:90%;max-width:220px}
.tp-product-overlay.overlay-1{filter:drop-shadow(0 8px 20px rgba(0,0,0,0.08));}
.tp-product-overlay.overlay-2{transform:translateX(-50%) scaleX(1.06);opacity:0.9}
.tp-product-image{position:relative;z-index:1;max-width:100%;height:auto;border-radius:8px;display:block}
.tp-product-title{font-size:15px;margin:12px 0 6px;color:var(--tp-text-1,#222)}
.tp-product-price{font-weight:700;color:var(--tp-theme-primary,#ff6b3a)}

/* positions */
.tp-product-overlay.overlay-pos-bottom{bottom:6px;top:auto;left:50%;transform:translateX(-50%)}
.tp-product-overlay.overlay-pos-bottom-left{left:12px;right:auto;transform:none}
.tp-product-overlay.overlay-pos-bottom-right{right:12px;left:auto;transform:none}
.tp-product-overlay.overlay-pos-top{top:-8px;bottom:auto;left:50%;transform:translateX(-50%)}
.tp-product-overlay.overlay-pos-top-left{top:-8px;left:12px;right:auto;transform:none}
.tp-product-overlay.overlay-pos-top-right{top:-8px;right:12px;left:auto;transform:none}

/* variant-specific adjustments */
.tp-product-item-2 .tp-product-overlay{width:75%;bottom:10px}
.tp-product-item-3 .tp-product-overlay{width:85%;bottom:6px}
.tp-product-item-4 .tp-product-overlay{width:90%;bottom:14px}
.tp-product-item-5 .tp-product-overlay{width:70%;bottom:8px}

/* dark-mode overlay tweaks (applies when parent has .dark-mode utility) */
.dark-mode .tp-product-overlay{opacity:0.9;filter:contrast(0.95) saturate(0.95)}

/* responsive tweaks */
@media (max-width:767px){.tp-listing--light-grid .tp-listing-grid{grid-template-columns:repeat(2,1fr);gap:12px}.tp-product-overlay{width:70%;bottom:2px}}
