/* =========================================
   YETKA – Swatches con precio (ESTABLE)
   Separador con border-top (no ::after)
   ========================================= */

/* Layout vertical */
.wcboost-variation-swatches__item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    padding-bottom: 10px;
    overflow: visible !important;
}

/* Imagen */
.wcboost-variation-swatches__item img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Nombre del acabado */
.wcboost-variation-swatches__name {
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
}

/* =============================
   PRECIO + SEPARADOR REAL
   ============================= */
.yetka-swatch-price {
    width: 70%;
    margin-top: 4px;
    padding-top: 4px;

    /* ← ESTE ES EL SEPARADOR  */
    border-top: 1px solid rgba(0, 0, 0, 0.2);

    font-size: 13px;
    font-weight: 600;
    color: #111;
    text-align: center;
    line-height: 1.2;
}

/* Precio regular tachado */
.yetka-price-regular {
    font-size: 10px;
    color: #888;
    text-decoration: line-through;
    margin-right: 4px;
    font-weight: 200;
}

/* Precio en oferta */
.yetka-price-sale {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

/* Precio normal */
.yetka-price-normal {
    font-size: 13px;
    font-weight: 400;
    color: #111;
}

/* (Opcional) Resaltar swatch seleccionado */
.wcboost-variation-swatches__item.selected .yetka-swatch-price,
.wcboost-variation-swatches__item[aria-pressed="true"] .yetka-swatch-price {
    border-top-color: rgba(0, 0, 0, 0.35);
}

/* Cuando hay precio regular + oferta, forzar layout en columna */
.yetka-swatch-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Precio regular (arriba) */
.yetka-price-regular {
    display: block;
    margin-bottom: 2px;
}

/* Precio en oferta (abajo) */
.yetka-price-sale {
    display: block;
}
