.variant {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.variant-radio {
    position: absolute;
    width: max-content;
    opacity: 0;
    cursor: pointer;
}

.variant-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border: 1px solid #e3e4e9;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.variant-label:hover {
    border-color: #999;
}

.variant-radio:checked + .variant-label {
    background-color: #000000;
    border-color: #000000;
    color: #fff;
}

.variant-radio:disabled + .variant-label {
    opacity: 0.4;
    cursor: not-allowed;
}

.related-product-active .product-plr-1 {
    max-width: 200px;
}

.related-product-active .product-img {
    height: 200px;
    overflow: hidden;
}

.related-product-active .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-product-active .product-content-wrap-2 h3 {
    font-size: 14px;
    margin-bottom: 5px;
}

.related-product-active .product-price-2 {
    font-size: 12px;
}

.related-product-active .pro-add-to-cart button {
    padding: 5px 10px;
    font-size: 12px;
}
