/* Product Flag Manager - front office sticker styles */

.product-flag.on-order,
.product-flag.in-stock,
.product-flag.out-of-stock {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: inline-block;
    margin-bottom: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 2px;
    white-space: nowrap;
}

.product-flag.on-order {
    background-color: #c89b3c; /* gold/amber, matches "SUR COMMANDE" style */
}

.product-flag.in-stock {
    background-color: #3c8c5c; /* green */
}

.product-flag.out-of-stock {
    background-color: #b23b3b; /* red */
}

/* Stack multiple flags cleanly if a theme ever shows more than one */
.product-flags {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.product-flags .product-flag {
    position: static;
}
