.variations select {
    display: none !important;
}

.lnh-variation-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.lnh-swatch-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    user-select: none;
    color: #333;
}

.lnh-swatch-item:hover {
    border-color: #999;
}

.lnh-swatch-item.selected {
    border-color: #000;
    border-width: 2px;
}

.lnh-swatch-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}
