/* -------------------------------------------------------------------------
 * Early-booking promo badge on shop-loop product cards.
 * Positioned over the product image (top-left corner of the card).
 * ---------------------------------------------------------------------- */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
ul.products li.product {
    position: relative;
}

.ntb-promo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: calc(100% - 20px);
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0b3954 0%, #1f6f8b 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(11, 57, 84, 0.22);
    pointer-events: none;
}

.ntb-promo-badge-icon {
    font-size: 13px;
    line-height: 1;
    flex: 0 0 auto;
}

.ntb-promo-badge-text {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 220px;
}

/* Elementor product card support */
.elementor-product-item,
.elementor-widget-woocommerce-products .product,
.elementor-loop-item {
    position: relative;
}
