/* Product Badge Styles */
.badge {
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    padding: 3px 18px;
    max-height: 30px;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 0 128px 128px 0;

    @media (max-width: 768px) {
        font-weight: 500;
        font-size: 12px;
        line-height: 18px;
        padding: 3px 8px;
        width: fit-content;
        font-style: italic;
        border-radius: 0 128px 128px 0;
        max-height: 26px;
        text-transform: capitalize;
    }
}

/* Best Seller Badge */
.badge.bestseller {
    background-color: #fbd1d1;
    color: #a92d2d;
}

/* New Product Badge */
.badge.new {
    background: #afd9ae;
    color: #1f4b1e;
}

/* Incoming Product Badge */
.badge.incoming {
    background: #fddc9a;
    color: #704e09;
}

/* Out of Stock Badge */
.badge.out-of-stock {
    background: #e9eaeb;
    color: #3e445a;
}

/* Default Badge */
.badge.default {
    background: #e9eaeb;
    color: #3e445a;
}

/* Badge Container */
.badges {
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 10;
}

/* Product Image Container positioning for badges */
.product-image-container {
    position: static;
}
.product-item {
    position: relative;
}

.gallery-placeholder {
    position: relative;
}
