.product-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    pointer-events: none;
}

.product-labels--thumb {
    position: absolute;
    top: 8px;
    right: 8px;
    flex-direction: column;
    z-index: 5;
}

.product-labels--full {
    margin: 10px 0;
}

.product-labels--floating {
    position: absolute;
    top: 12px;
    right: 12px;
    flex-direction: column;
    z-index: 10;
    margin: 0;
}

.product-label {
    display: inline-flex;
    line-height: 0;
}

.product-label img {
    display: block;
    width: auto;
    height: 30px;
    max-width: 100%;
}

.product-labels--full .product-label img,
.product-labels--floating .product-label img {
    height: 30px;
}

@media (max-width: 768px) {
    .product-labels--thumb .product-label img {
        height: 24px;
    }

    .product-labels--full .product-label img,
    .product-labels--floating .product-label img {
        height: 30px;
    }
}
