/*
===============================================================================
PRECISION RESEARCH SUPPLY — STATIC PREVIEW STYLESHEET
===============================================================================
Purpose:
- Styles the three supplied HTML preview pages:
  1. index.html        = Home
  2. shop.html         = Shop All Products
  3. confirmation.html = Order Confirmation

WordPress:
- The WordPress theme in /wordpress-theme/precision-research/ has its own
  stylesheet based on these same design tokens.
- Keeping the static prototype separate makes it easy to compare the final
  WordPress output against the approved visual design.

Editing:
- Brand colors are CSS custom properties in :root.
- Global widths, spacing and radii can be changed once and cascade everywhere.
===============================================================================
*/

:root {
  --prs-navy: #061b38;
  --prs-navy-2: #0b2d57;
  --prs-blue: #1269c7;
  --prs-blue-soft: #eaf3ff;
  --prs-ink: #10213a;
  --prs-muted: #66758a;
  --prs-line: #dbe3ec;
  --prs-surface: #ffffff;
  --prs-soft: #f5f8fb;
  --prs-success: #149447;
  --prs-warning: #e8a300;
  --prs-radius: 10px;
  --prs-shadow: 0 10px 28px rgba(8, 31, 61, .08);
  --prs-container: 1600px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--prs-ink);
  background: #fff;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }
.prs-container { width: calc(100% - 64px); max-width: none; margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Header ---------- */
.prs-topbar {
  background: var(--prs-navy);
  color: #fff;
  font-size: 12px;
}
.prs-topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.prs-topbar__group { display: flex; gap: 24px; flex-wrap: wrap; }

.prs-header {
  background: #fff;
  border-bottom: 1px solid var(--prs-line);
  position: sticky;
  top: 0;
  z-index: 30;
}
.prs-header__main {
  min-height: 78px;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  gap: 24px;
  align-items: center;
}
.prs-brand { display: inline-flex; align-items: center; gap: 10px; }
.prs-brand__mark {
  width: 44px; height: 44px; border: 3px solid var(--prs-navy);
  border-right-color: var(--prs-blue); transform: skew(-8deg);
  display: grid; place-items: center; font-weight: 900; color: var(--prs-navy);
}
.prs-brand__copy { display: flex; flex-direction: column; line-height: 1; letter-spacing: .14em; }
.prs-brand__copy strong { font-size: 18px; }
.prs-brand__copy small { font-size: 9px; color: var(--prs-blue); margin-top: 5px; }

.prs-search {
  display: grid;
  grid-template-columns: 1fr 150px 76px;
  border: 1px solid var(--prs-line);
  border-radius: 6px;
  overflow: hidden;
}
.prs-search input, .prs-search select, .prs-search button {
  min-height: 42px; border: 0; background: #fff; padding: 0 12px;
}
.prs-search select { border-left: 1px solid var(--prs-line); }
.prs-search button { background: var(--prs-blue); color: #fff; cursor: pointer; }
.prs-header__actions { display: flex; gap: 18px; font-size: 14px; white-space: nowrap; }

.prs-nav { background: var(--prs-navy); color: #fff; }
.prs-nav__list { min-height: 48px; display: flex; align-items: center; gap: 32px; }
.prs-nav__list a { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.prs-nav__list a:hover, .prs-nav__list a.active { color: #75b8ff; }

/* ---------- Reusable typography / buttons ---------- */
.prs-eyebrow {
  display: inline-block;
  color: var(--prs-blue);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  margin-bottom: 8px;
}
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(34px, 4.5vw, 64px); }
h2 { font-size: clamp(26px, 3vw, 38px); }
h3 { font-size: 18px; }
.prs-button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}
.prs-button--primary { background: var(--prs-blue); color: #fff; }
.prs-button--secondary { border-color: rgba(255,255,255,.6); color: #fff; background: transparent; }
.prs-button--outline { border-color: var(--prs-blue); color: var(--prs-blue); background: #fff; }
.prs-button-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Home hero ---------- */
.prs-hero {
  color: #fff;
  background:
    radial-gradient(circle at 70% 35%, rgba(26,109,195,.28), transparent 34%),
    linear-gradient(135deg, #03152e, #0a315d);
}
.prs-hero__grid {
  min-height: 455px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 32px;
}
.prs-hero__copy { max-width: 580px; }
.prs-hero__copy p { max-width: 520px; color: #dfeaff; font-size: 17px; margin-bottom: 26px; }
.prs-lab-stage { position: relative; height: 360px; }
.prs-flask {
  position: absolute;
  right: 16%;
  bottom: 20px;
  width: 150px;
  height: 230px;
  border: 5px solid rgba(220,239,255,.8);
  border-radius: 12px 12px 34px 34px;
  transform: skew(-4deg);
  opacity: .9;
}
.prs-flask::before {
  content: "";
  position: absolute; width: 56px; height: 82px; left: 43px; top: -75px;
  border: 5px solid rgba(220,239,255,.8); border-bottom: 0; border-radius: 10px 10px 0 0;
}
.prs-beaker {
  position: absolute;
  right: -2%;
  bottom: 20px;
  width: 140px; height: 180px;
  border: 4px solid rgba(220,239,255,.72);
  border-top-width: 7px;
  border-radius: 8px 8px 18px 18px;
}
.prs-hero-vial {
  position: absolute;
  right: 42%;
  bottom: 16px;
  width: 100px; height: 185px;
  border-radius: 14px 14px 24px 24px;
  border: 3px solid #d3e7f8;
  background: linear-gradient(#eff8ff, rgba(255,255,255,.76));
  box-shadow: 0 18px 38px rgba(0,0,0,.26);
}
.prs-hero-vial::before {
  content: "";
  position: absolute;
  left: -5px; right: -5px; top: -22px; height: 38px;
  border-radius: 10px;
  background: #103e72;
  border: 2px solid #5a87b6;
}
.prs-hero-vial__label {
  position: absolute; left: 9px; right: 9px; top: 58px;
  background: #fff; color: var(--prs-navy); padding: 12px 7px;
  font-size: 11px; font-weight: 900; line-height: 1.35;
}
.prs-hero-vial__label small { color: var(--prs-blue); }
.prs-trust-strip {
    border-top: 1px solid rgba(255,255,255,.15);
    background: rgba(0,0,0,.14);
    width: 100vw;
    margin-left: calc(50% - 50vw);
}
.prs-trust-grid {
    min-height: 74px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    max-width: 100%;
    gap: 0;
    align-items: center;
    text-align: center;
}
.prs-trust-grid strong, .prs-trust-grid span { display: block; }
.prs-trust-grid strong { font-size: 12px; }
.prs-trust-grid span { font-size: 10px; color: #bcd3ea; }

/* ---------- Sections ---------- */
.prs-section { padding: 58px 0; }
.prs-section--soft { background: var(--prs-soft); }
.prs-section-heading {
  display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 24px;
}
.prs-section-heading h2 { margin-bottom: 0; }
.prs-section-heading > a { color: var(--prs-blue); font-size: 13px; font-weight: 800; }

.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.category-card {
  border: 1px solid var(--prs-line); border-radius: var(--prs-radius); padding: 22px 16px;
  background: #fff; min-height: 170px; transition: .2s ease;
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--prs-shadow); }
.category-icon { font-size: 34px; color: var(--prs-blue); }
.category-card h3 { margin: 12px 0 8px; font-size: 15px; }
.category-card p { margin: 0; color: var(--prs-muted); font-size: 12px; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { border: 1px solid var(--prs-line); border-radius: var(--prs-radius); background: #fff; overflow: hidden; }
.product-visual { min-height: 220px; display: grid; place-items: center; background: linear-gradient(#fff, #f5f8fb); }
.product-body { padding: 16px; }
.product-type { font-size: 11px; color: var(--prs-blue); font-weight: 800; }
.product-card h3 { margin: 7px 0 10px; font-size: 16px; min-height: 38px; }
.price { font-size: 18px; font-weight: 900; margin: 0 0 14px; }
.product-card .prs-button { width: 100%; }

.mini-vial {
  width: 82px; height: 145px; border: 2px solid #cbd8e6; border-radius: 10px 10px 18px 18px;
  background: linear-gradient(#f8fcff,#eaf1f7); display: grid; place-items: center; text-align: center;
  color: var(--prs-navy); font-size: 11px; font-weight: 900; box-shadow: 0 12px 20px rgba(16,33,58,.12);
  position: relative;
}
.mini-vial::before {
  content: ""; position: absolute; left: -4px; right: -4px; top: -12px; height: 25px;
  background: #0d3a6b; border-radius: 7px;
}
.mini-vial small { font-weight: 600; color: var(--prs-blue); }
.consumable-visual {
  width: 150px; height: 110px; border: 2px solid #cbd8e6; border-radius: 8px;
  display: grid; place-items: center; text-align: center; font-weight: 900; color: var(--prs-blue);
  background: repeating-linear-gradient(90deg,#fff 0 7px,#e9f0f7 7px 9px);
}

/* ---------- Shop ---------- */
.page-hero { padding: 34px 0 22px; border-bottom: 1px solid var(--prs-line); }
.page-hero h1 { font-size: 36px; margin-bottom: 5px; }
.breadcrumbs { color: var(--prs-muted); font-size: 12px; }
.shop-shell { padding: 34px 0 64px; display: grid; grid-template-columns: 235px 1fr; gap: 28px; }
.filters { border: 1px solid var(--prs-line); border-radius: var(--prs-radius); padding: 18px; align-self: start; position: sticky; top: 178px; }
.filter-block + .filter-block { border-top: 1px solid var(--prs-line); margin-top: 18px; padding-top: 18px; }
.filter-block h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.filter-links { display: grid; gap: 9px; font-size: 13px; }
.filter-links a.active { background: var(--prs-blue-soft); color: var(--prs-blue); padding: 7px 9px; border-radius: 5px; font-weight: 800; }
.filter-check { display: block; font-size: 12px; margin: 8px 0; color: var(--prs-muted); }
.range { width: 100%; accent-color: var(--prs-blue); }
.shop-main .shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; gap: 20px; }
.shop-toolbar select { border: 1px solid var(--prs-line); border-radius: 6px; padding: 9px 12px; background: #fff; }
.shop-main .product-grid { grid-template-columns: repeat(3, 1fr); }

/* ---------- Confirmation ---------- */
.confirmation-wrap { padding: 60px 0 80px; max-width: 850px; margin: 0 auto; }
.confirmation-head { text-align: center; margin-bottom: 30px; }
.success-icon {
  width: 64px; height: 64px; border: 3px solid var(--prs-success); color: var(--prs-success);
  border-radius: 50%; display: grid; place-items: center; font-size: 34px; margin: 0 auto 14px;
}
.confirmation-head h1 { font-size: 38px; margin-bottom: 6px; }
.order-number { color: var(--prs-success); font-weight: 900; }
.order-panel { border: 1px solid var(--prs-line); border-radius: var(--prs-radius); margin-bottom: 18px; overflow: hidden; background: #fff; }
.order-panel h2 { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; padding: 16px 20px; border-bottom: 1px solid var(--prs-line); margin: 0; }
.order-panel-body { padding: 18px 20px; }
.summary-grid { display: grid; grid-template-columns: 180px 1fr; gap: 8px 20px; font-size: 13px; }
.summary-grid dt { color: var(--prs-muted); }
.summary-grid dd { margin: 0; font-weight: 700; }
.order-item { display: grid; grid-template-columns: 56px 1fr auto auto; gap: 16px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--prs-line); font-size: 13px; }
.order-item:last-child { border-bottom: 0; }
.order-thumb { width: 44px; height: 62px; border: 1px solid var(--prs-line); border-radius: 5px; display: grid; place-items: center; font-size: 9px; font-weight: 900; }
.order-totals { margin-left: auto; width: min(100%, 330px); }
.total-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; }
.total-row.grand { font-size: 17px; font-weight: 900; border-top: 1px solid var(--prs-line); margin-top: 5px; padding-top: 13px; }
.total-row.grand span:last-child { color: var(--prs-success); }
.confirm-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }

/* ---------- Footer ---------- */
.prs-footer { background: #fff; border-top: 1px solid var(--prs-line); }
.prs-newsletter { background: var(--prs-navy); color: #fff; padding: 24px 0; }
.prs-newsletter__inner { display: grid; grid-template-columns: 1fr 420px; align-items: center; gap: 24px; }
.prs-newsletter h2 { font-size: 18px; margin-bottom: 4px; }
.prs-newsletter p { margin: 0; color: #bfd0e3; font-size: 12px; }
.prs-newsletter form { display: grid; grid-template-columns: 1fr 110px; }
.prs-newsletter input, .prs-newsletter button { min-height: 42px; border: 1px solid rgba(255,255,255,.24); padding: 0 12px; }
.prs-newsletter input { background: #0a274b; color: #fff; border-radius: 5px 0 0 5px; }
.prs-newsletter button { background: var(--prs-blue); color: #fff; border-radius: 0 5px 5px 0; }
.prs-footer__grid { padding: 42px 0; display: grid; grid-template-columns: 1.4fr repeat(4,1fr); gap: 32px; }
.prs-footer__grid h3 { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.prs-footer__links { display: grid; gap: 8px; color: var(--prs-muted); font-size: 12px; }
.prs-footer__bottom { padding: 17px 0; border-top: 1px solid var(--prs-line); display: flex; justify-content: space-between; color: var(--prs-muted); font-size: 11px; }

/* ---------- Responsive ---------- */
@media (max-width: 1050px) {
  .prs-header__main { grid-template-columns: 220px 1fr; }
  .prs-header__actions { grid-column: 1 / -1; justify-content: flex-end; margin-top: -10px; padding-bottom: 10px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid, .shop-main .product-grid { grid-template-columns: repeat(2, 1fr); }
  .prs-trust-grid { grid-template-columns: repeat(4,1fr); padding: 16px 0; }
}
@media (max-width: 780px) {
  .prs-topbar__inner, .prs-nav__list { overflow-x: auto; white-space: nowrap; }
  .prs-header__main { display: flex; flex-wrap: wrap; padding: 14px 0; }
  .prs-search { order: 3; width: 100%; grid-template-columns: 1fr 110px; }
  .prs-search button { display: none; }
  .prs-header__actions { margin: 0 0 0 auto; padding: 0; }
  .prs-hero__grid { grid-template-columns: 1fr; padding: 50px 0 0; }
  .prs-lab-stage { height: 300px; }
  .prs-trust-grid { grid-template-columns: repeat(2,1fr); }
  .shop-shell { grid-template-columns: 1fr; }
  .filters { position: static; }
  .prs-newsletter__inner { grid-template-columns: 1fr; }
  .prs-footer__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px) {
  .category-grid, .product-grid, .shop-main .product-grid { grid-template-columns: 1fr; }
  .prs-hero-vial { right: 48%; }
  .prs-flask { right: 8%; }
  .prs-beaker { display: none; }
  .summary-grid { grid-template-columns: 1fr; }
  .summary-grid dt { margin-top: 8px; }
  .order-item { grid-template-columns: 46px 1fr auto; }
  .order-item .qty { display: none; }
  .confirm-actions { grid-template-columns: 1fr; }
  .prs-footer__grid { grid-template-columns: 1fr; }
  .prs-footer__bottom { display: grid; gap: 8px; }
}


/*
===============================================================================
WORDPRESS + WOOCOMMERCE INTEGRATION LAYER
===============================================================================
The selectors below style WooCommerce's native output instead of replacing its
core cart, checkout, account or product logic.
===============================================================================
*/

.prs-commerce { padding: 36px 0 72px; }
.prs-commerce__inner { min-height: 55vh; }
.prs-editor-content { max-width: 900px; }

/* Catalog heading and result/sort row */
.woocommerce-products-header { margin-bottom: 26px; }
.woocommerce-products-header__title.page-title { font-size: 38px; margin-bottom: 8px; }
.prs-catalog-note {
  background: var(--prs-blue-soft);
  color: var(--prs-navy-2);
  border-left: 4px solid var(--prs-blue);
  padding: 12px 15px;
  margin: 0 0 18px;
  border-radius: 5px;
  font-size: 13px;
}
.woocommerce .woocommerce-result-count { color: var(--prs-muted); font-size: 13px; }
.woocommerce .woocommerce-ordering select {
  border: 1px solid var(--prs-line);
  border-radius: 6px;
  padding: 9px 12px;
  background: #fff;
}

/*
Product grid:
WooCommerce generates <ul class="products"><li class="product">...</li></ul>.
These rules translate that native structure into the approved card design.
*/
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 0 !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  border: 1px solid var(--prs-line);
  border-radius: var(--prs-radius);
  background: #fff;
  padding: 14px !important;
  overflow: hidden;
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.woocommerce ul.products li.product:hover { transform: translateY(-3px); box-shadow: var(--prs-shadow); }
.woocommerce ul.products li.product a img {
  border-radius: 7px;
  background: var(--prs-soft);
  margin-bottom: 14px !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 16px !important;
  color: var(--prs-ink);
  min-height: 44px;
}
.woocommerce ul.products li.product .price {
  color: var(--prs-ink) !important;
  font-weight: 900 !important;
  font-size: 17px !important;
}
.woocommerce ul.products li.product .button {
  width: 100%;
  text-align: center;
  background: #fff !important;
  color: var(--prs-blue) !important;
  border: 1px solid var(--prs-blue) !important;
  border-radius: 6px !important;
  padding: 12px 14px !important;
}

/* Single product */
.woocommerce div.product div.images img { border-radius: var(--prs-radius); }
.woocommerce div.product .product_title { font-size: 36px; }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--prs-ink); font-weight: 900; }
.woocommerce div.product form.cart .button {
  background: var(--prs-blue);
  color: #fff;
  border-radius: 6px;
}

/* Cart & checkout form controls */
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.select2-container--default .select2-selection--single {
  border: 1px solid var(--prs-line);
  border-radius: 6px;
  min-height: 44px;
  padding: 8px 10px;
  background: #fff;
}
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--prs-blue);
  color: #fff;
  border-radius: 6px;
}
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
  background: var(--prs-navy-2);
  color: #fff;
}

/*
ORDER CONFIRMATION
The actual order data stays 100% WooCommerce-native. These selectors only
change layout, spacing, borders and typography on the order-received endpoint.
*/
.prs-order-confirmation .prs-commerce { background: #fff; }
.prs-thankyou-intro {
  max-width: 820px;
  margin: 18px auto 30px;
  text-align: center;
}
.prs-success-icon {
  width: 64px;
  height: 64px;
  border: 3px solid var(--prs-success);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--prs-success);
  font-size: 34px;
  margin: 0 auto 14px;
}
.prs-thankyou-intro h1 { font-size: 38px; margin-bottom: 8px; }

.prs-order-confirmation .woocommerce-order {
  max-width: 850px;
  margin: 0 auto;
}
.prs-order-confirmation .woocommerce-thankyou-order-received {
  text-align: center;
  font-weight: 800;
  color: var(--prs-success);
}
.prs-order-confirmation ul.woocommerce-order-overview {
  border: 1px solid var(--prs-line);
  border-radius: var(--prs-radius);
  padding: 18px 20px !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.prs-order-confirmation ul.woocommerce-order-overview li {
  float: none;
  margin: 0;
  padding: 0;
  border: 0;
}
.prs-order-confirmation .woocommerce-order-details,
.prs-order-confirmation .woocommerce-customer-details {
  border: 1px solid var(--prs-line);
  border-radius: var(--prs-radius);
  padding: 20px;
  margin-top: 18px;
}
.prs-order-confirmation .woocommerce-order-details__title,
.prs-order-confirmation .woocommerce-column__title {
  font-size: 18px;
}
.prs-order-confirmation table.shop_table {
  border: 0;
  border-collapse: collapse;
}
.prs-order-confirmation table.shop_table th,
.prs-order-confirmation table.shop_table td {
  border-top: 1px solid var(--prs-line);
  padding: 12px 8px;
}

/* WordPress custom logo integration */
.prs-brand .custom-logo-link { display: inline-flex; }
.prs-brand .custom-logo { max-height: 54px; width: auto; }

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 7px;
  background: var(--prs-soft);
  border-top: 0;
  border-left: 4px solid var(--prs-blue);
}

/* Mobile WooCommerce layout */
@media (max-width: 780px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .prs-order-confirmation ul.woocommerce-order-overview { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px) {
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .prs-order-confirmation ul.woocommerce-order-overview { grid-template-columns: 1fr; }
}
/* PRS TRUST BAR - 5 EVEN COLUMNS */
.prs-trust-strip .prs-trust-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 90px !important;
    gap: 0 !important;
    box-sizing: border-box !important;
    align-items: center !important;
}

.prs-trust-strip .prs-trust-grid > div {
    width: auto !important;
    text-align: center !important;
    transform: none !important;
}
.prs-hero-product-image img {
    display: block;
    width: 68% !important;
    max-width: 400px !important;
    height: auto !important;
    object-fit: contain;
}
/* LARGE DESKTOP HERO */
@media (min-width: 1600px) {
    .prs-hero__grid {
        min-height: 620px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .prs-hero__copy {
        width: 100% !important;
        max-width: 1100px !important;
        margin: 0 auto !important;
    }

    .prs-hero__copy h1 {
        font-size: clamp(64px, 4vw, 92px) !important;
    }

    .prs-eyebrow {
        font-size: 16px !important;
    }

    .prs-hero__actions,
    .prs-button-row {
        justify-content: center !important;
    }

    .prs-button {
        min-height: 54px;
        padding: 0 26px;
        font-size: 17px;
    }

    .prs-trust-grid strong {
        font-size: 16px;
    }
}