.neodea-variation-colors {
    display: flex;
    gap: 6px;
    margin-top: 9px;
    flex-wrap: wrap;
}

.neodea-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: inline-block;
}

/* ======== GENERAL SWATCHES ======== */
.neodea-variation-swatches{
    padding-top: 16px;
}

.neodea-swatches {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
}

.neodea-swatch {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0;
    cursor: pointer;
    position: relative;
}

.neodea-swatches button{
    flex-basis: auto !important;
}

.separator{
    border-block-start: #868686 solid 1px;
    margin: 16px 0px !important;
}

/* ======== COLORES (IMÁGENES) ======== */
.neodea-color-swatch img {
    width: 70px;
    height: auto;
    display: block;
    border-radius: 3px;
}

/* Línea blanca debajo cuando está seleccionado */
.neodea-color-swatch.is-selected::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
}

/* ======== TALLAS ======== */
.neodea-size-swatch span {
    font-size: 16px;
    color: #ffffff !important;
    padding: 4px 2px;
    background: none !important;
}

/* Línea blanca debajo cuando la talla está seleccionada */
.neodea-size-swatch.is-selected::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
}

.neodea-size-swatches{
    gap: 12px !important;
}

/* Evitar fondo en hover */
.neodea-swatch:hover {
    background: none !important;
}

/* Ocultar selects / variación original */
table.variations,
.woocommerce-variation.single_variation{
    display: none !important;
}

/* ======== ESTADOS SIN STOCK ======== */
.neodea-swatch.is-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.neodea-swatch.is-disabled::after {
    /* quitamos la rayita de seleccionado si estuviera */
    content: none !important;
}