.product-variants {
    font-family: sans-serif;
    margin: 20px 0;
}
.product-variants__group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}
.product-variants__label {
    min-width: 80px;
    margin-right: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    padding-bottom: 5px;
}
.product-variants__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.product-variants__option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border-radius: 0;
    transition: all 0.2s ease;

    background-color: transparent;
    border: 1px solid #E0E0E0;
    color: #222222;
    cursor: pointer;
}
a.product-variants__option:hover {
    border-color: #F8CC00;
    background-color: rgba(248, 204, 0, 0.1); /* Легкая подсветка */
    color: #000;
}
.product-variants__option--active {
    background-color: #F8CC00;
    border-color: #F8CC00;
    color: #000;
    cursor: default;
    font-weight: 700;
}
.product-variants__option--disabled {
    background-color: #F5F5F5;
    border-color: #E0E0E0;
    color: #BDBDBD;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}
.product-variants__option--disabled::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 1px;
    background-color: #E0E0E0;
    transform: translate(-50%, -50%) rotate(-25deg);
}
