
.shop-widget-title span{
    float: right;
}

.shop-category-list div.name,.shop-checkbox-list .name{
    float: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 80%;
}
.shop-checkbox-list .form-check-label span.name{
    float: left;
}


.product-price-range-box{
    margin-bottom: 12px;
}

.product-price-range.ui-widget-content {
    border: none;
    background: var(--border-info-color);
    height: 5px;
    border-radius: 3px;
}

.product-price-range .ui-state-default,
.product-price-range .ui-widget-content .ui-state-default {
    top: -7px;
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 0px;
    background: var(--theme-color);
    z-index: 1;
}

.product-price-range .ui-state-focus {
    outline: none;
}

.product-price-range .ui-widget-header {
    background: var(--theme-color);
    border-radius: 0 !important;
}

.product-price-range-input input {
    border: none;
    margin-bottom: 20px;
    color: var(--theme-color);
    background: transparent;
    font-weight: 700;
    outline: none;
}
.sold-out-text{
    background-color: #fee2e2;
    color: #ef4444;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #fca5a5;
}
.select-options-text{
    background-color: var(--theme-color);
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 12px 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--theme-color);
    max-height: 32px;
}
.select-options-text:hover{
    color: white;
}
@media (max-width: 575px) {
    .product-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .product-bottom .select-options-text {
        display: inline-block;
        padding-top: 4px;
        margin-right: auto;
        margin-left: auto;
    }
    .product-bottom div:has(.sold-out-text) {
        margin-right: auto;
        margin-left: auto;
    }
    .product-bottom .product-cart-btn {
        margin-right: auto;
        margin-left: auto;
    }
}