.wppr-container {
    position: fixed !important;
    bottom:16%; 
    right:8px !important;    
    display: flex !important;
    align-items: center !important;
    direction: rtl !important;
    z-index:111  !important;
    gap: 10px !important;
}


.wppr-btn {
    width: 40px;
    height: 40px;
    padding-top: 8px;
    border-radius: 50%;
    background: #FFF;
    color: #111;
    border: none;
    font-weight: bold;
    font-size:22px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wppr-btn:hover {
    background-color: #111;
    color:#fff;
}

.wppr-capsule {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 8px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    width: 198px !important; 
    justify-content: space-between !important;
}

.wppr-capsule.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.wppr-label {
    font-size: 13px;
    color: #555;
    margin-left: 10px;
    white-space: nowrap;
    font-family: inherit;
    width: 50px !important; 
    display: inline-block !important; 
    text-align: right !important; 
    flex-shrink: 0 !important; 
}

#wpprSlider {
    -webkit-appearance: none;
    appearance: none;
    width: 110px;
    height: 3px;
    border-radius: 10px;
    background: #fff;     
    outline: none;
    margin: 0 5px;
    cursor: pointer;
    border:none;
}


#wpprSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand-color);
    cursor: pointer;
    border: 2px solid #ffffff; 
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); 
    transition: transform 0.1s ease, background-color 0.2s ease;
    margin-top: -5px;
}

#wpprSlider::-webkit-slider-thumb:hover,
#wpprSlider:active::-webkit-slider-thumb {
    transform: scale(1.2);
}


#wpprSlider::-webkit-slider-runnable-track {
    height: 3px;
    background: #e0e0e0;
    border-radius: 10px;
}

#wpprSlider::-moz-range-track {
    height: 3px;
    background: #e0e0e0;
    border-radius: 10px;
}

#wpprSlider::-moz-range-thumb {
    width: 12px; 
    height: 12px;
    border-radius: 50%;
    background: var(--brand-color);
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease;
}

#wpprSlider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

/** مظهر الوضع الداكن **/
.dark-skin .wppr-btn {
    background:#27292d;
    color: #fff;
}


.dark-skin .wppr-capsule {
    background: #111;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: none;
}

.dark-skin .wppr-label {
    color: #777;
}

.dark-skin #wpprSlider {
    background: #111;     
    border:none;
}

.dark-skin #wpprSlider::-webkit-slider-thumb {
    width: 14px;
    height: 14px;
    background: var(--brand-color);
    cursor: pointer;
    border: 2px solid #888; 
    margin-top: -5px;
}


.dark-skin #wpprSlider::-webkit-slider-runnable-track {
    height: 3px;
    background: #555;
    border-radius: 10px;
}

.dark-skin #wpprSlider::-moz-range-track {
    height: 3px;
    background: #555;
    border-radius: 10px;
}

.dark-skin #wpprSlider::-moz-range-thumb {
    border: 2px solid #777;
}

#wpprSlider::-moz-range-thumb:hover {
    transform: scale(1.2);
}