/* Oculta el select, pero accesible para Woo */
.af-select-hidden {
    position: absolute !important;
    left: -9999px !important;
}

/* Contenedor de pills */
.af-attr-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .5rem;
}

/* Botón tipo pill */
.af-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5rem .9rem;
    border-radius: 999px;
    border: 1px solid #fff;
    /* gris claro */
    background: transparent;
    color: #fff;
    font-weight: 400;
    font-size: .95rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color .2s, background-color .2s, color .2s, box-shadow .2s;
    min-width: 120px;
}

.af-pill:hover {
    border-color: #9ca3af;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .03);
}

.af-pill.is-selected {
    background: var(--stroke-color);
    /* o tu color de marca */
    color: #fff;
    font-weight: 700;
    border-color: var(--stroke-color);
}

.af-pill.is-disabled {
    opacity: .4;
    cursor: not-allowed;
}

.variations .reset_variations,
.woocommerce-variation-availability {
    display: none !important;
}

.variations label {
    color: var(--text-color);
    font-family: var(--monserrat-font);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.woocommerce div.product form.cart .variations {
    padding-bottom: 31px;
    border-bottom: 1px solid var(--text-color);
}