/* [evo_lab_request] (evopure-lab-request.php): the lab report request form. Sits in the white modal body or on a page. DM Sans 300, Neue Haas caps
   labels, square inputs with a navy focus rule, product rows as tick boxes with strength pills (the PDP selector grammar), solo navy button. */
.evo-labreq { display: flex; flex-direction: column; gap: 18px; font-family: var(--e-global-typography-body-font-family), sans-serif; font-weight: 300; color: var(--evo-charcoal); }
.evo-labreq label > span:first-child, .evo-labreq legend { display: block; margin: 0 0 7px; padding: 0; font-family: var(--e-global-typography-subheadcaps-font-family), sans-serif; font-weight: var(--evo-caps-w); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--evo-navy); }
.evo-labreq__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.evo-labreq :is(input[type="text"], input[type="email"], textarea) { width: 100%; min-height: 50px; padding: 0 14px; background: var(--evo-white); border: 1px solid var(--evo-line); border-radius: 0; font-family: inherit; font-weight: 300; font-size: 16px; color: var(--evo-charcoal); transition: border-color var(--evo-t-hover) var(--evo-ease); }
.evo-labreq textarea { min-height: 88px; padding: 12px 14px; resize: vertical; }
.evo-labreq :is(input, textarea):focus { outline: 0; border-color: var(--evo-navy); }
.evo-labreq__set { margin: 0; padding: 0; border: 0; min-width: 0; }
.evo-labreq__help { margin: -2px 0 10px; font-size: 13.5px; color: var(--evo-slate); }
.evo-labreq__list { list-style: none; margin: 0; padding: 0; max-height: 300px; overflow: auto; border-top: 1px solid var(--evo-line); overscroll-behavior: contain; }
.evo-labreq__group { margin: 0; padding: 12px 0 6px; font-family: var(--e-global-typography-subheadcaps-font-family), sans-serif; font-weight: var(--evo-caps-w); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--evo-slate); }
.evo-labreq__item { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 12px; margin: 0; padding: 10px 0; border-bottom: 1px solid var(--evo-line); }
.evo-labreq__pick { display: flex; align-items: center; gap: 12px; margin: 0; cursor: pointer; flex: 1 1 200px; min-width: 0; }
.evo-labreq__pick input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.evo-labreq__box { flex: none; position: relative; width: 20px; height: 20px; border: 1.5px solid var(--evo-navy); background: var(--evo-white); transition: background-color var(--evo-t-hover) var(--evo-ease), border-radius var(--evo-t-hover) var(--evo-ease); }
.evo-labreq__pick input:checked + .evo-labreq__box { background: var(--evo-navy); border-radius: 0 6px 0 0; }
.evo-labreq__pick input:checked + .evo-labreq__box::after { content: ""; position: absolute; left: 5px; top: 1px; width: 6px; height: 11px; border: solid var(--evo-white); border-width: 0 1.8px 1.8px 0; transform: rotate(45deg); }
.evo-labreq__pick input:focus-visible + .evo-labreq__box { box-shadow: 0 0 0 3px color-mix(in srgb, var(--evo-navy) 25%, transparent); }
.evo-labreq__pname { display: flex; flex-direction: column; font-weight: 400; font-size: 15.5px; line-height: 1.3; color: var(--evo-navy); }
.evo-labreq__pname small { font-weight: 300; font-size: 12.5px; color: var(--evo-slate); }
.evo-labreq__str { display: flex; flex-wrap: wrap; gap: 6px; }
.evo-labreq .evo-labreq__pill { min-height: 30px; padding: 0 10px; background: transparent !important; border: 1px solid color-mix(in srgb, var(--evo-navy) 28%, transparent) !important; border-radius: 0 !important; color: var(--evo-navy) !important; font-family: inherit; font-weight: 400; font-size: 13px; line-height: 1; cursor: pointer; box-shadow: none !important; transition: background-color var(--evo-t-hover) var(--evo-ease), color var(--evo-t-hover) var(--evo-ease), border-radius var(--evo-t-hover) var(--evo-ease), border-color var(--evo-t-hover) var(--evo-ease); }
.evo-labreq .evo-labreq__pill:hover, .evo-labreq .evo-labreq__pill:focus-visible { border-color: var(--evo-navy) !important; outline: 0; }
.evo-labreq .evo-labreq__pill[aria-pressed="true"] { background: var(--evo-navy) !important; border-color: var(--evo-navy) !important; color: var(--evo-white) !important; border-radius: 0 var(--evo-radius-sig) 0 0 !important; }
.evo-labreq__item:not(.is-on) .evo-labreq__str { opacity: .45; }
.evo-labreq__full { display: block; margin: 0; }
.evo-labreq__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.evo-labreq .evo-labreq__send { width: 100%; min-height: 54px; }
.evo-labreq.is-busy { opacity: .6; pointer-events: none; }
.evo-labreq__msg:empty { display: none; }
.evo-labreq.is-sent > :not(.evo-labreq__msg) { display: none; }
@media (max-width: 560px) { .evo-labreq__row { grid-template-columns: minmax(0, 1fr); } .evo-labreq__list { max-height: none; } }
