/* Estilos base para Widget de Características de Vino */

.wine-characteristics-container {
    width: 100%;
    max-width: 600px;
}

.wine-char-item {
    width: 100%;
}

.wine-char-label {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 8px;
}

.wine-char-bar-bg {
    width: 100%;
    height: 8px;
    background-color: #E5E5E5;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.wine-char-bar-fill {
    height: 100%;
    background-color: #2B1B1B;
    border-radius: 10px;
    transition: width 0.6s ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
    .wine-char-label {
        font-size: 13px;
    }
    
    .wine-char-bar-bg {
        height: 6px;
    }
}
