/**
 * Hausmann Attribute Swatches - Frontend Styles
 */

/* Wrapper de swatches */
.hausmann-swatches-wrapper {
   // margin-bottom: 30px;
}
.reset_variations {
    display: none;
}
.swatches-title {
    color: #2c2c2c;
    margin-bottom: 17px;
    text-transform: uppercase;
    text-align: center;
    font-size: 12px;
    font-family:'BrownLLWeb-Bold', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 700;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0.17em;
    text-decoration: none;
}

/* Contenedor de swatches */
.hausmann-swatches {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 13px;
}

/* Swatch individual */
.hausmann-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.swatch-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: 7px;
}

.swatch-label {
    color: #2c2c2c;
    font-size: 10px;
    font-weight: 700;
    font-style: normal;
    line-height: 14px;
    letter-spacing: 0.17em;
    text-decoration: none;
    text-transform: uppercase;
}

/* Estados del swatch */
.hausmann-swatch:hover .swatch-circle {
    border-color: #2B3533;
    transform: scale(1.1);
}

.hausmann-swatch.selected .swatch-circle {
    border-color: #2c2c2c;
    border-width: 2px;
    transform: scale(1.1);
}

/* Separadores decorativos */
/*.hausmann-swatches-wrapper::before,
.hausmann-swatches-wrapper::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #2c2c2c;
}

.hausmann-swatches-wrapper::before {
    margin-bottom: 20px;
}

.hausmann-swatches-wrapper::after {
    margin-top: 20px;
}*/

/* Select oculto */
.hausmann-hidden-select {
    display: none !important;
}

/* Responsive */
@media (max-width: 575.98px) {
    .hausmann-swatches {
        gap: 15px;
    }
    
    .swatch-circle {
        width: 40px;
        height: 40px;
    }
    
    .swatch-label {
        font-size: 0.8rem;
    }
}
