.denza-color-picker {
    max-width: 1000px;
    margin: 40px auto;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.denza-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: opacity 0.5s ease;
    text-align: end;
}
.denza-label {
    font-size: 14px;
    color: #e93c00;
    letter-spacing: 2px;
    margin: 30px 0 8px;
}
.denza-name {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
}
.denza-swatches {
    display: flex;
    justify-content: left;
    gap: 20px;
    flex-wrap: wrap;
}
.denza-swatch {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    cursor: pointer;
    border: 0px solid rgba(255,255,255,0.4);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.35s ease;
}
.denza-swatch:hover {
    transform: scale(1.15);
}
.denza-swatch.active {
    border-color: #fff;
    box-shadow: 0 0 0 3px #fff, 0 15px 40px rgba(0,0,0,0.5);
}