.shahr-wax-variations-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    direction: rtl;
    font-family: inherit;
    width: 100%;
}
.shahr-wax-variation-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    overflow: hidden;
}
.shahr-wax-var-label {
    margin: 0;
    color: #555555;
    font-size: 14px;
    font-weight: 800;
}
.shahr-wax-var-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    width: 100%;
}
.shahr-wax-swatch {
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}
.shahr-wax-swatch.out-of-stock {
    opacity: 0.4;
    position: relative;
    pointer-events: none;
}
.shahr-wax-swatch.out-of-stock::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ff0000;
    transform: translateY(-50%) rotate(-45deg);
    z-index: 2;
}
.shahr-wax-swatch-text {
    background-color: #f5f5f5;
    border: 1px solid transparent;
    color: #333333;
    border-radius: 12px;
    height: 42px;
    min-width: 44px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
.shahr-wax-swatch-text.selected {
    background-color: #fbf9f4;
    border-color: #927a65;
    color: #927a65;
}
.shahr-wax-swatch-color {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid transparent;
    padding: 3px;
    position: relative;
}
.shahr-wax-swatch-color::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: var(--swatch-color);
}
.shahr-wax-swatch-color.selected {
    border-color: #333333;
}
@media (max-width: 768px) {
    .shahr-wax-var-items {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .shahr-wax-var-items::-webkit-scrollbar {
        display: none;
    }
    .shahr-wax-swatch {
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    .shahr-wax-swatch-text {
        height: 38px;
        padding: 0 14px;
        font-size: 13px;
        border-radius: 10px;
    }
    .shahr-wax-swatch-color {
        width: 38px;
        height: 38px;
    }
}

.shahr-wax-swatch-text.selected{
    color:#fff !important;
}