.btn:hover {
    color: #fff;
}

.input-text:focus {
    box-shadow: 0px 0px 0px;
    border-color: #52525f;
    outline: 0px;
}

.form-control {
    border: 1px solid #545663;
}


.vh-50 {
    height: 50vh !important;
}

.overflow-auto {
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */
}

.overflow-auto::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.out-of-stock-img {
    width: 10em;
    height: auto;
}

#product-table {
    display: inline-block;
    white-space: nowrap;
    overflow-y: hidden;
}

/* General Styles */
.u-link-v5 {
    text-decoration: none;
    transition: color 0.3s ease;
}

.u-link-v5:hover {
    color: #F73F3F !important;
}
.my-3 .active {
    color: #F73F3F !important;

}

.u-check-icon-checkbox-v4 {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.u-check-icon-checkbox-v4 i {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.u-check-icon-checkbox-v4.checked i {
    opacity: 1;
}

.u-rating-v1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.u-rating-v1 li {
    display: inline-block;
    cursor: pointer;
    transition: color 0.3s ease;
}

.u-rating-v1 li:hover,
.u-rating-v1 li.hover {
    color: #ffc107 !important;
}

/* Range Slider Styles */
.u-slider-v1-3 {
    position: relative;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
}

.ui-slider-handle {
    position: absolute;
    top: -5px;
    width: 15px;
    height: 15px;
    background: #F73F3F;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: 0.3s ease;
}

.ui-slider-handle:hover {
    background: #B21D1A;
}

.ui-slider-range {
    position: absolute;
    height: 100%;
    background: #F73F3F;
    border-radius: 5px;
    z-index: 1;
}