/* Product labels – loop (positioned over the product image) */
.product-image-hover {
    position: relative;
}

/* Override WooCommerce default 0.5em bottom margin on loop product images. */
.woocommerce ul.products li.product .product-image-hover img,
.woocommerce-page ul.products li.product .product-image-hover img {
    margin-bottom: 0;
}

.product-labels {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    pointer-events: none;
}

.product-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    padding: 5px 10px;
    border-radius: 2px;
    color: #fff;
    white-space: nowrap;
}

.product-label--alleen-online {
    background-color: #2b2b2b;
}

.product-label--in-showroom {
    background-color: #a18168;
}

/* "Snel leverbaar" marker – below the product image.
   The slot reserves vertical space so card titles align across the row,
   regardless of whether the marker is present. */
.product-snel-leverbaar-slot {
    margin-top: 12px;
    margin-bottom: 6px;
    min-height: 16px;
    line-height: 16px;
}

.product-snel-leverbaar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    color: #4e8a26;
}

.product-snel-leverbaar__dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #4e8a26;
    flex-shrink: 0;
}

/* Product labels – single product page */
.product-labels--single {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.product-labels--single .product-label {
    font-size: 13px;
    padding: 6px 12px;
}
