.qsm-variation-price-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
}
.qsm-variation-price-title {
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
}
.qsm-variation-discount {
    border: 2px solid var(--awb-color5);
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    margin-left: 10px;
    font-size: 14px;
}
.qsm-variation-discount-label {
    flex-shrink: 0;
    text-transform: uppercase;
    padding:  0 5px;
    background-color: var(--awb-color5);
    color: white;
    display: flex;
    align-items: center;
}
.qsm-variation-discount-amount {
    flex-shrink: 0;
    padding: 0 5px;
    color: var(--awb-color5);
    display: flex;
    align-items: center;
}

/* Stock Slider Styles */
.qsm-stock-slider-container {
}

.qsm-stock-slider {
    position: relative;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
}

.qsm-stock-slider-track {
    position: relative;
    width: 100%;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.qsm-stock-slider-fill {
    position: relative;
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b 0%, #ffa500 50%, #4ecdc4 100%);
    border-radius: 10px;
    transition: width 0.3s ease-in-out;
    overflow: hidden;
}

.qsm-stock-slider-arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url("../image/slider-arrow.webp");*/
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19.5 20'%3E%3Cstyle%3E.st0%7Bfill:%23ffffff80%3B%7D%3C/style%3E%3Cpath class='st0' d='M19.5,16.7h0'/%3E%3Cpolygon class='st0' points='19.5 3.4 19.5 16.6 13.1 10 19.5 3.4'/%3E%3Cpolygon class='st0' points='10.1 10 19.5 19.8 19.5 20 13.1 20 12.9 19.8 3.4 10 12.9 0 19.5 0 10.1 10'/%3E%3Cpolygon class='st0' points='9.7 0 0 10 0 3.3 3.1 0 9.7 0'/%3E%3Cpolygon class='st0' points='9.8 20 3.2 20 3 19.8 0 16.7 0 10 9.8 20'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 35px 37px;
    background-position-y: center;
    animation: qsm-arrows-move 2s linear infinite;
    opacity: 0.6;
}

@keyframes qsm-arrows-move {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: -35px;
    }
}

.qsm-stock-slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 30px;
    background-color: #461499;
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease-in-out;
    z-index: 10;
}

.qsm-stock-slider-value {
    font-weight: bold;
    font-size: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    .qsm-stock-slider-thumb {
        width: 50px;
        height: 25px;
        border-radius: 12px;
    }

    .qsm-stock-slider-value {
        font-size: 12px;
    }

    .qsm-stock-slider-arrows {
        background-size: 25px 20px;
    }

    @keyframes qsm-arrows-move {
        0% {
            background-position-x: 0;
        }
        100% {
            background-position-x: -25px;
        }
    }
}
