/* FiveU/fc theme fixes — added 2026-09-07
   Delivered from the versioned /static/ path (NOT media/porto/web/css/custom.css,
   which Porto links with no cache-buster and a 1-year max-age, so edits there
   never reach returning visitors). */

/* Magento 2.4.7's Magento_Ui tooltip.html renders <span class="label">Tooltip</span>
   for screen readers. Porto only visually-hides `.field-tooltip-action > span`, so
   this outer label prints the literal word "Tooltip" next to the Phone Number field
   (directly under Zip/Postal Code) on checkout, and squeezes that input 31px
   narrower than every other field. Hide it the way Magento intends.
   `.shipping-policy-block.field-tooltip` has no such label, so the
   "See our Shipping Policy" link is unaffected. */
.field-tooltip > .label {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
