.quantity-slider-container {
    margin: 20px 0;
}

#quantity-slider {
    margin: 10px 0;
    width: 100%;
}

#quantity-slider-input {
    text-align: center;
    margin-top: 10px;
    width: 60px;
}

.ui-slider-handle {
    cursor: pointer;
}

.quantity-slider-wrapper {
    margin: 20px 0;
}

.ticket-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.qty-buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: #f5f5f5;
    border-radius: 10px;
}

.ticket-input-wrapper button.qty-btn {
    font-size: 20px;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    padding: 0px !important;
}

#quantity-slider-input {
    text-align: center;
    width: 30%;
    font-size: 18px;
    margin: 0 10px;
    background: #fff;
    border: 0px solid #ccc;
}

.number-of-tickets {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Add this to your quantity-slider.css */
.rwd-discount-bulbs {
    position: relative;
    height: 30px; /* Give enough space for bulbs and arrows */
    /*margin-bottom: 30px;*/
    min-width: 60px; /* instead of fixed width */
    width: auto;
    padding: 6px 8px; /* adjust padding */
}

.rwd-discount-value {
    font-size: 10px;
    line-height: 1.2;
    font-weight: 400;
}

.rwd-discount-bulb {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    background: #00c853;
    color: #fff;
    font-weight: bold;
    padding: 1px 1px;
    border-radius: 20%;
    text-align: center;
    width: 41px;
    height: 35px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
}

.rwd-discount-bulb:first-child {
    background: #ff9800;
}

.rwd-discount-bulb.active:first-child {
    transform: translateX(-50%) scale(1.0) !important;
}

.rwd-discount-bulb:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #00c853;
}

.rwd-discount-bulb:first-child:after {
    border-top-color: #ff9800;
}

/* Add to quantity-slider.css */
.rwd-discount-bulb.active {
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

/* Make sure slider is positioned relatively */
.quantity-slider-container {
    position: relative;
}

/* Range Slider */
.ui-slider-horizontal .ui-slider-handle {
    top: -0.5em;
    margin-left: -.6em;
    border-radius: 100%;
}



/* Adjust the slider margin to accommodate bulbs */
#quantity-slider {
    margin: 0px 0 20px;
    height: 5px;
}

#rwd-qty-display {
    font-size: 18px;
    font-weight: bold;
    padding: 0 10px;
    min-width: 30px;
    text-align: center;
}

/*#rwd-price-summary {
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
    color: #333;
}
#rwd-price-summary del {
    color: #999;
    margin-right: 5px;
}

#rwd-price-summary {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
    color: #444;
}
#rwd-price-summary del {
    color: #999;
    margin-right: 5px;
}*/

#rwd-price-summary {
    font-weight: bold;
    min-width: 180px;
    text-align: center;
    font-size: 16px;
    margin: 0;
}

.qty-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
    border: none;
    background: #eee;
    cursor: pointer;
    border-radius: 4px;
}

.qty-btn:hover {
    background: #ddd;
}

.slider-floating-label {
    position: absolute;
    top: -40px; /* 👈 moved below the handle */
    left: 50%;
    transform: translateX(-50%);
    background: #e91e63;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    pointer-events: none;
}

/* 🔺 Add this block for the small upward-pointing arrow */
.slider-floating-label::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #e91e63;
}


div#rwd-price-summary {
    background: #ffecbb;
    padding: 7px;
    border-radius: 5px;
    border: 1px solid #000000;
    color: #000000;
}

.quantity-slider-wrapper button.qty-btn.minus {
    border-radius: 5px 0px 0px 5px !important;
}

.quantity-slider-wrapper button.qty-btn.plus {
    border-radius: 0px 5px 5px 0px !important;
}

button.single_add_to_cart_button {
    width: 100% !important;
    margin-left: 0px !important;
}

.rwd-discount-bulbs.below {
    display: flex;
    width: 100% !important;
    justify-content: space-around;
    translate: 10%;
    margin-bottom: 10px;
}

.rwd-discount-bulbs.below .rwd-discount-bulb:after {
    display: none;
}

.rwd-fixed-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.rwd-fixed-button {
    background: #f5f5f5;
    border: 1px solid #ccc;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 500;
    transition: background 0.2s ease;
}

.rwd-fixed-button:hover {
    background: #e0e0e0;
}

.rwd-fixed-button.active {
    background: #00c853;
    color: #fff;
    border-color: #00c853;
}


@media only screen and (max-width: 600px) {
div#rwd-price-summary {
    width: 100%;
    margin-top: 10px;
}

.qty-buttons-wrapper {
    width: 100%;
    display: flex
;
    justify-content: space-between;
}

}