/* Container dos adicionais */
.wcs-adicionais-container {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.wcs-adicionais-container h3 {
    color: #333;
    margin-top: 0;
}

.wcs-adicional-item {
    margin-bottom: 20px;
}

.wcs-adicional-item:last-child {
    margin-bottom: 0;
}

.wcs-adicional-item label {
    color: #333;
}

/* Estilização do slider */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    cursor: pointer;
}

/* Thumb do slider - WebKit (Chrome, Safari) */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F7C41F;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-top: -8px;
}

input[type="range"]::-webkit-slider-thumb:hover {
    background: #E6A200;
}

/* Thumb do slider - Firefox */
input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F7C41F;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-top: -8px;
}

input[type="range"]::-moz-range-thumb:hover {
    background: #E6A200;
}

/* Track do slider - Firefox */
input[type="range"]::-moz-range-track {
    background: #ddd;
    border-radius: 5px;
}

/* Chrome, Safari, Edge (Blink/WebKit) */
input[type="range"]:focus::-webkit-slider-runnable-track {
    background: #F7C41F;
}

/* Firefox */
input[type="range"]:focus::-moz-range-track {
    background: #F7C41F;
}

/* Responsivo */
@media (max-width: 768px) {
    .wcs-adicionais-container {
        padding: 15px;
    }
    
    .wcs-adicional-item label {
        font-size: 14px;
    }
}
