
.sku-switcher-wrapper {
    margin: 30px 0;
    text-align: center;
}
.related-sku-text {
    font-size: 16px;
    margin-bottom: 10px;
}
.sku-switcher-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.sku-button {
    padding: 10px 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #6c9645;
    color: #6c9645;
    background: transparent;
    transition: 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sku-button:hover {
    background-color: #6c9645;
    color: #fff;
}
.sku-button.active {
    background-color: #6c9645;
    color: #fff;
    cursor: default;
}
.sku-button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.sku-button.disabled {
    opacity: 0.5;
    pointer-events: none;
    background-color: #ccc;
    color: #666;
    border-color: #999;
}
