/**
 * LCA SearchLabelIntegration Module
 *
 * @category  LCA
 * @package   LCA_SearchLabelIntegration
 */

/* Base styles for Amasty labels in search autocomplete */
.mst-searchautocomplete__item {
    position: relative;
}

.mst-searchautocomplete__item .amasty-label-container {
    position: absolute;
    z-index: 995;
    pointer-events: none;
}

/* Label positions */
.mst-searchautocomplete__item .amasty-label-top-left {
    top: 5px;
    left: 5px;
}

.mst-searchautocomplete__item .amasty-label-top-center {
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.mst-searchautocomplete__item .amasty-label-top-right {
    top: 5px;
    right: 5px;
}

.mst-searchautocomplete__item .amasty-label-middle-left {
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
}

.mst-searchautocomplete__item .amasty-label-middle-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mst-searchautocomplete__item .amasty-label-middle-right {
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

.mst-searchautocomplete__item .amasty-label-bottom-left {
    bottom: 5px;
    left: 5px;
}

.mst-searchautocomplete__item .amasty-label-bottom-center {
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.mst-searchautocomplete__item .amasty-label-bottom-right {
    bottom: 5px;
    right: 5px;
}

/* Label text styles */
.mst-searchautocomplete__item .amasty-label-text {
    display: inline-block;
    padding: 3px 10px;
    background: #ff5501;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    line-height: 1.2;
    border-radius: 2px;
}

/* Label image styles */
.mst-searchautocomplete__item .amasty-label-image {
    max-width: 100%;
    height: auto;
    display: block;
}
