/*
 * Public CSS for Enaltkat Product Badge
 */
.enaltkat-product-badge-wrapper {
    position: absolute;
    z-index: 9;
    display: flex;
    flex-direction: column;
    gap: 5px; /* Space between multiple badges in the same corner */
}

.enaltkat-product-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    box-sizing: border-box;
}

/* Positions */
.enaltkat-product-badge-wrapper.top-left {
    top: 5px;
    left: 5px;
}

.enaltkat-product-badge-wrapper.top-right {
    top: 5px;
    right: 5px;
}

.enaltkat-product-badge-wrapper.bottom-left {
    bottom: 5px;
    left: 5px;
}

.enaltkat-product-badge-wrapper.bottom-right {
    bottom: 5px;
    right: 5px;
}



