.smq-quality-bars {
    --smq-bar-color: #6b46c1;
    --smq-bar-bg: #e5e5e5;
    --smq-bar-height: 8px;
    --smq-bar-radius: 8px;
    margin-top: 20px;
}

.smq-material-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #666;
}

.smq-info-row {
    display: flex;
    gap: 6px;
    align-items: baseline;
}

.smq-info-label {
    font-weight: 600;
    color: #333;
    flex-shrink: 0;
}

.smq-materiale {
    font-weight: 500;
    color: #333;
}

.smq-composizione {
    flex-basis: 100%;
    font-size: 14px;
}

.smq-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.smq-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.smq-bar-label {
    flex: 0 0 90px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.smq-bar-track {
    flex: 1;
    height: var(--smq-bar-height);
    background: var(--smq-bar-bg);
    border-radius: var(--smq-bar-radius);
    overflow: hidden;
}

.smq-bar-fill {
    height: 100%;
    background: var(--smq-bar-color);
    border-radius: var(--smq-bar-radius);
    transition: width 0.4s ease;
}

.smq-bar-value {
    flex: 0 0 32px;
    font-size: 13px;
    font-weight: 700;
    color: #6b46c1;
    text-align: right;
}

@media (max-width: 480px) {
    .smq-bar-label {
        flex: 0 0 75px;
        font-size: 12px;
    }

    .smq-material-info {
        gap: 8px;
    }
}
