/**
 * Form field shape: site-wide glue.
 *
 * Woodmart's Theme Settings > Forms > Form fields style is the one place that decides
 * a field's corner radius. It is published as --wd-form-brd-radius. Project stylesheets
 * read that variable directly; this file points third-party forms, which have radius
 * settings of their own, at the same variable.
 */

/* Fluent Forms reads --fluentform-border-radius, which it defines as 7px on :root.
   Setting it on the form element wins by inheritance whatever order the stylesheets
   load in, and Fluent Forms enqueues its own CSS late, only when a form renders. */
.frm-fluent-form {
    --fluentform-border-radius: var(--wd-form-brd-radius, 0);
}
