/* IMAGE SWATCHES */

.sajawat-image-swatches-wrapper{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:30px;
}

.sajawat-image-swatch{
    width:72px;
    text-align:center;
    cursor:pointer;
}

.sajawat-image-swatch img{
    width:72px;
    height:72px;
    object-fit:cover;
    border-radius:10px;
    border:2px solid #e5e5e5;
    transition:0.3s ease;
    display:block;
}

.sajawat-image-swatch:hover img{
    transform:translateY(-3px);
    border-color:#111;
}

.sajawat-image-swatch.active img{
    border-color:#111;
    box-shadow:0 4px 15px rgba(0,0,0,0.12);
}

/* LABEL */

.sajawat-swatch-label{
    display:block;
    margin-top:6px;
    font-size:11px;
    color:#444;
    line-height:1.2;
    text-align:center;
}

/* HIDE DEFAULT DROPDOWN */

table.variations{
    display:none !important;
}