/* ───────────────────────────────────────────────────────────
   WCES Product Labels – Overlay badges on product images
   ─────────────────────────────────────────────────────────── */

/* ── Label Wrapper (shop / archive) ── */
.wces-label-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
}

.wces-label-wrapper--shop {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
}

/* Ensure product image container is relative */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    position: relative;
    display: block;
    overflow: hidden;
}

/* ── Single Product Wrapper ── */
.wces-single-product-image-wrap {
    position: relative;
}

.wces-single-product-image-wrap > .wces-delivery-label {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 100;
}

/* ── The Label Badge ── */
.wces-delivery-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wces-delivery-label:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ── National Variant ── */
.wces-label--national {
    background: linear-gradient(135deg, #1e6b3a 0%, #2d8f4e 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ── Local Variant ── */
.wces-label--local {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ── Icon ── */
.wces-label__icon {
    font-size: 13px;
    line-height: 1;
}

/* ── Text ── */
.wces-label__text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .wces-delivery-label {
        font-size: 9px;
        padding: 4px 8px;
        gap: 3px;
    }

    .wces-label__icon {
        font-size: 11px;
    }

    .wces-single-product-image-wrap > .wces-delivery-label {
        top: 8px;
        right: 8px;
    }
}

/* ── WooCommerce sale badge compatibility ── */
.woocommerce span.onsale + .wces-label-wrapper,
.wces-label-wrapper--shop {
    top: auto;
    bottom: 8px;
    right: 8px;
}

/* If there's a sale badge, move label to bottom-right */
.woocommerce ul.products li.product .onsale ~ .wces-label-wrapper--shop {
    top: auto;
    bottom: 8px;
}
