table.variations {
    display: none;
}
.variation-colors-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.colors-container {
    display: flex;
    flex-direction: row;
    column-gap: 5px;
    width: 100%;
}
span.attribute_label {
    font-size: 18px;
    margin-left: 5px;
    font-weight: 600;
}
.variation-colors {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-direction: column;
    align-content: flex-start;
    row-gap: 10px;
}
.color-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px; /* קוטר כולל גבול */
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.color-circle.selected {
    border: 1px solid #0073e6;
}

.color-circle:hover {
    border: 1px solid #0073e6;
}

.color-circle .var_color {
    width: 25px; /* גודל העיגול הפנימי */
    height: 25px;
    border-radius: 50%;
    background-color: inherit; /* הצבע יגיע מה-inline style */
}
span.attribute_notice {
    font-size: 14px;
    color: #0071E3;
    margin-right: 5px;
}

/* ARCHIVE */
ul.color-variants {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding-right: 0;
    min-height: 20px;
    margin: 5px 0;
    list-style: none;
    column-gap: 5px;
}
ul.color-variants li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 2px;
    padding-right: 0;
}
.variation-images {
    display: flex;
    flex-direction: row;
    column-gap: 5px;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
img.variation-image {
    width: 60px;
    height: auto;
}

span.color-circle.color-circle-images {
    width: 60px;
    height: auto;
    border-radius: 0;
    border: 1px solid #CCC;
}
/* OUT OF STOCK */
.color-circle.out-of-stock {
    position: relative;
    pointer-events: none;
    opacity: 0.5;
}
.color-circle.out-of-stock .out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    content: ' ';

    z-index: 1;
}
.color-circle.out-of-stock .out-of-stock-overlay::before {
    content: '―';
    font-size: 20px;
    color: #ff0000;
    z-index: 2;
}

.color-circle.item-out-of-stock {
    position: relative;
    /* filter: grayscale(30%); */
    opacity: 1;
}

.color-circle.item-out-of-stock .var_color {
    position: relative;
    z-index: 1;
}

.color-circle.item-out-of-stock .out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 2;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.5);
    content: '';
}

.color-circle.item-out-of-stock:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.7);
    transform: rotate(-45deg);
    transform-origin: center;
    z-index: 3;
}
p.stock.out-of-stock, .woocommerce-variation-availability {
    display:none !important;
}

.color-variants .var_color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    display: block;
}
ul.color-variants li {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
