.product-custom-field-two {
    margin-bottom: 15px;
}

.product-custom-field-two .custom-field-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.product-custom-field-two .custom-field-products-selection-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-custom-field-two .custom-field-products-selection {
    position: relative;
}

.product-custom-field-two .custom-field-products-selection input[type="checkbox"],
.product-custom-field-two .custom-field-products-selection input[type="radio"]
 {
    display: none;
}

.product-custom-field-two .custom-field-products-selection .custom-field-selection-title {
    padding: 8px 16px;
    border: 2px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    position: relative;
}

/* Checked State */
.product-custom-field-two .custom-field-products-selection input[type="checkbox"]:checked + .custom-field-selection-title,
.product-custom-field-two .custom-field-products-selection input[type="radio"]:checked + .custom-field-selection-title
{
    border-color: #28a745;
    background-color: #e9f9ee;
    color: #28a745;
}

/* Checkmark Icon */
.product-custom-field-two .custom-field-products-selection input[type="checkbox"]:checked + .custom-field-selection-title::after,
.product-custom-field-two .custom-field-products-selection input[type="radio"]:checked + .custom-field-selection-title::after {
    content: "✓";
    position: absolute;
    right: 0px;
    background: #28a745;
    color: #fff;
    font-size: 8px;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    bottom: 0px;
    font-weight: bold;
    border-radius: 8px 0 0 0;
}
