/* Frontend CSS */
.wcpc-product-fields {
    margin-bottom: 20px;
    /* Remove box styling to blend better with theme */
    padding: 0;
    background: transparent;
    border: none;
}

.wcpc-field-group {
    margin-bottom: 20px;
}

.wcpc-field-group:last-child {
    margin-bottom: 0;
}

.wcpc-field-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1rem;
    /* Ensure reasonable size */
    line-height: 1.4;
}

.wcpc-field-group .required {
    color: #e2401c;
    text-decoration: none;
    font-weight: 700;
}

.wcpc-field-group input[type="text"],
.wcpc-field-group textarea,
.wcpc-field-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    /* Ensure padding doesn't overflow width */
    font-size: 1rem;
}

.wcpc-field-group input[type="text"]:focus,
.wcpc-field-group textarea:focus,
.wcpc-field-group select:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 1px #007cba;
}

.wcpc-radio-label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: normal;
    cursor: pointer;
}

.wcpc-radio-label input[type="radio"] {
    margin-right: 8px;
    width: auto;
    /* Reset width for radio buttons */
}