.woocommerce ul.products li.product,
.woocommerce div.product div.images {
    position: relative;
}

.ms-product-badges {
    position: absolute;
    z-index: 20;
    top: 14px;
    right: 14px;
    display: flex;
    max-width: calc(100% - 28px);
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
    pointer-events: none;
}

.ms-product-badge {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
}

.ms-product-badge img {
    display: block;
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    padding: 2px;
    margin: 0 !important;
    aspect-ratio: 1;
    object-fit: contain;
}

.ms-product-badge--text {
    width: auto;
    min-width: 54px;
    padding: 7px 10px;
    border-radius: 2px;
    color: #fff;
    background: #093f63;
    font: 600 12px/1.2 Montserrat, Arial, sans-serif;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .ms-product-badges {
        top: 10px;
        right: 10px;
        gap: 5px;
    }

    .ms-product-badge {
        width: 44px;
        height: 44px;
    }

    .ms-product-badge img {
        width: 40px !important;
        height: 40px !important;
        max-width: 40px !important;
        padding: 2px;
    }

    .ms-product-badge--text {
        width: auto;
        min-width: 44px;
        height: auto;
        padding: 6px 8px;
        font-size: 11px;
    }
}
