table.variations {
    display: none;
}
.variation-colors-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.attribute-group {
    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;
}
.variation-colors {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-direction: column;
    align-content: flex-start;
    row-gap: 5px;
}
.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;
}

.variation-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 20px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #333;
    text-align: center;
    width: fit-content;
    min-width: 60px;
}

.variation-item:hover {
    border-color: #999;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.variation-item.selected {
    border: 2px solid #333;
}

.color-circle-images.selected {
    border: 2px solid #333 !important;
}

.variation-item.out-of-stock {
    opacity: 0.6;
    cursor: not-allowed;
}

.out-of-stock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* 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;
}
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;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.variation-name {
    font-size: 10px;
    color: #666;
    text-align: center;
    margin-top: 2px;
    line-height: 1.2;
    max-width: 100%;
    word-wrap: break-word;
}
/* EXP */
span.color-circle.color-circle-images {
    width: 80px;
    height: auto;
    border-radius: 10px;
    border: 1px solid #CCC;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
}
.variation-name {
    font-size: 10px;
    color: #000;
    font-weight: 700;
    text-align: center;
    margin-top: 2px;
    line-height: 1.2;
    max-width: 100%;
    word-wrap: break-word;
    max-height: 10px;
    overflow: hidden;
}