/* Selectleri gizle ama Woo logic kalsın */
form.variations_form table.variations select{
    position:absolute;
    left:-9999px;
    width:1px;
    height:1px;
    opacity:0;
}

/* Container */
.ea-swatches{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:10px 0 16px;
}

/* Swatch item base (button değil) */
.ea-swatch-item{
    width:79px;
    height:79px;
    border:2px solid #e6e6ea;
    border-radius:6px;
    background:#fff;
    overflow:hidden;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    user-select:none;
    box-sizing:border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Image */
.ea-swatch-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:6px;
}

/* Selected state */
.ea-swatch-item.is-selected{
    border-color:#5b4bdb;
    box-shadow:0 0 0 1px rgba(91,75,219,.18);
}

/* Disabled state */
.ea-swatch-item.is-disabled{
    opacity:.35;
    cursor:not-allowed;
}

/* Keyboard focus (span olduğu için biz çiziyoruz) */
.ea-swatch-item.is-focus{
    outline:2px solid rgba(91,75,219,.35);
    outline-offset:2px;
}

/* Text pill fallback (span) */
.ea-pill-item{
    min-width:120px;
    height:44px;
    padding:0 14px;
    border:1px solid #ddd;
    border-radius:999px;
    background:#f3f3f3;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    user-select:none;
    box-sizing:border-box;
    -webkit-tap-highlight-color: transparent;
}

.ea-pill-item.is-selected{
    background:#fff;
    border-color:#111;
    font-weight:600;
}

.ea-pill-item.is-disabled{
    opacity:.35;
    cursor:not-allowed;
}

.ea-pill-item.is-focus{
    outline:2px solid rgba(0,0,0,.2);
    outline-offset:2px;
}
