/* store-html-clamp - 80% root em + text-size-adjust guards.
 * Injected via nginx sub_filter into </head> on every store page.
 * Applied per direct request; wins over Luma's 62.5% via !important.
 * To revert: remove the store-html-clamp.v* href from
 * /etc/nginx/conf.d/cri-one.conf and reload nginx. */
html {
    font-size: 80% !important;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size-adjust: 100%;
}
