/*
Theme Name: Evolved Muscle
Theme URI: https://ivory-dogfish-451807.hostingersite.com/
Author: WP Dev Experts
Description: Lightweight custom WooCommerce theme for the Evolved Muscle staging build.
Version: 1.3.4
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 8.0
Text Domain: evolved-muscle
*/

:root {
  --em-black: #000;
  --em-ink: #070707;
  --em-charcoal: #111;
  --em-panel: #181818;
  --em-line: rgba(255,255,255,.12);
  --em-white: #fff;
  --em-muted: #b8c0cc;
  --em-blue: #00aeef;
  --em-blue-soft: rgba(0,174,239,.14);
  --em-max: 1320px;
  --em-radius: 8px;
  --em-shadow: 0 20px 60px rgba(0,0,0,.32);
  --em-shadow-premium: 0 24px 70px rgba(0,0,0,.52);
  --em-glow: 0 0 44px rgba(0,174,239,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--em-black);
  color: var(--em-white);
  font-family: Inter, Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
.em-wrap {
  width: 100%;
  max-width: var(--em-max);
  margin-inline: auto;
  padding-inline: 36px;
}
.screen-reader-text { position: absolute; left: -9999px; }

.em-trust-top {
  background: #050505;
  border-bottom: 1px solid var(--em-line);
  color: var(--em-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.em-trust-top .em-wrap {
  min-height: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: center;
  text-align: center;
}
.em-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0,0,0,.9);
  border-bottom: 1px solid var(--em-line);
  backdrop-filter: blur(12px);
}
.em-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.em-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.em-logo img {
  width: auto;
  object-fit: contain;
  object-position: center;
}
.em-logo-header img { height: 64px; max-width: 92px; }
.em-logo-footer img { height: 88px; max-width: 124px; margin-bottom: 16px; }
.em-nav { flex: 1; }
.em-nav ul { margin: 0; padding: 0; list-style: none; display: flex; gap: 4px; align-items: center; }
.em-nav li { position: relative; }
.em-nav a {
  display: block;
  padding: 11px 12px;
  color: #e9edf4;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.em-nav a:hover,
.em-nav .current-menu-item > a,
.em-nav .current-menu-ancestor > a { color: var(--em-blue); }
.em-nav .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  z-index: 100;
  display: block;
  min-width: 210px;
  padding: 10px;
  background: #090909;
  border: 1px solid var(--em-line);
  box-shadow: var(--em-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.em-nav li:hover > .sub-menu,
.em-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.em-nav .sub-menu li { width: 100%; }
.em-nav .sub-menu a {
  padding: 10px 12px;
  border-radius: 5px;
  text-transform: none;
  color: var(--em-muted);
  white-space: nowrap;
}
.em-nav .sub-menu a:hover,
.em-nav .sub-menu .current-menu-item > a {
  background: var(--em-blue-soft);
  color: var(--em-blue);
}
.em-nav .sub-menu .sub-menu {
  left: calc(100% + 1px);
  top: -11px;
  z-index: 110;
  transform: translateX(8px);
}
.em-nav .sub-menu li:hover > .sub-menu,
.em-nav .sub-menu li:focus-within > .sub-menu {
  transform: translateX(0);
}
.em-submenu-toggle { display: none; }
.em-actions { display: flex; gap: 8px; align-items: center; }
.em-icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background: #0b0b0b;
  color: var(--em-white);
  position: relative;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.em-icon-btn:hover {
  color: var(--em-blue);
  border-color: rgba(0,174,239,.55);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,174,239,.12);
}
.em-search-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  border-bottom: 0 solid var(--em-line);
  background: #070707;
  transition: max-height .25s ease, opacity .2s ease, border-width .2s ease;
}
.em-search-panel.is-open {
  max-height: 120px;
  opacity: 1;
  border-bottom-width: 1px;
}
.em-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding-block: 16px;
}
.em-search-form input {
  min-height: 44px;
}
.em-search-form .em-btn { min-height: 44px; padding-block: 9px; }
.em-search-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background: transparent;
  color: var(--em-white);
  font-size: 25px;
  cursor: pointer;
}
.em-cart-count {
  position: absolute;
  right: -6px;
  top: -7px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--em-blue);
  color: #00131b;
  font-size: 11px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}
.em-menu-toggle { display: none; }
.em-main { min-height: 58vh; }

.em-hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 73% 34%, rgba(0,174,239,.25), transparent 29%),
    radial-gradient(circle at 12% 84%, rgba(255,255,255,.045), transparent 24%),
    linear-gradient(115deg, #000 0%, #050505 45%, #111 100%);
  border-bottom: 1px solid var(--em-line);
  overflow: hidden;
  position: relative;
}
.em-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, transparent 8%, #000 55%, transparent);
}
.em-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 56px;
  align-items: center;
}
.em-kicker,
.em-section-kicker {
  color: var(--em-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.em-hero h1,
.em-page-title,
.em-section-title {
  margin: 12px 0;
  font-family: Montserrat, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: 0;
}
.em-hero h1 { font-size: clamp(56px, 9vw, 112px); max-width: 760px; }
.em-hero h1 span { color: var(--em-blue); }
.em-hero p { max-width: 560px; color: var(--em-muted); font-size: 20px; }
.em-hero-copy { position: relative; z-index: 1; }
.em-hero-points {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: #dce4ec;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.em-hero-points span { display: inline-flex; align-items: center; gap: 8px; }
.em-hero-points span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--em-blue);
  box-shadow: 0 0 14px rgba(0,174,239,.75);
}
.em-btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.em-btn,
.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--em-blue);
  border-radius: var(--em-radius);
  background: var(--em-blue);
  color: #00131b;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.em-btn:hover,
.button:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,174,239,.2);
}
.em-btn.secondary,
.woocommerce a.button.secondary {
  background: transparent;
  color: var(--em-white);
  border-color: var(--em-line);
}
.em-hero-visual {
  min-height: 420px;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background:
    linear-gradient(145deg, rgba(0,174,239,.18), transparent 42%),
    linear-gradient(180deg, #191919, #050505);
  padding: 28px;
  box-shadow: var(--em-shadow-premium), var(--em-glow);
  position: relative;
  isolation: isolate;
  animation: em-float 6s ease-in-out infinite;
}
.em-hero-visual::before,
.em-hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.em-hero-visual::before {
  inset: 14px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 6px;
}
.em-hero-visual::after {
  width: 180px;
  height: 180px;
  right: -55px;
  bottom: -60px;
  z-index: -2;
  border-radius: 50%;
  background: rgba(0,174,239,.15);
  filter: blur(50px);
}
.em-visual-label,
.em-panel-kicker {
  color: var(--em-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.em-visual-label { position: absolute; top: 18px; left: 22px; }
.em-visual-mark {
  position: absolute;
  right: 20px;
  bottom: 8px;
  color: rgba(255,255,255,.04);
  font-size: 86px;
  font-weight: 900;
  line-height: 1;
}
.em-product-tower {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
}
.em-bottle {
  min-height: 310px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--em-radius);
  background: linear-gradient(180deg, #2b2b2b, #070707);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  box-shadow: inset 0 0 0 1px rgba(0,174,239,.12), 0 20px 40px rgba(0,0,0,.35);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.em-hero-visual:hover .em-bottle {
  border-color: rgba(0,174,239,.4);
  box-shadow: inset 0 0 0 1px rgba(0,174,239,.16), 0 24px 54px rgba(0,0,0,.45);
}
.em-hero-visual:hover .em-bottle:first-child { transform: translateY(-6px); }
.em-hero-visual:hover .em-bottle.small { transform: translateY(-32px); }
.em-bottle.small { min-height: 245px; transform: translateY(-26px); }
.em-bottle strong { display: block; font-size: 26px; line-height: 1; text-transform: uppercase; }
.em-bottle span { color: var(--em-blue); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; margin-top: 8px; }

.em-section { padding: 92px 0; border-bottom: 1px solid var(--em-line); position: relative; overflow: clip; }
.em-section.alt {
  background:
    linear-gradient(135deg, rgba(255,255,255,.018), transparent 48%),
    #070707;
}
.em-section-title { font-size: clamp(34px, 5vw, 64px); }
.em-section-lead { color: var(--em-muted); max-width: 660px; margin: 0 0 28px; }
.em-section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}
.em-section-head .em-section-title { margin-bottom: 0; }
.em-section-head > p {
  max-width: 410px;
  margin: 0 0 5px;
  color: var(--em-muted);
}
.em-grid { display: grid; gap: 18px; }
.em-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.em-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.em-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.em-card,
.woocommerce ul.products li.product,
.em-form-card,
.em-page-card {
  background: linear-gradient(145deg, rgba(255,255,255,.025), transparent 42%), var(--em-panel);
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  padding: 22px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background-color .28s ease;
}
.em-card:hover,
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: rgba(0,174,239,.45);
  box-shadow: 0 22px 48px rgba(0,0,0,.5), 0 0 28px rgba(0,174,239,.09);
}
.em-card h3 { margin: 0 0 8px; text-transform: uppercase; font-size: 18px; }
.em-card p { margin: 0; color: var(--em-muted); }
.em-category-card {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 82% 18%, rgba(0,174,239,.18), transparent 26%),
    linear-gradient(145deg, var(--em-blue-soft), transparent 48%),
    var(--em-panel);
  position: relative;
  overflow: hidden;
}
.em-category-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -50px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  transition: transform .35s ease, border-color .35s ease;
}
.em-category-card:hover::after { transform: scale(1.12); border-color: rgba(0,174,239,.28); }
.em-category-card h3 { margin-top: auto; font-size: 21px; }
.em-category-index,
.em-card-index {
  color: rgba(255,255,255,.4);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}
.em-category-card .em-category-meta { color: var(--em-blue); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.em-card-arrow {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--em-white);
  font-size: 20px;
  transition: transform .25s ease, color .25s ease;
}
.em-category-card:hover .em-card-arrow { color: var(--em-blue); transform: translateX(5px); }
.em-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.em-feature-panel {
  min-height: 330px;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background:
    radial-gradient(circle at 65% 30%, rgba(0,174,239,.25), transparent 28%),
    linear-gradient(135deg, #181818, #030303);
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: var(--em-shadow-premium);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.em-feature-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(0,174,239,.4);
  box-shadow: var(--em-shadow-premium), var(--em-glow);
}
.em-feature-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -80px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255,255,255,.018), 0 0 0 70px rgba(255,255,255,.012);
}
.em-feature-panel h3 {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}
.em-feature-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; position: relative; z-index: 1; }
.em-feature-chips span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #dce4ec;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.em-panel-line { width: 76px; height: 3px; margin-top: 24px; background: var(--em-blue); box-shadow: 0 0 18px rgba(0,174,239,.6); }
.em-feature-copy { padding-inline: clamp(0px, 3vw, 34px); }
.em-feature-section::before,
.em-products-section::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(0,174,239,.055);
  filter: blur(70px);
  pointer-events: none;
}
.em-feature-section::before { left: -100px; bottom: -120px; }
.em-products-section::before { right: -110px; top: 20%; }
.em-text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--em-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.em-text-link span { color: var(--em-blue); font-size: 18px; transition: transform .2s ease; }
.em-text-link:hover { color: var(--em-white); }
.em-text-link:hover span { transform: translateX(4px); }
.em-trust-section { padding-block: 48px; }
.em-trust-card { min-height: 160px; position: relative; padding-top: 52px; }
.em-trust-card .em-card-index { position: absolute; top: 20px; left: 22px; color: var(--em-blue); }
.em-assurance-card { min-height: 190px; padding-top: 28px; }
.em-card-dot {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 34px;
  border: 2px solid var(--em-blue);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(0,174,239,.55);
}
.em-products-section ul.products li.product {
  overflow: hidden;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 46%), #121212;
}
.em-products-section ul.products li.product img {
  border-radius: 6px;
  transition: transform .35s ease, filter .35s ease;
}
.em-products-section ul.products li.product:hover img { transform: scale(1.035); filter: contrast(1.04); }
.em-products-section ul.products li.product .price { display: block; }
.em-newsletter-shell {
  padding: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 80% 50%, rgba(0,174,239,.14), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  box-shadow: var(--em-shadow-premium);
}
.em-newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 24px;
  align-items: center;
}
.em-form-row { display: flex; gap: 10px; }
.em-form-row input { flex: 1; }
input, textarea, select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background: #090909;
  color: var(--em-white);
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--em-blue);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0,174,239,.14);
}
.em-form-card input,
.em-form-card textarea,
.em-form-card select,
.em-form-row input,
.woocommerce-cart .coupon input {
  background: #f7f9fb;
  color: #10151b;
  border-color: #d9e0e7;
  box-shadow: 0 5px 16px rgba(0,0,0,.12);
}
.em-form-card { padding: 30px; box-shadow: var(--em-shadow); }
.em-form-card:focus-within { border-color: rgba(0,174,239,.38); box-shadow: var(--em-shadow), 0 0 30px rgba(0,174,239,.08); }
.em-form-card input::placeholder,
.em-form-card textarea::placeholder,
.em-form-row input::placeholder,
.woocommerce-cart .coupon input::placeholder { color: #687481; }
textarea { min-height: 140px; resize: vertical; }
label { display: block; margin: 0 0 12px; color: var(--em-muted); font-weight: 700; }
.em-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.em-form-grid .full { grid-column: 1 / -1; }
.em-alert { padding: 12px 14px; border-radius: var(--em-radius); margin-bottom: 18px; background: var(--em-blue-soft); border: 1px solid rgba(0,174,239,.35); }
.em-alert-error { background: rgba(190, 36, 36, .16); border-color: rgba(255, 92, 92, .45); }
.em-disclaimer { margin-top: 24px; color: var(--em-muted); font-size: 13px; }

.em-page-hero {
  padding: 72px 0 42px;
  background: linear-gradient(135deg, #000, #101010);
  border-bottom: 1px solid var(--em-line);
}
.em-page-title { font-size: clamp(42px, 7vw, 78px); }
.em-page-content { padding: 56px 0; }

.woocommerce-shop .em-main,
.tax-product_cat .em-main {
  width: 100%;
  max-width: var(--em-max);
  margin-inline: auto;
  padding: 56px 36px;
}

.woocommerce .woocommerce-breadcrumb { color: var(--em-muted); margin: 0 0 24px; }
.woocommerce div.product { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 44px; }
.single-product .em-main > .product,
.single-product .em-main > div.product {
  width: 100%;
  max-width: var(--em-max);
  margin-inline: auto;
  padding-inline: 36px;
  padding-block: 56px;
}
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: auto !important;
  float: none !important;
}
.woocommerce div.product .product_title { font-size: clamp(34px, 5vw, 58px); text-transform: uppercase; line-height: .98; }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--em-blue); font-weight: 900; font-size: 28px; }
.woocommerce div.product .woocommerce-tabs,
.woocommerce .related { grid-column: 1 / -1; }
.woocommerce div.product .summary .cart {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin: 24px 0;
}
.woocommerce div.product .summary .cart .quantity .qty {
  min-height: 48px;
  width: 72px;
}
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: var(--em-blue) !important;
  border-color: var(--em-blue) !important;
  color: #00131b !important;
  box-shadow: none !important;
}
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related {
  margin-top: 30px;
}
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.woocommerce nav.woocommerce-pagination {
  margin-top: 34px;
  text-align: center;
}
.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 7px;
  border: 0;
  margin: 0;
}
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 11px;
  border: 1px solid var(--em-line);
  border-radius: 6px;
  background: var(--em-panel);
  color: var(--em-white);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
  border-color: var(--em-blue);
  color: var(--em-blue);
  transform: translateY(-2px);
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--em-blue);
  border-color: var(--em-blue);
  color: #00131b;
  font-weight: 900;
}
.navigation.pagination {
  margin-top: 34px;
}
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}
.navigation.pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 11px;
  border: 1px solid var(--em-line);
  border-radius: 6px;
  background: var(--em-panel);
  color: var(--em-white);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.navigation.pagination a.page-numbers:hover {
  border-color: var(--em-blue);
  color: var(--em-blue);
  transform: translateY(-2px);
}
.navigation.pagination .page-numbers.current {
  background: var(--em-blue);
  border-color: var(--em-blue);
  color: #00131b;
  font-weight: 900;
}
.em-search-results-form {
  max-width: 760px;
  margin-bottom: 34px;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  text-align: left;
}
.woocommerce ul.products li.product a img { transition: transform .3s ease, filter .3s ease; }
.woocommerce ul.products li.product:hover a img { transform: translateY(-3px) scale(1.02); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--em-white); text-transform: uppercase; font-size: 17px; }
.woocommerce ul.products li.product .price { color: var(--em-blue); font-weight: 900; }
.woocommerce table.shop_table,
.woocommerce-checkout-review-order-table {
  background: var(--em-panel);
  border: 1px solid var(--em-line) !important;
  border-radius: var(--em-radius);
  overflow: hidden;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: var(--em-line) !important;
  color: var(--em-white);
  padding: 18px 16px;
  vertical-align: middle;
}
.woocommerce table.shop_table th {
  padding: 16px;
  color: var(--em-muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.woocommerce-cart table.cart img {
  width: 82px;
  border-radius: 6px;
  background: #f4f7f8;
}
.woocommerce-cart table.cart .product-name a {
  color: var(--em-white);
  font-weight: 800;
}
.woocommerce-cart table.cart td.actions {
  padding: 16px;
}
.woocommerce-cart table.cart td.actions .coupon {
  display: flex;
  gap: 10px;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: min(260px, 100%);
  min-height: 42px;
  height: 42px;
  margin: 0;
}
.woocommerce-cart table.cart td.actions .coupon button,
.woocommerce-cart table.cart button[name="update_cart"] {
  min-height: 42px;
  height: 42px;
  padding: 8px 16px;
  font-size: 13px;
}
.woocommerce-cart table.cart button[name="update_cart"] {
  background: transparent;
  color: var(--em-blue);
}
.woocommerce-cart table.cart button[name="update_cart"]:hover {
  background: var(--em-blue);
  color: #00131b;
}
.woocommerce-cart .cart-collaterals {
  margin-top: 32px;
}
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #payment {
  background: var(--em-panel) !important;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  color: var(--em-white);
}
.woocommerce-cart .cart-collaterals .cart_totals {
  padding: 26px;
  box-shadow: var(--em-shadow);
}
.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-checkout h3 {
  margin-top: 0;
  text-transform: uppercase;
}
.woocommerce-cart .wc-proceed-to-checkout {
  padding: 18px 0 0;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #place_order {
  width: 100%;
  min-height: 48px;
  padding: 11px 18px;
  background: var(--em-blue);
  border-color: var(--em-blue);
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(0,174,239,.18);
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout #place_order:hover {
  background: #10223A;
  border-color: #10223A;
  color: #FFFFFF;
}
.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  grid-template-rows: auto 1fr;
  gap: 12px 28px;
  align-items: start;
}
.woocommerce-checkout form.checkout > .woocommerce-NoticeGroup,
.woocommerce-checkout form.checkout > .woocommerce-error,
.woocommerce-checkout form.checkout > .woocommerce-message {
  grid-column: 1 / -1;
}
.woocommerce-checkout #customer_details {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  width: 100%;
}
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  float: none;
  width: auto;
  padding: 26px;
  background: var(--em-panel);
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  box-shadow: var(--em-shadow);
}
.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  padding: 0 0 8px;
}
.woocommerce-checkout #order_review {
  grid-column: 2;
  grid-row: 2;
}
.woocommerce form .form-row {
  margin: 0 0 19px;
  padding: 0;
}
.woocommerce form .form-row label {
  margin-bottom: 7px;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  min-height: 50px;
  border-color: #d8dee5;
  background: #f8fafc;
  color: #111820;
  box-shadow: 0 5px 16px rgba(0,0,0,.1);
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--em-blue);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0,174,239,.15), 0 7px 18px rgba(0,0,0,.12);
}
.woocommerce-checkout #order_review {
  padding: 26px;
  background: #0d0d0d;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  box-shadow: var(--em-shadow);
}
.woocommerce-checkout #payment {
  margin-top: 22px;
  padding: 14px;
}
.woocommerce-checkout #payment ul.payment_methods {
  display: grid;
  gap: 10px;
  padding: 0;
  border-bottom-color: var(--em-line);
}
.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method {
  position: relative;
  margin: 0;
  padding: 15px 16px;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background: #111;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method:has(input[type="radio"]:checked) {
  border-color: var(--em-blue);
  background: rgba(0,174,239,.08);
  box-shadow: 0 0 0 2px rgba(0,174,239,.1);
}
.woocommerce-checkout #payment input[type="radio"] {
  appearance: auto !important;
  -webkit-appearance: radio !important;
  width: 16px !important;
  height: 16px !important;
  min-height: 0 !important;
  margin: 2px 9px 0 0 !important;
  accent-color: var(--em-blue);
  box-shadow: none !important;
  vertical-align: top;
}
.woocommerce-checkout #payment label {
  display: inline;
  color: var(--em-white);
  cursor: pointer;
}
.woocommerce-checkout #payment div.payment_box {
  margin: 12px 0 0;
  padding: 12px 14px;
  background: #090909;
  color: var(--em-muted);
}
.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #090909;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: #0b1b22;
  color: var(--em-white);
  border-top-color: var(--em-blue);
}

.em-footer {
  background: #050505;
  border-top: 1px solid var(--em-line);
  padding: 64px 0 24px;
}
.em-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr) 1.2fr;
  gap: 28px;
}
.em-footer h3 { margin: 0 0 14px; font-size: 14px; text-transform: uppercase; color: var(--em-blue); letter-spacing: .1em; }
.em-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.em-footer a,
.em-footer p { color: var(--em-muted); }
.em-footer a:hover { color: var(--em-blue); }
.em-footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--em-line); color: #7f8896; font-size: 13px; text-align: center; }
.em-footer-bottom p { margin: 0 auto; }

.em-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease var(--em-reveal-delay, 0ms), transform .6s cubic-bezier(.2,.7,.2,1) var(--em-reveal-delay, 0ms);
}
.em-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes em-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .em-reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .em-wrap { padding-inline: 24px; }
  .em-trust-top .em-wrap { grid-template-columns: repeat(2, 1fr); padding: 8px 0; }
  .em-menu-toggle { display: inline-flex; }
  .em-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #050505;
    border-bottom: 1px solid var(--em-line);
    padding: 14px 16px 22px;
  }
  .em-nav.is-open { display: block; }
  .em-nav ul { display: grid; gap: 0; align-items: stretch; }
  .em-nav .menu-item-has-children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
  }
  .em-nav .menu-item-has-children > a { grid-column: 1; }
  .em-submenu-toggle {
    grid-column: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--em-line);
    border-radius: 6px;
    background: #0b0b0b;
    color: var(--em-white);
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
  }
  .em-submenu-toggle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .2s ease;
  }
  .em-nav .menu-item-has-children.is-submenu-open > .em-submenu-toggle {
    border-color: var(--em-blue);
    color: var(--em-blue);
  }
  .em-nav .menu-item-has-children.is-submenu-open > .em-submenu-toggle::before {
    transform: translateY(2px) rotate(225deg);
  }
  .em-nav .sub-menu,
  .em-nav .sub-menu .sub-menu {
    position: static;
    grid-column: 1 / -1;
    display: none;
    min-width: 0;
    margin: 0;
    padding: 4px 0 4px 14px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }
  .em-nav .menu-item-has-children.is-submenu-open > .sub-menu { display: grid; }
  .em-nav .sub-menu a { white-space: normal; }
  .em-header-inner { min-height: 68px; }
  .em-logo-header img { height: 48px; max-width: 68px; }
  .em-hero { min-height: auto; padding: 64px 0; }
  .em-hero-grid,
  .em-split,
  .em-newsletter,
  .woocommerce div.product { grid-template-columns: 1fr; }
  .em-grid.cols-5,
  .em-grid.cols-4,
  .em-grid.cols-3,
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
  .em-footer-grid { grid-template-columns: 1fr 1fr; }
  .em-section-head { align-items: start; }
  .em-category-card { min-height: 190px; }
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: 1;
    grid-row: auto;
  }
  .single-product .em-main > .product,
  .single-product .em-main > div.product { padding-inline: 24px; }
  .woocommerce-shop .em-main,
  .tax-product_cat .em-main { padding-inline: 24px; }
}

@media (max-width: 640px) {
  .em-wrap { padding-inline: 16px; }
  .em-actions .em-icon-btn:not(.em-menu-toggle) { width: 36px; height: 36px; }
  .em-header-inner { gap: 10px; }
  .em-logo-header img { height: 44px; max-width: 62px; }
  .em-logo-footer img { height: 96px; max-width: 132px; }
  .em-hero h1 { font-size: 52px; }
  .em-hero p { font-size: 17px; }
  .em-hero-visual { min-height: 300px; padding: 16px; }
  .em-bottle { min-height: 220px; }
  .em-bottle.small { min-height: 180px; }
  .em-section { padding: 54px 0; }
  .em-section-head { display: block; margin-bottom: 26px; }
  .em-section-head > p { margin-top: 14px; }
  .em-hero-points { gap: 12px; }
  .em-hero-points span { width: calc(50% - 6px); }
  .em-newsletter-shell { padding: 24px 18px; }
  .em-feature-panel { min-height: 280px; padding: 26px; }
  .em-feature-copy { padding-inline: 0; }
  .em-grid.cols-5,
  .em-grid.cols-4,
  .em-grid.cols-3,
  .woocommerce ul.products,
  .em-form-grid,
  .em-footer-grid { grid-template-columns: 1fr; }
  .em-form-row { flex-direction: column; }
  .em-search-form { grid-template-columns: 1fr auto; }
  .em-search-form .em-btn { grid-column: 1; }
  .em-search-close { grid-column: 2; grid-row: 1; }
  .em-search-panel.is-open { max-height: 180px; }
  .woocommerce table.shop_table_responsive tr td::before { color: var(--em-muted); }
  .woocommerce-cart table.cart img { width: 64px; }
  .woocommerce table.shop_table_responsive tr td.product-thumbnail {
    display: block !important;
    text-align: left !important;
    padding-block: 16px;
  }
  .woocommerce table.shop_table_responsive tr td.product-thumbnail::before {
    display: none;
  }
  .woocommerce-cart table.cart td.actions .coupon {
    float: none;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .woocommerce-cart table.cart td.actions .coupon .input-text,
  .woocommerce-cart table.cart td.actions .coupon button,
  .woocommerce-cart table.cart td.actions button[name="update_cart"] {
    width: 100%;
  }
  .woocommerce-cart table.cart td.actions button[name="update_cart"] {
    margin-top: 10px;
  }
  .woocommerce-cart .cart-collaterals .cart_totals,
  .woocommerce-checkout .col2-set .col-1,
  .woocommerce-checkout .col2-set .col-2,
  .woocommerce-checkout #order_review {
    padding: 18px;
  }
  .woocommerce div.product .summary .cart {
    flex-wrap: wrap;
  }
  .woocommerce div.product .summary .cart .single_add_to_cart_button {
    flex: 1;
  }
  .single-product .em-main > .product,
  .single-product .em-main > div.product {
    padding-inline: 16px;
    padding-block: 40px;
  }
  .woocommerce-shop .em-main,
  .tax-product_cat .em-main {
    padding-inline: 16px;
    padding-block: 40px;
  }
}

/* Codex staging responsive fixes: header, hero, and product-card actions. */
.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.woocommerce ul.products li.product .price {
  margin-top: auto;
}

.woocommerce ul.products li.product > .button,
.woocommerce ul.products li.product > .added_to_cart {
  width: 100%;
  margin-top: 12px;
  text-align: center;
}

.woocommerce ul.products li.product > .added_to_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background: #0b0b0b;
  color: var(--em-white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.woocommerce ul.products li.product > .added_to_cart:hover {
  border-color: var(--em-blue);
  color: var(--em-blue);
}

@media (max-width: 640px) {
  .em-header-inner {
    gap: 12px;
  }

  .em-logo-header img {
    height: 50px;
    max-width: 72px;
  }

  .em-actions {
    gap: 10px;
    margin-left: auto;
  }

  .em-actions .em-icon-btn {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .em-hero-visual {
    min-height: 320px;
    padding: 52px 16px 16px;
  }

  .em-visual-label {
    top: 20px;
    left: 18px;
  }
}

@media (max-width: 400px) {
  .em-header-inner {
    gap: 9px;
  }

  .em-logo-header img {
    height: 48px;
    max-width: 68px;
  }

  .em-actions {
    gap: 8px;
  }

  .em-actions .em-icon-btn {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
}

/* Codex staging homepage media placement. */
.em-home-image-shell {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: #080b0e;
  box-shadow: 0 24px 60px rgba(0,0,0,.48), 0 0 34px rgba(0,174,239,.12);
}

.em-home-image {
  width: 100%;
  height: 100%;
  margin: 0;
  object-position: center;
}

.em-hero-visual {
  min-height: 420px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  animation: em-float 6s ease-in-out infinite;
}

.em-hero-visual::before,
.em-hero-visual::after {
  display: none;
}

.em-hero-image {
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(0,0,0,.5)) drop-shadow(0 0 24px rgba(0,174,239,.13));
}

.em-feature-panel.em-home-image-shell {
  min-height: 360px;
  padding: 0;
}

.em-feature-panel.em-home-image-shell::after {
  display: none;
}

.em-section-image {
  object-fit: cover;
}

.em-category-card.has-image {
  min-height: 270px;
  padding: 0;
  justify-content: flex-end;
}

.em-category-card.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.28) 58%, rgba(0,0,0,.03) 100%);
  pointer-events: none;
}

.em-category-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.14) saturate(1.08) contrast(1.03);
  transition: transform .4s ease, filter .4s ease;
}

.em-category-card.has-image:hover .em-category-image {
  transform: scale(1.04);
  filter: brightness(1.2) saturate(1.1) contrast(1.05);
}

.em-category-card.has-image .em-category-index,
.em-category-card.has-image .em-category-content,
.em-category-card.has-image .em-card-arrow {
  position: relative;
  z-index: 2;
}

.em-category-card.has-image .em-category-index {
  position: absolute;
  top: 18px;
  left: 18px;
}

.em-category-content {
  position: relative;
  z-index: 2;
  padding: 22px;
}

.em-category-content h3 {
  margin: 0 0 5px;
  text-shadow: 0 2px 12px rgba(0,0,0,.9);
}

.em-category-card.has-image .em-category-meta {
  text-shadow: 0 2px 10px rgba(0,0,0,.95);
}

@media (min-width: 981px) {
  .em-header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }

  .em-logo-header {
    justify-self: start;
  }

  .em-nav {
    justify-self: center;
  }

  .em-nav ul {
    justify-content: center;
  }

  .em-actions {
    justify-self: end;
  }

  .em-nav .sub-menu .menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .em-nav .sub-menu .menu-item-has-children > a::after {
    content: "\203A";
    color: var(--em-blue);
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
    transform: translateX(0);
    transition: transform .18s ease, color .18s ease;
  }

  .em-nav .sub-menu .menu-item-has-children:hover > a::after,
  .em-nav .sub-menu .menu-item-has-children:focus-within > a::after {
    color: var(--em-white);
    transform: translateX(3px);
  }
}

.em-assurance-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 34px;
}

.em-assurance-visual {
  aspect-ratio: 3 / 2;
}

.em-assurance-image {
  object-fit: cover;
}

@media (max-width: 980px) {
  .em-nav .menu-item-has-children > a::after {
    display: none;
  }

  .em-hero-visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .em-feature-panel.em-home-image-shell {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .em-assurance-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .em-hero-visual {
    aspect-ratio: 4 / 3;
    padding: 0;
  }

  .em-category-card.has-image {
    min-height: 300px;
  }

  .em-feature-panel.em-home-image-shell,
  .em-assurance-visual {
    aspect-ratio: 4 / 3;
  }
}

/* Codex staging UI polish: logo sizing, responsive header, newsletter, and product zoom. */
.em-logo-header img {
  height: 66px;
  max-width: 96px;
}

.em-logo-footer img {
  height: 92px;
  max-width: 132px;
}

@media (min-width: 981px) and (max-width: 1120px) {
  .em-wrap {
    padding-inline: 24px;
  }

  .em-header-inner {
    grid-template-columns: minmax(74px, .65fr) minmax(0, auto) minmax(150px, .65fr);
    gap: 16px;
  }

  .em-nav ul {
    gap: 1px;
  }

  .em-nav a {
    padding-inline: 8px;
    font-size: 12px;
  }

  .em-actions {
    gap: 7px;
  }
}

@media (max-width: 980px) {
  .em-header-inner {
    display: flex;
  }

  .em-logo-header {
    margin-right: auto;
  }

  .em-actions {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .em-newsletter-section {
    padding-inline: 16px;
  }

  .em-newsletter-section > .em-wrap {
    padding-inline: 18px;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 981px) {
  .single-product .woocommerce-product-gallery__image {
    overflow: hidden;
    border-radius: var(--em-radius);
  }

  .single-product .woocommerce-product-gallery__image img {
    transform: scale(1);
    transform-origin: center;
    transition: transform .45s cubic-bezier(.2,.7,.2,1);
    will-change: transform;
  }

  .single-product .woocommerce-product-gallery__image:hover img {
    transform: scale(1.08);
  }
}

/* Codex staging account, panel, and responsive spacing polish. */
.em-logo-header img {
  width: clamp(220px, 18vw, 250px);
  height: auto;
  max-width: 100%;
}

.em-logo-footer img {
  width: clamp(240px, 22vw, 280px);
  height: auto;
  max-width: 100%;
}

.woocommerce-account .em-page-content > .em-wrap {
  max-width: 1160px;
}

.woocommerce-account:not(.logged-in) .woocommerce {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
}

.em-account-jump {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 24px;
}

.em-account-jump a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid var(--em-line);
  border-radius: 999px;
  background: #101010;
  color: var(--em-white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.em-account-jump a:hover,
.em-account-jump a:focus {
  border-color: var(--em-blue);
  color: var(--em-blue);
}

.em-account-anchor {
  display: block;
  position: relative;
  top: -110px;
  visibility: hidden;
}

.woocommerce-account #customer_login {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.woocommerce-account #customer_login::before,
.woocommerce-account #customer_login::after {
  display: none;
}

.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2 {
  float: none;
  width: auto;
  min-width: 0;
}

.woocommerce-account #customer_login h2,
.woocommerce-account .woocommerce-ResetPassword + h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.woocommerce-account form.woocommerce-form-login,
.woocommerce-account form.woocommerce-form-register,
.woocommerce-account form.woocommerce-ResetPassword,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  border: 1px solid var(--em-line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), transparent 45%), #111;
  box-shadow: var(--em-shadow);
}

.woocommerce-account form.woocommerce-form-login,
.woocommerce-account form.woocommerce-form-register,
.woocommerce-account form.woocommerce-ResetPassword {
  min-height: calc(100% - 58px);
  margin: 0;
  padding: 28px;
}

.woocommerce-account form .form-row {
  margin-bottom: 18px;
}

.woocommerce-account form .form-row label {
  margin-bottom: 7px;
}

.woocommerce-account form input.input-text {
  min-height: 50px;
  border: 1px solid #d8dee5;
  background: #f8fafc;
  color: #111820;
  box-shadow: 0 5px 16px rgba(0,0,0,.14);
}

.woocommerce-account form input.input-text:focus {
  border-color: var(--em-blue);
  box-shadow: 0 0 0 3px rgba(0,174,239,.16), 0 7px 18px rgba(0,0,0,.14);
}

.woocommerce-account .woocommerce-form-login .form-row:has(.woocommerce-form-login__rememberme) {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.woocommerce-account .woocommerce-form-login__rememberme {
  display: inline-flex !important;
  align-items: center;
  width: auto;
  gap: 8px;
  margin: 0 auto 0 0;
  color: var(--em-muted);
  line-height: 1.2;
  cursor: pointer;
}

.woocommerce-account input.woocommerce-form__input-checkbox {
  appearance: auto;
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
  accent-color: var(--em-blue);
  box-shadow: none;
  flex: 0 0 18px;
}

.woocommerce-account .woocommerce-form-login__submit {
  min-width: 130px;
}

.woocommerce-account .lost_password {
  margin: 4px 0 0;
}

.woocommerce-account .lost_password a,
.em-account-switch a {
  color: var(--em-blue);
  font-weight: 800;
}

.woocommerce-account .lost_password a:hover,
.em-account-switch a:hover {
  color: var(--em-white);
}

.em-account-switch {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--em-line);
  color: var(--em-muted);
}

.woocommerce-account form.woocommerce-ResetPassword {
  max-width: 680px;
  min-height: 0;
  margin-inline: auto;
}

.single-product div.product .woocommerce-tabs {
  padding: 26px;
  border: 1px solid var(--em-line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.03), transparent 45%), #101010;
  box-shadow: var(--em-shadow);
}

.single-product div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 24px;
  padding: 0;
}

.single-product div.product .woocommerce-tabs ul.tabs::before,
.single-product div.product .woocommerce-tabs ul.tabs li::before,
.single-product div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.single-product div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 1px solid var(--em-line);
  border-radius: 7px;
  background: #080808;
}

.single-product div.product .woocommerce-tabs ul.tabs li.active {
  border-color: var(--em-blue);
  background: var(--em-blue-soft);
}

.single-product div.product .woocommerce-tabs ul.tabs li a {
  padding: 10px 15px;
  color: var(--em-muted);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.single-product div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--em-blue);
}

.single-product .woocommerce-Tabs-panel {
  margin: 0;
  color: #d7dee7;
  line-height: 1.75;
}

.single-product .woocommerce-Tabs-panel h2,
.single-product .woocommerce-Tabs-panel h3,
.single-product .woocommerce-Tabs-panel h4 {
  margin: 28px 0 12px;
  color: var(--em-white);
  line-height: 1.1;
  text-transform: uppercase;
}

.single-product .woocommerce-Tabs-panel h2:first-child,
.single-product .woocommerce-Tabs-panel h3:first-child {
  margin-top: 0;
}

.single-product .woocommerce-Tabs-panel h2 {
  padding-left: 14px;
  border-left: 3px solid var(--em-blue);
  font-size: clamp(24px, 4vw, 38px);
}

.single-product .woocommerce-Tabs-panel p {
  margin: 0 0 16px;
}

.single-product .woocommerce-Tabs-panel ul,
.single-product .woocommerce-Tabs-panel ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.single-product .em-description-structured {
  display: grid;
  gap: 18px;
}

.single-product .em-description-heading {
  margin: 22px 0 2px;
  padding: 8px 0 8px 15px;
  border-left: 3px solid var(--em-blue);
  color: var(--em-white);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .015em;
  text-transform: none;
}

.single-product .em-description-heading:first-child {
  margin-top: 0;
}

.single-product .em-description-paragraph,
.single-product .em-description-lead {
  margin: 0;
  color: #d7dee7;
  font-size: 16px;
  line-height: 1.8;
}

.single-product .em-description-lead {
  color: var(--em-white);
  font-weight: 700;
}

.single-product .em-description-feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-product .em-description-feature-list li {
  position: relative;
  margin: 0;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(30, 144, 255, .16);
  border-radius: 9px;
  background: rgba(255,255,255,.025);
  color: #d7dee7;
  line-height: 1.7;
}

.single-product .em-description-feature-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--em-blue);
  box-shadow: 0 0 12px rgba(30, 144, 255, .8);
}

.single-product .em-description-feature-title,
.single-product .em-description-feature-copy {
  display: block;
}

.single-product .em-description-feature-title {
  color: var(--em-white);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.single-product .em-description-feature-title:not(:empty) + .em-description-feature-copy {
  margin-top: 4px;
}

.em-brand-page,
.em-faq-page {
  display: grid;
  gap: 34px;
}

.em-brand-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, .7fr);
  gap: 32px;
  align-items: stretch;
}

.em-brand-intro h2,
.em-faq-intro h2,
.em-brand-cta h2 {
  margin: 8px 0 16px;
  color: var(--em-white);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  text-transform: uppercase;
}

.em-brand-intro p,
.em-faq-intro p,
.em-brand-cta p {
  color: #c9d2dc;
  font-size: 16px;
  line-height: 1.8;
}

.em-brand-stat,
.em-brand-values article,
.em-faq-item,
.em-contact-details > * {
  border: 1px solid var(--em-line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(0,174,239,.08), transparent 48%), #101010;
}

.em-brand-stat {
  display: flex;
  min-height: 270px;
  padding: 28px;
  flex-direction: column;
  justify-content: flex-end;
}

.em-brand-stat strong {
  color: var(--em-blue);
  font-size: clamp(42px, 7vw, 76px);
  line-height: .9;
}

.em-brand-stat span {
  margin-top: 18px;
  color: var(--em-white);
  font-weight: 700;
  line-height: 1.5;
}

.em-brand-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.em-brand-values article {
  padding: 24px;
}

.em-brand-values article > span,
.em-contact-details span {
  color: var(--em-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.em-brand-values h3 {
  margin: 28px 0 10px;
  color: var(--em-white);
  font-size: 20px;
}

.em-brand-values p {
  margin: 0;
  color: var(--em-muted);
  line-height: 1.65;
}

.em-brand-cta {
  display: flex;
  padding: clamp(24px, 4vw, 42px);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(0,174,239,.3);
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(0,174,239,.12), transparent 65%), #0b0b0b;
}

.em-brand-cta h2,
.em-brand-cta p {
  margin-bottom: 0;
}

.em-faq-intro {
  max-width: 760px;
}

.em-faq-list {
  display: grid;
  gap: 12px;
}

.em-faq-item {
  overflow: hidden;
}

.em-faq-item summary {
  position: relative;
  padding: 21px 58px 21px 22px;
  color: var(--em-white);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.em-faq-item summary::-webkit-details-marker {
  display: none;
}

.em-faq-item summary span {
  display: block;
  margin-bottom: 5px;
  color: var(--em-blue);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.em-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--em-blue);
  font-size: 26px;
  transform: translateY(-50%);
}

.em-faq-item[open] summary::after {
  content: "−";
}

.em-faq-item > div {
  padding: 0 22px 22px;
  color: #c9d2dc;
  line-height: 1.75;
}

.em-faq-item p {
  margin: 0;
}

.em-contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.em-contact-details > * {
  display: flex;
  min-width: 0;
  padding: 20px;
  flex-direction: column;
  gap: 8px;
}

.em-contact-details strong {
  color: var(--em-white);
  overflow-wrap: anywhere;
}

.em-contact-details a:hover {
  border-color: var(--em-blue);
}

.em-footer-contact {
  display: grid;
  gap: 8px;
}

.em-footer-contact a,
.em-footer-contact span {
  color: var(--em-muted);
  line-height: 1.5;
}

.em-footer-contact a:hover {
  color: var(--em-blue);
}

.em-cart-fly {
  position: fixed;
  z-index: 99999;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 55% 45% 55% 45%;
  background: var(--em-blue);
  box-shadow: 0 0 18px rgba(0,174,239,.95);
  pointer-events: none;
  transition: transform .62s cubic-bezier(.2,.75,.25,1), opacity .58s ease;
}

.em-cart-count.is-updated {
  animation: em-cart-count-pop .35s ease;
}

@keyframes em-cart-count-pop {
  50% { transform: scale(1.35); box-shadow: 0 0 14px rgba(0,174,239,.8); }
}

.woocommerce ul.products {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.woocommerce ul.products li.product {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
}

.woocommerce ul.products li.product > a:first-child,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  overflow-wrap: anywhere;
}

.woocommerce ul.products li.product .price {
  margin-top: auto;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .em-view-cart-button {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.em-brand-cta .em-btn-row {
  display: grid;
  grid-template-columns: repeat(2, 190px);
  gap: 12px;
}

.em-brand-cta .em-btn {
  display: inline-flex;
  width: 190px;
  min-width: 190px;
  height: 46px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 11px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.em-brand-cta > .em-btn {
  flex: 0 0 auto;
}

@media (min-width: 981px) and (max-width: 1120px) {
  .em-logo-header img {
    width: 190px;
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 980px) {
  .em-logo-header img {
    width: 170px;
    height: auto;
    max-width: 100%;
  }

  .em-page-content > .em-wrap,
  .woocommerce-account .em-page-content > .em-wrap,
  .single-product .em-main > .product,
  .single-product .em-main > div.product,
  .woocommerce-shop .em-main,
  .tax-product_cat .em-main {
    padding-inline: 24px;
  }

  .woocommerce-account #customer_login {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .em-brand-intro,
  .em-brand-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .em-contact-details {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 641px) and (max-width: 767px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .em-logo-header img {
    width: 132px;
    height: auto;
    max-width: 100%;
  }

  .em-logo-footer img {
    width: min(260px, 82vw);
    height: auto;
  }

  .em-trust-top .em-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 10px;
    padding-block: 7px;
    text-align: center;
  }

  .em-trust-top span {
    font-size: 8px;
    line-height: 1.25;
    letter-spacing: .035em;
  }

  .em-hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    align-items: stretch;
  }

  .em-hero-points span {
    display: flex;
    min-width: 0;
    min-height: 30px;
    padding: 6px 4px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 8.5px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .em-hero-points span::before {
    flex: 0 0 auto;
  }

  .em-brand-page,
  .em-faq-page {
    gap: 22px;
  }

  .em-brand-intro,
  .em-brand-values {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .em-brand-stat {
    min-height: 210px;
  }

  .em-brand-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .em-brand-cta .em-btn-row {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .em-brand-cta .em-btn {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding-inline: 10px;
    font-size: 10px;
  }

  .em-brand-cta > .em-btn {
    width: 190px;
    min-width: 190px;
    flex-basis: auto;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .woocommerce ul.products li.product {
    padding: 12px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 13px;
    line-height: 1.3;
  }

  .woocommerce ul.products li.product .price {
    font-size: 14px;
  }

  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product .em-view-cart-button {
    min-height: 40px;
    padding: 8px 6px;
    font-size: 10px;
  }

  .em-faq-item summary {
    padding: 18px 48px 18px 17px;
    font-size: 15px;
  }

  .em-faq-item summary::after {
    right: 17px;
  }

  .em-faq-item > div {
    padding: 0 17px 18px;
  }

  .single-product .em-description-heading {
    margin-top: 18px;
    padding: 7px 0 7px 12px;
    font-size: 20px;
  }

  .single-product .em-description-paragraph,
  .single-product .em-description-lead {
    font-size: 15px;
    line-height: 1.72;
  }

  .single-product .em-description-feature-list li {
    padding: 13px 13px 13px 36px;
  }

  .single-product .em-description-feature-list li::before {
    top: 21px;
    left: 15px;
    width: 7px;
    height: 7px;
  }

  .em-page-content > .em-wrap,
  .woocommerce-account .em-page-content > .em-wrap,
  .single-product .em-main > .product,
  .single-product .em-main > div.product,
  .woocommerce-shop .em-main,
  .tax-product_cat .em-main {
    padding-inline: 16px;
  }

  .woocommerce-account form.woocommerce-form-login,
  .woocommerce-account form.woocommerce-form-register,
  .woocommerce-account form.woocommerce-ResetPassword,
  .single-product div.product .woocommerce-tabs {
    padding: 20px 18px;
  }

  .em-account-jump {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .em-account-jump a {
    padding-inline: 10px;
  }

  .woocommerce-account .woocommerce-form-login .form-row:has(.woocommerce-form-login__rememberme) {
    align-items: stretch;
  }

  .woocommerce-account .woocommerce-form-login__submit {
    width: 100%;
  }

  .single-product div.product .woocommerce-tabs ul.tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .single-product div.product .woocommerce-tabs ul.tabs li a {
    display: block;
    text-align: center;
  }

  .woocommerce-cart .em-page-content > .em-wrap,
  .woocommerce-checkout .em-page-content > .em-wrap,
  .em-newsletter-section,
  .em-form-card {
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .em-logo-header img {
    width: 104px;
  }

  .em-header-inner {
    gap: 6px;
  }

  .em-actions {
    gap: 4px;
  }

  .em-actions .em-icon-btn,
  .em-actions .em-icon-btn:not(.em-menu-toggle) {
    width: 32px;
    height: 32px;
  }
}

/* Staging checkout structure and payment presentation. */
.em-trust-top {
  font-size: 10px;
  letter-spacing: .065em;
}

.em-trust-top .em-wrap {
  min-height: 34px;
  gap: 16px;
}

.em-page-hero {
  padding: 38px 0 28px;
}

.em-page-title {
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: .98;
}

.woocommerce-shop .em-main > .page-title {
  margin: 0;
  padding: 38px 36px 28px;
  border-bottom: 1px solid var(--em-line);
  background: linear-gradient(135deg, #000, #101010);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: .98;
  text-transform: uppercase;
}

.em-page-content {
  padding: 42px 0;
}

.woocommerce-shop .em-main,
.tax-product_cat .em-main {
  padding-top: 42px;
  padding-bottom: 42px;
}

.single-product .em-main > .product,
.single-product .em-main > div.product {
  padding-top: 42px;
  padding-bottom: 42px;
}

.woocommerce div.product {
  align-items: start;
}

.woocommerce div.product .product_title {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  align-self: start;
  min-width: 0;
}

.woocommerce div.product div.images,
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
.woocommerce div.product div.images .woocommerce-product-gallery__image {
  overflow: hidden;
}

.woocommerce div.product div.summary .em-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woocommerce div.product div.summary .em-card {
  min-width: 0;
  overflow-wrap: anywhere;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
.woocommerce div.product div.images .woocommerce-product-gallery__image {
  height: auto !important;
  max-height: 520px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image > a {
  display: flex;
  height: 100%;
  max-height: 520px;
  align-items: center;
  justify-content: center;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image .wp-post-image {
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  max-height: 520px;
  object-fit: contain;
}

.em-content-image-placeholder {
  display: flex;
  min-height: 260px;
  padding: 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border: 1px dashed rgba(0,174,239,.48);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(0,174,239,.08), transparent 48%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.018) 0 10px, transparent 10px 20px),
    #0c0e10;
  color: var(--em-white);
  text-align: center;
}

.em-content-image-placeholder-compact {
  min-height: 190px;
}

.em-content-image-placeholder span {
  color: var(--em-blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.em-content-image-placeholder small {
  color: var(--em-muted);
}

.em-content-page-image {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0,174,239,.22);
  border-radius: 14px;
  background: radial-gradient(circle at 50% 45%, rgba(0,174,239,.08), transparent 64%), #0c0e10;
  box-shadow: 0 18px 48px rgba(0,0,0,.3), 0 0 28px rgba(0,174,239,.08);
}

.em-content-page-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  object-position: center;
}

.em-content-page-image-compact img {
  max-height: 420px;
}

.em-page-media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.em-page-media-split > * {
  min-width: 0;
}

.em-about-media-split .em-brand-intro {
  grid-template-columns: 1fr;
}

.em-about-media-split .em-brand-stat {
  margin-top: 24px;
}

.em-faq-media-split .em-faq-intro {
  max-width: none;
}

.em-contact-media-split {
  align-items: start;
}

.em-contact-content {
  min-width: 0;
}

.em-contact-media-split .em-content-page-image {
  position: sticky;
  top: 120px;
}

.em-contact-details {
  margin-top: 22px;
}

@media (max-width: 820px) {
  .em-page-media-split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .em-page-media-split .em-content-page-image {
    position: static;
  }
}

.woocommerce-cart .coupon {
  display: grid !important;
  grid-template-columns: minmax(150px, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.woocommerce-cart .coupon #coupon_code,
.woocommerce-cart .coupon button {
  width: 100% !important;
  min-height: 48px;
  height: 48px;
  margin: 0 !important;
}

.woocommerce-cart .coupon button {
  display: inline-flex !important;
  min-width: 142px;
  padding: 0 16px !important;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
  text-align: center;
  white-space: nowrap !important;
}

.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .checkout_coupon,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-checkout-payment,
.em-checkout-notes {
  border: 1px solid var(--em-line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(0,174,239,.045), transparent 42%), #101010;
  box-shadow: 0 18px 50px rgba(0,0,0,.2);
}

.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .checkout_coupon {
  padding: 24px;
}

.woocommerce-checkout .woocommerce-info {
  border: 1px solid rgba(0,174,239,.24);
  border-radius: 9px;
  background: #0d1114;
  color: var(--em-white);
}

.woocommerce-checkout .woocommerce-info::before,
.woocommerce-checkout .woocommerce-info a {
  color: var(--em-blue);
}

.woocommerce-checkout form.checkout {
  align-items: start;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  padding: clamp(20px, 3vw, 30px);
}

.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading {
  padding-left: 13px;
  border-left: 3px solid var(--em-blue);
  color: var(--em-white);
}

.woocommerce-checkout .form-row {
  margin-bottom: 16px;
}

.woocommerce-checkout .form-row label {
  margin-bottom: 7px;
  color: #dce5ee;
  font-weight: 700;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.woocommerce-checkout .select2-selection {
  min-height: 48px;
  border: 1px solid #303943 !important;
  border-radius: 7px !important;
  background: #080a0c !important;
  color: var(--em-white) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 8px 20px rgba(0,0,0,.15);
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout .select2-container--open .select2-selection {
  border-color: var(--em-blue) !important;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0,174,239,.14), 0 8px 24px rgba(0,0,0,.2);
}

.woocommerce-checkout #createaccount,
.woocommerce-checkout #ship-to-different-address-checkbox,
.woocommerce-checkout .woocommerce-form__input-checkbox {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  accent-color: var(--em-blue);
}

.woocommerce-checkout #ship-to-different-address {
  margin: 24px 0 18px;
  font-size: 19px;
}

.woocommerce-checkout #ship-to-different-address label,
.woocommerce-checkout .create-account label,
.woocommerce-checkout .woocommerce-form-login__rememberme {
  display: inline-flex !important;
  align-items: center;
  color: var(--em-white);
}

.woocommerce-checkout .woocommerce-checkout-payment {
  margin-top: 24px;
  padding: 12px;
}

.woocommerce-checkout .wc_payment_methods {
  display: grid;
  gap: 12px;
}

.woocommerce-checkout .wc_payment_method {
  overflow: hidden;
  border: 1px solid #303943;
  border-radius: 10px;
  background: #090b0d;
}

.woocommerce-checkout .wc_payment_method > label {
  display: flex;
  min-height: 56px;
  margin: 0;
  padding: 16px;
  align-items: center;
  gap: 10px;
  color: var(--em-white);
  font-weight: 800;
  cursor: pointer;
}

.woocommerce-checkout .wc_payment_method > input {
  margin-left: 16px !important;
  accent-color: var(--em-blue);
}

.woocommerce-checkout .payment_box {
  margin: 0 !important;
  padding: 18px !important;
  border-top: 1px solid #303943;
  background: rgba(0,174,239,.04) !important;
  color: #cfd8e2 !important;
}

.woocommerce-checkout .payment_box::before {
  display: none !important;
}

.em-card-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.em-card-brands span {
  display: inline-flex;
  min-width: 76px;
  min-height: 34px;
  padding: 7px 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  background: #10223A;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  text-align: center;
}

@media (max-width: 640px) {
  .em-card-brands {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .em-card-brands span {
    width: 100%;
    min-width: 0;
  }
}

.em-card-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.em-card-field-row .form-row {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.em-card-field-row .form-row input {
  width: 100%;
}

.woocommerce-checkout .woocommerce-privacy-policy-text {
  margin-top: 18px;
  color: var(--em-muted);
  line-height: 1.65;
}

.woocommerce-checkout .woocommerce-privacy-policy-text a {
  color: var(--em-blue);
}

.em-checkout-notes {
  display: grid;
  gap: 10px;
  max-width: 1320px;
  margin: 24px auto 0;
  padding: 22px;
}

.em-checkout-notes p {
  margin: 0;
  color: #cfd8e2;
  line-height: 1.65;
}

.em-checkout-notes strong {
  color: var(--em-blue);
}

.em-checkout-toggle-panel {
  overflow: hidden;
  transition: opacity .25s ease, transform .25s ease;
}

.em-checkout-toggle-panel.is-open {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .em-page-hero {
    padding: 32px 0 24px;
  }

  .em-page-title {
    font-size: clamp(36px, 6vw, 50px);
  }

  .woocommerce-shop .em-main > .page-title {
    padding: 32px 24px 24px;
    font-size: clamp(36px, 6vw, 50px);
  }

  .em-page-content {
    padding: 36px 0;
  }

  .woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
  .woocommerce div.product div.images .woocommerce-product-gallery__image,
  .woocommerce div.product div.images .woocommerce-product-gallery__image > a,
  .woocommerce div.product div.images .woocommerce-product-gallery__image .wp-post-image {
    max-height: 560px;
  }

  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .em-checkout-notes {
    margin-inline: 24px;
  }
}

@media (max-width: 640px) {
  .em-trust-top {
    font-size: 7px;
    letter-spacing: .025em;
  }

  .em-trust-top .em-wrap {
    min-height: 0;
    gap: 4px 8px;
    padding-block: 6px;
  }

  .em-page-hero {
    padding: 26px 0 20px;
  }

  .em-page-title {
    font-size: clamp(32px, 11vw, 42px);
  }

  .woocommerce-shop .em-main > .page-title {
    padding: 26px 16px 20px;
    font-size: clamp(32px, 11vw, 42px);
  }

  .em-page-content {
    padding: 30px 0;
  }

  .single-product .em-main > .product,
  .single-product .em-main > div.product {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .woocommerce div.product .product_title {
    font-size: clamp(28px, 9vw, 38px);
  }

  .woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
  .woocommerce div.product div.images .woocommerce-product-gallery__image,
  .woocommerce div.product div.images .woocommerce-product-gallery__image > a,
  .woocommerce div.product div.images .woocommerce-product-gallery__image .wp-post-image {
    max-height: 440px;
  }

  .em-content-image-placeholder {
    min-height: 190px;
  }

  .em-content-image-placeholder-compact {
    min-height: 150px;
  }

  .em-page-media-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .em-page-media-split .em-content-page-image {
    position: static;
  }

  .em-content-page-image img,
  .em-content-page-image-compact img {
    height: auto;
    max-height: none;
    aspect-ratio: 2 / 1;
    object-fit: contain;
  }

  .woocommerce-cart .coupon {
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 8px;
  }

  .woocommerce-cart .coupon button {
    min-width: 132px;
    padding-inline: 8px !important;
    font-size: 10px !important;
  }

  .woocommerce-checkout .woocommerce-form-login,
  .woocommerce-checkout .checkout_coupon,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review {
    padding: 18px;
  }

  .woocommerce-checkout .woocommerce-info {
    padding: 14px 16px 14px 42px;
    font-size: 13px;
    line-height: 1.5;
  }

  .em-card-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .em-checkout-notes {
    margin-inline: 16px;
    padding: 18px;
  }

  .woocommerce-checkout .wc_payment_method > label {
    padding: 14px 12px;
    font-size: 13px;
  }
}

/* Keep cart coupon controls aligned after WooCommerce responsive rules. */
.woocommerce-cart table.cart td.actions .coupon {
  display: grid !important;
  grid-template-columns: minmax(150px, 1fr) 142px !important;
  gap: 10px !important;
  align-items: stretch !important;
}

.woocommerce-cart table.cart td.actions .coupon #coupon_code,
.woocommerce-cart table.cart td.actions .coupon button.button {
  width: 100% !important;
  min-height: 48px !important;
  height: 48px !important;
  margin: 0 !important;
  float: none !important;
}

.woocommerce-cart table.cart td.actions .coupon .screen-reader-text {
  position: absolute !important;
}

.woocommerce-cart table.cart td.actions .coupon #coupon_code {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

.woocommerce-cart table.cart td.actions .coupon button.button {
  display: inline-flex !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  padding: 0 12px !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

@media (max-width: 640px) {
  .woocommerce-cart table.cart td.actions .coupon {
    grid-template-columns: minmax(0, 1fr) 132px !important;
    gap: 8px !important;
  }

  .woocommerce-cart table.cart td.actions .coupon button.button {
    padding-inline: 7px !important;
    font-size: 10px !important;
  }
}

/* 2026 wholesale refresh: preserve layout and typography with a lighter palette. */
:root {
  --em-black: #f7f9fc;
  --em-ink: #10223a;
  --em-charcoal: #e9eef5;
  --em-panel: #ffffff;
  --em-line: rgba(20, 55, 92, .14);
  --em-white: #10223a;
  --em-muted: #5d6c80;
  --em-blue: #087ec1;
  --em-blue-soft: rgba(8, 126, 193, .11);
  --em-shadow: 0 18px 48px rgba(30, 72, 112, .12);
  --em-shadow-premium: 0 24px 64px rgba(30, 72, 112, .16);
  --em-glow: 0 0 44px rgba(8, 126, 193, .12);
}

body {
  background: #f7f9fc;
  color: #10223a;
}

.em-trust-top {
  background: #087ec1;
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
}

.em-site-header {
  background: rgba(255, 255, 255, .96);
  border-color: var(--em-line);
  box-shadow: 0 8px 28px rgba(30, 72, 112, .08);
}

.em-nav a,
.em-icon-btn,
.em-search-close {
  color: #10223a;
}

.em-nav .sub-menu,
.em-search-panel {
  background: #fff;
  border-color: var(--em-line);
}

.em-icon-btn {
  background: #f4f7fb;
}

.em-hero,
.em-page-hero,
.em-section {
  background-color: #fff;
}

.em-section.alt,
.em-trust-section,
.em-feature-section.alt,
.em-newsletter-section.alt,
.em-page-content {
  background: #f2f5f9;
}

.em-hero p,
.em-section-lead,
.em-section-head > p,
.em-card p,
.em-footer p {
  color: var(--em-muted);
}

.em-card,
.woocommerce ul.products li.product,
.em-page-card,
.em-feature-panel,
.em-newsletter-shell,
.em-form-card,
.em-contact-details > *,
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  background: #fff;
  border-color: var(--em-line);
  box-shadow: var(--em-shadow);
}

.em-card:hover,
.woocommerce ul.products li.product:hover {
  border-color: rgba(8, 126, 193, .42);
  box-shadow: var(--em-shadow-premium);
}

.em-btn,
button.em-btn,
input.em-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: #087ec1;
  border-color: #087ec1;
  color: #fff;
}

.em-btn.secondary,
.woocommerce a.button.secondary {
  background: #fff;
  border-color: rgba(8, 126, 193, .45);
  color: #087ec1;
}

.em-btn.secondary:hover {
  background: #eaf5fb;
  color: #066ba5;
}

.em-logo-header img {
  height: 66px;
  max-width: 190px;
}

.em-logo-footer img {
  height: 96px;
  max-width: 220px;
}

.em-kits-section {
  scroll-margin-top: 112px;
  background: linear-gradient(180deg, #fff 0%, #f3f7fb 100%);
}

.em-kits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.em-kit-card {
  min-height: 100%;
  padding: 30px;
  scroll-margin-top: 124px;
}

.em-kit-card h3 {
  margin-top: 10px;
  color: #10223a;
}

.em-kit-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 4px;
  padding: 18px 0;
  border-top: 1px solid var(--em-line);
  border-bottom: 1px solid var(--em-line);
  list-style: none;
}

.em-kit-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #304761;
  font-weight: 700;
}

.em-kit-card li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--em-blue);
  content: "";
}

.em-kit-card .em-btn-row {
  margin-top: auto;
  padding-top: 20px;
}

.em-kit-card .em-btn {
  flex: 1 1 150px;
  padding-inline: 16px;
}

.em-wholesale-page-kits {
  margin: 70px 0;
}

.em-wholesale-media-split {
  align-items: center;
  margin-bottom: 70px;
}

.em-wholesale-media-split h2 {
  margin: 10px 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.em-wholesale-media-split .em-content-page-image,
.em-contact-media-split .em-content-page-image {
  overflow: hidden;
  border: 1px solid var(--em-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--em-shadow);
}

.em-wholesale-media-split img,
.em-contact-media-split img {
  width: 100%;
  height: clamp(320px, 42vw, 540px);
  object-fit: cover;
}

.em-product-inquiry-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.em-product-inquiry-actions .em-text-link {
  display: block;
  text-align: center;
}

.em-product-inquiry-actions-single {
  display: flex;
  flex-wrap: wrap;
  margin: 28px 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: #10223a;
}

.em-category-card.has-image .em-category-index,
.em-category-card.has-image .em-category-content h3,
.em-category-card.has-image .em-card-arrow {
  color: #fff;
}

.em-category-card.has-image .em-category-meta {
  color: #70cfff;
}

.em-brand-cta,
.em-brand-stat {
  background: #10223a;
  color: #fff;
}

.em-brand-cta h2,
.em-brand-stat span {
  color: #fff;
}

.em-faq-item,
.em-brand-values article {
  background: #fff;
  border-color: var(--em-line);
  color: #10223a;
  box-shadow: var(--em-shadow);
}

.em-form-card input,
.em-form-card textarea,
.em-form-row input,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.woocommerce-checkout .select2-selection {
  background: #fff !important;
  border-color: rgba(20, 55, 92, .2) !important;
  color: #10223a !important;
}

.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .checkout_coupon,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-checkout-payment,
.woocommerce-account form.woocommerce-form-login,
.woocommerce-account form.woocommerce-form-register,
.woocommerce-account form.woocommerce-ResetPassword,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  background: #fff !important;
  border-color: var(--em-line) !important;
  color: #10223a;
  box-shadow: var(--em-shadow);
}

.woocommerce-checkout #payment label,
.woocommerce-checkout .wc_payment_method > label,
.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading {
  color: #10223a;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: #edf7fc;
  color: #10223a;
}

.pricing-table,
.price-table,
.em-pricing-table,
.wholesale-pricing-table {
  display: none !important;
}

.em-footer {
  background: #10223a;
  color: #fff;
}

.em-footer h3 {
  color: #56baf2;
}

.em-footer a,
.em-footer p,
.em-footer-contact span {
  color: #c8d5e4;
}

.em-footer-bottom {
  border-color: rgba(255, 255, 255, .14);
  color: #a8b8ca;
}

@media (max-width: 980px) {
  .em-kits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .em-logo-header img {
    height: 54px;
    max-width: 150px;
  }
}

@media (max-width: 640px) {
  .em-kits-grid {
    grid-template-columns: 1fr;
  }

  .em-kit-card {
    padding: 24px;
  }

  .em-logo-header img {
    height: 48px;
    max-width: 132px;
  }

  .em-logo-footer img {
    height: 88px;
    max-width: 190px;
  }

  .em-wholesale-media-split img,
  .em-contact-media-split img {
    height: 340px;
  }
}

/* Contrast correction: approved Evolved Muscle palette only. */
:root {
  --em-black: #10223A;
  --em-ink: #10223A;
  --em-charcoal: #10223A;
  --em-panel: #FFFFFF;
  --em-line: #D6DCE5;
  --em-white: #FFFFFF;
  --em-muted: #10223A;
  --em-blue: #0D8BFF;
  --em-blue-soft: #F5F7FA;
  --em-shadow: none;
  --em-shadow-premium: none;
  --em-glow: none;
}

body {
  background: #FFFFFF;
  color: #10223A;
}

.em-trust-top {
  background: #10223A;
  border-color: #D6DCE5;
  color: #FFFFFF;
}

.em-site-header {
  background: #10223A;
  border-color: #D6DCE5;
  box-shadow: none;
}

.em-nav a,
.em-icon-btn,
.em-search-close {
  color: #FFFFFF;
}

.em-nav a:hover,
.em-nav .current-menu-item > a,
.em-nav .current-menu-ancestor > a,
.em-icon-btn:hover {
  color: #0D8BFF;
}

.em-icon-btn {
  background: #10223A;
  border-color: #D6DCE5;
}

.em-nav .sub-menu,
.em-search-panel {
  background: #10223A;
  border-color: #D6DCE5;
}

.em-nav .sub-menu a {
  color: #FFFFFF;
}

.em-nav .sub-menu a:hover,
.em-nav .sub-menu .current-menu-item > a {
  background: #0D8BFF;
  color: #FFFFFF;
}

.em-hero,
.em-page-hero {
  width: 100%;
  background: #10223A;
  border-color: #D6DCE5;
  color: #FFFFFF;
}

.em-hero h1,
.em-page-title {
  color: #FFFFFF;
}

.em-hero h1 span,
.em-kicker,
.em-page-hero .em-section-kicker {
  color: #0D8BFF;
}

.em-hero p,
.em-hero-points,
.em-page-hero .em-section-lead {
  color: #FFFFFF;
}

.em-section,
.em-page-card,
.em-card,
.woocommerce ul.products li.product,
.em-feature-panel,
.em-newsletter-shell,
.em-form-card,
.em-contact-details > *,
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  background: #FFFFFF;
  border-color: #D6DCE5;
  color: #10223A;
  box-shadow: none;
}

.em-section.alt,
.em-trust-section,
.em-feature-section.alt,
.em-newsletter-section.alt,
.em-page-content,
.em-kits-section {
  background: #F5F7FA;
}

.em-section-title,
.em-section h2,
.em-section h3,
.em-page-card h2,
.em-page-card h3,
.em-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: #10223A;
}

.em-section p,
.em-section-lead,
.em-section-head > p,
.em-card p,
.em-kit-card li,
.em-page-card,
.em-page-card p,
.em-contact-details strong,
.em-contact-details span,
label {
  color: #10223A;
}

.em-section-kicker,
.em-category-card .em-category-meta,
.em-text-link,
.em-text-link span {
  color: #0D8BFF;
}

.em-card:hover,
.woocommerce ul.products li.product:hover {
  border-color: #0D8BFF;
  box-shadow: none;
}

.em-btn,
button.em-btn,
input.em-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: #0D8BFF;
  border-color: #0D8BFF;
  color: #FFFFFF;
  box-shadow: none;
}

.em-btn:hover,
button.em-btn:hover,
input.em-btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: #10223A;
  border-color: #10223A;
  color: #FFFFFF;
}

.em-btn.secondary,
.woocommerce a.button.secondary {
  background: #FFFFFF;
  border-color: #0D8BFF;
  color: #0D8BFF;
}

.em-btn.secondary:hover,
.woocommerce a.button.secondary:hover {
  background: #0D8BFF;
  border-color: #0D8BFF;
  color: #FFFFFF;
}

input,
textarea,
select,
.em-form-card input,
.em-form-card textarea,
.em-form-card select,
.em-form-row input,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.woocommerce-checkout .select2-selection {
  background: #FFFFFF !important;
  border-color: #D6DCE5 !important;
  color: #10223A !important;
  box-shadow: none !important;
}

input:focus,
textarea:focus,
select:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: #0D8BFF !important;
  box-shadow: none !important;
}

.woocommerce .woocommerce-ordering select,
.woocommerce-ordering select,
select.orderby {
  background: #FFFFFF !important;
  border: 1px solid #D6DCE5 !important;
  color: #10223A !important;
}

.woocommerce .woocommerce-ordering select option,
.woocommerce-ordering select option,
select.orderby option {
  background: #FFFFFF;
  color: #10223A;
}

.woocommerce .woocommerce-ordering select option:hover,
.woocommerce .woocommerce-ordering select option:checked,
.woocommerce-ordering select option:hover,
.woocommerce-ordering select option:checked,
select.orderby option:hover,
select.orderby option:checked {
  background: #0D8BFF;
  color: #FFFFFF;
}

.em-contact-media-split {
  align-items: start;
}

.em-contact-content .em-form-grid label:has(input[type="tel"]) {
  grid-column: 1 / -1;
}

.em-contact-media-split .em-content-page-image {
  align-self: start;
  background: #FFFFFF;
  border-color: #D6DCE5;
  box-shadow: none;
}

.em-contact-media-split img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.em-footer {
  background: #10223A;
  border-color: #D6DCE5;
  color: #FFFFFF;
}

.em-footer h3 {
  color: #FFFFFF;
}

.em-footer p,
.em-footer-contact span,
.em-footer-bottom {
  color: #D6DCE5;
}

.em-footer a,
.em-footer-contact a {
  color: #FFFFFF;
}

.em-footer a:hover,
.em-footer-contact a:hover {
  color: #0D8BFF;
}

.em-footer-bottom {
  border-color: #D6DCE5;
}

.em-category-card.has-image .em-category-index,
.em-category-card.has-image .em-category-content h3,
.em-category-card.has-image .em-card-arrow {
  color: #FFFFFF;
}

.em-category-card.has-image .em-category-meta {
  color: #0D8BFF;
}

.em-brand-cta,
.em-brand-stat {
  background: #10223A;
  border-color: #D6DCE5;
  color: #FFFFFF;
}

.em-brand-cta h2,
.em-brand-cta p,
.em-brand-stat span {
  color: #FFFFFF;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.em-alert {
  background: #F5F7FA;
  border-color: #D6DCE5;
  color: #10223A;
}

.em-nav,
.em-search-form {
  background: #10223A;
}

.em-search-form input,
.em-newsletter input {
  background: #FFFFFF;
  border-color: #D6DCE5;
  color: #10223A;
}

.em-faq-item,
.em-brand-values article,
.woocommerce table.shop_table,
.woocommerce-checkout-review-order-table,
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #payment,
.woocommerce-account form.woocommerce-form-login,
.woocommerce-account form.woocommerce-form-register,
.woocommerce-account form.woocommerce-form-ResetPassword,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .checkout_coupon,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-checkout-payment {
  background: #FFFFFF !important;
  border-color: #D6DCE5 !important;
  color: #10223A;
  box-shadow: none;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.woocommerce-cart table.cart .product-name a,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-checkout #payment label,
.woocommerce-checkout .wc_payment_method > label,
.woocommerce-checkout .payment_box {
  color: #10223A;
  border-color: #D6DCE5 !important;
}

.woocommerce-checkout .wc_payment_method,
.woocommerce-checkout #payment div.payment_box,
.woocommerce-checkout .payment_box {
  background: #F5F7FA !important;
  border-color: #D6DCE5;
  color: #10223A !important;
}

.woocommerce-checkout #payment div.payment_box::before,
.woocommerce-checkout .payment_box::before {
  border-bottom-color: #F5F7FA;
}

.em-account-jump a,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  background: #FFFFFF;
  border-color: #D6DCE5;
  color: #10223A;
}

.em-account-jump a:hover,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #0D8BFF;
  border-color: #0D8BFF;
  color: #FFFFFF;
}

input::placeholder,
textarea::placeholder,
.em-form-card input::placeholder,
.em-form-card textarea::placeholder,
.em-form-row input::placeholder,
.woocommerce-cart .coupon input::placeholder {
  color: #10223A;
}

/* Final polish: visibility, state consistency, and restrained interactions. */
.em-faq-item,
.em-faq-item[open] {
  background: #FFFFFF;
  border-color: #D6DCE5;
  color: #10223A;
}

.em-faq-item summary,
.em-faq-item[open] summary {
  background: #FFFFFF;
  color: #10223A;
  transition: background-color .2s ease, color .2s ease;
}

.em-faq-item summary:hover,
.em-faq-item[open] summary:hover {
  background: #F5F7FA;
  color: #10223A;
}

.em-faq-item summary span,
.em-faq-item summary::after,
.em-faq-item[open] summary::after {
  color: #0D8BFF;
}

.em-faq-item > div,
.em-faq-item[open] > div,
.em-faq-item p,
.em-faq-item[open] p {
  background: #FFFFFF;
  color: #10223A;
}

.single-product div.product .woocommerce-tabs ul.tabs {
  border-color: #D6DCE5;
}

.single-product div.product .woocommerce-tabs ul.tabs::before,
.single-product div.product .woocommerce-tabs ul.tabs li::before,
.single-product div.product .woocommerce-tabs ul.tabs li::after {
  border-color: #D6DCE5;
  box-shadow: none;
}

.single-product div.product .woocommerce-tabs ul.tabs li,
.single-product div.product .woocommerce-tabs ul.tabs li.active {
  background: #FFFFFF;
  border-color: #D6DCE5;
}

.single-product div.product .woocommerce-tabs ul.tabs li a {
  background: #FFFFFF;
  color: #10223A;
  transition: background-color .2s ease, color .2s ease;
}

.single-product div.product .woocommerce-tabs ul.tabs li.active,
.single-product div.product .woocommerce-tabs ul.tabs li.active a,
.single-product div.product .woocommerce-tabs ul.tabs li:hover,
.single-product div.product .woocommerce-tabs ul.tabs li:hover a {
  background: #0D8BFF;
  border-color: #0D8BFF;
  color: #FFFFFF;
}

.single-product div.product .woocommerce-tabs .panel,
.single-product div.product .woocommerce-tabs .panel h2,
.single-product div.product .woocommerce-tabs .panel h3,
.single-product div.product .woocommerce-tabs .panel h4,
.single-product div.product .woocommerce-tabs .panel p,
.single-product div.product .woocommerce-tabs .panel li,
.single-product div.product .woocommerce-tabs .panel strong {
  color: #10223A;
}

.woocommerce-shop .em-main,
.tax-product_cat .em-main,
.post-type-archive-product .em-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.woocommerce-shop .em-main > .em-page-hero,
.tax-product_cat .em-main > .em-page-hero,
.post-type-archive-product .em-main > .em-page-hero,
.woocommerce-shop .em-main > .page-title {
  width: 100%;
  max-width: none;
  background: #10223A;
  color: #FFFFFF;
}

.woocommerce-shop .em-main > .page-title {
  border-color: #D6DCE5;
}

.woocommerce-shop .em-main > .em-page-content,
.tax-product_cat .em-main > .em-page-content,
.post-type-archive-product .em-main > .em-page-content {
  width: 100%;
}

.em-contact-details {
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.em-contact-details > * {
  width: 100%;
  height: 100%;
  min-height: 118px;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #D6DCE5;
  color: #10223A;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.em-contact-details > *:hover {
  transform: translateY(-3px);
  border-color: #0D8BFF;
  background: #F5F7FA;
}

.em-contact-media-split {
  align-items: stretch;
}

.em-contact-content {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.em-contact-content .em-form-card {
  flex: 1 1 auto;
}

.em-contact-media-split .em-content-page-image {
  position: static;
  align-self: stretch;
  height: 100%;
  min-height: 100%;
}

.em-contact-media-split .em-content-page-image img,
.em-contact-media-split img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform .3s ease;
}

.em-contact-media-split .em-content-page-image:hover img {
  transform: scale(1.02);
}

.em-kit-card .em-btn-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.em-kit-card .em-btn {
  width: 100%;
  flex: 0 0 auto;
  white-space: nowrap;
}

.em-card,
.woocommerce ul.products li.product,
.em-contact-details > *,
.em-feature-panel {
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease;
}

.em-card:hover,
.woocommerce ul.products li.product:hover,
.em-feature-panel:hover {
  transform: translateY(-4px);
  border-color: #0D8BFF;
}

.em-home-image,
.em-category-image,
.woocommerce ul.products li.product img,
.em-content-page-image img {
  transition: transform .3s ease;
}

.em-home-image-shell:hover .em-home-image,
.em-category-card:hover .em-category-image,
.woocommerce ul.products li.product:hover img,
.em-content-page-image:hover img {
  transform: scale(1.02);
}

.em-btn,
.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.em-nav a {
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.em-reveal {
  transition-duration: .45s;
}

@media (max-width: 820px) {
  .em-contact-media-split {
    align-items: start;
  }

  .em-contact-media-split .em-content-page-image {
    height: auto;
    min-height: 0;
  }

  .em-contact-media-split .em-content-page-image img,
  .em-contact-media-split img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .em-card,
  .woocommerce ul.products li.product,
  .em-contact-details > *,
  .em-feature-panel,
  .em-home-image,
  .em-category-image,
  .em-content-page-image img,
  .em-btn,
  .button,
  .wp-element-button,
  .woocommerce a.button,
  .woocommerce button.button,
  .em-nav a,
  .em-reveal {
    transition: none;
  }
}

/* Final requested corrections. */
.woocommerce-shop .em-page-title,
.post-type-archive-product .em-page-title,
.tax-product_cat .em-page-title,
.woocommerce-shop .em-main > .page-title {
  font-family: Montserrat, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.woocommerce-shop .em-main > .em-page-content,
.post-type-archive-product .em-main > .em-page-content,
.tax-product_cat .em-main > .em-page-content {
  padding: 42px 0 64px;
}

.woocommerce-shop .em-main > .em-page-content > .em-wrap,
.post-type-archive-product .em-main > .em-page-content > .em-wrap,
.tax-product_cat .em-main > .em-page-content > .em-wrap {
  width: 100%;
  max-width: var(--em-max);
  margin-inline: auto;
  padding-inline: 36px;
}

.em-products-section .em-product-inquiry-actions .em-text-link {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #0D8BFF;
  border-radius: var(--em-radius);
  background: #FFFFFF;
  color: #0D8BFF;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.em-products-section .em-product-inquiry-actions .em-text-link:hover {
  background: #0D8BFF;
  color: #FFFFFF;
}

.em-wholesale-section .em-split {
  align-items: stretch;
}

.em-feature-panel-wholesale.em-home-image-shell {
  min-height: 100%;
  padding: 0;
  align-self: stretch;
  overflow: hidden;
}

.em-feature-panel-wholesale .em-section-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

.em-wholesale-media-split {
  align-items: stretch;
}

.em-wholesale-media-split .em-content-page-image {
  height: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.em-wholesale-media-split .em-content-page-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.em-wholesale-nav-item > .sub-menu {
  min-width: 240px;
  padding: 10px;
}

.em-wholesale-nav-item > .sub-menu a {
  display: block;
  min-height: 42px;
  padding: 11px 14px;
  align-content: center;
  color: #FFFFFF;
}

.em-research-intro {
  max-width: 820px;
  margin-bottom: 32px;
}

.em-research-intro h2 {
  margin: 10px 0 16px;
  color: #10223A;
  font-family: Montserrat, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.em-research-intro p,
.em-research-card p {
  color: #10223A;
}

.em-research-products {
  align-items: stretch;
}

.em-research-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.em-research-card .em-btn-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
}

.em-research-card .em-btn {
  width: 100%;
  white-space: nowrap;
}

.em-wholesale-kit-overview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.em-wholesale-kit-page .em-brand-cta {
  margin-top: 32px;
}

@media (max-width: 980px) {
  .woocommerce-shop .em-main > .em-page-content,
  .post-type-archive-product .em-main > .em-page-content,
  .tax-product_cat .em-main > .em-page-content {
    padding: 36px 0 52px;
  }

  .woocommerce-shop .em-main > .em-page-content > .em-wrap,
  .post-type-archive-product .em-main > .em-page-content > .em-wrap,
  .tax-product_cat .em-main > .em-page-content > .em-wrap {
    padding-inline: 24px;
  }

  .em-wholesale-nav-item > .sub-menu {
    width: 100%;
    max-width: 100%;
    padding: 6px 0 6px 14px;
    overflow: visible;
  }

  .em-wholesale-nav-item > .sub-menu a {
    min-height: 44px;
    padding: 12px 14px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .em-research-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .em-wholesale-kit-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .woocommerce-shop .em-main > .em-page-content,
  .post-type-archive-product .em-main > .em-page-content,
  .tax-product_cat .em-main > .em-page-content {
    padding: 30px 0 44px;
  }

  .woocommerce-shop .em-main > .em-page-content > .em-wrap,
  .post-type-archive-product .em-main > .em-page-content > .em-wrap,
  .tax-product_cat .em-main > .em-page-content > .em-wrap {
    padding-inline: 16px;
  }

  .em-hero-copy {
    text-align: center;
  }

  .em-hero-copy .em-btn-row {
    justify-content: center;
  }

  .em-hero-points {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 24px auto 0;
    padding-inline: 8px;
    justify-content: center;
    gap: 10px 14px;
    text-align: center;
  }

  .em-hero-points span {
    width: auto;
    max-width: 100%;
    min-height: 34px;
    padding: 7px 10px;
    justify-content: center;
    font-size: 9px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .em-products-section .em-product-inquiry-actions .button,
  .em-products-section .em-product-inquiry-actions .em-text-link {
    min-height: 38px;
    padding: 9px 7px;
    font-size: 9px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .em-wholesale-section .em-split,
  .em-wholesale-media-split {
    align-items: start;
  }

  .em-feature-panel-wholesale.em-home-image-shell,
  .em-wholesale-media-split .em-content-page-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .em-feature-panel-wholesale .em-section-image,
  .em-wholesale-media-split .em-content-page-image img {
    height: 100%;
    min-height: 0;
  }

  .em-research-products {
    grid-template-columns: 1fr;
  }

  .em-wholesale-kit-overview {
    grid-template-columns: 1fr;
  }

  .em-research-card .em-btn {
    font-size: 10px;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

/* Final visual fixes: newsletter, assurance cards, and Wholesale Kits CTAs. */
.em-newsletter-shell,
.em-newsletter {
  background: #10223A;
  border: 1px solid #D6DCE5;
  color: #FFFFFF;
  box-shadow: 0 10px 24px #D6DCE5;
}

.em-newsletter .em-section-kicker,
.em-newsletter-shell .em-section-kicker {
  color: #0D8BFF;
}

.em-newsletter .em-section-title,
.em-newsletter-shell .em-section-title {
  color: #FFFFFF;
}

.em-newsletter .em-section-lead,
.em-newsletter-shell .em-section-lead,
.em-newsletter p,
.em-newsletter-shell p {
  color: #D6DCE5;
}

.em-newsletter input,
.em-newsletter-shell input {
  background: #FFFFFF !important;
  border-color: #D6DCE5 !important;
  color: #10223A !important;
}

.em-newsletter input::placeholder,
.em-newsletter-shell input::placeholder {
  color: #10223A;
}

.em-newsletter .em-btn,
.em-newsletter-shell .em-btn {
  background: #0D8BFF;
  border-color: #0D8BFF;
  color: #FFFFFF;
}

.em-newsletter .em-btn:hover,
.em-newsletter-shell .em-btn:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #10223A;
}

.em-assurance-card {
  padding: 28px;
  border: 1px solid #D6DCE5;
  border-radius: 12px;
  background: #FFFFFF;
  color: #10223A;
  box-shadow: 0 8px 20px #D6DCE5;
  transition: transform .22s ease, border-color .22s ease;
}

.em-assurance-card .em-card-dot {
  background: #0D8BFF;
  box-shadow: none;
}

.em-assurance-card h3,
.em-assurance-card p {
  color: #10223A;
}

.em-assurance-card:hover {
  transform: translateY(-4px);
  border-color: #0D8BFF;
  box-shadow: 0 8px 20px #D6DCE5;
}

.em-kits-grid .em-kit-card .em-btn-row,
.em-wholesale-page-kits .em-kit-card .em-btn-row,
.em-kits-section .em-kit-card .em-btn-row {
  display: flex !important;
  width: 100% !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 11px !important;
  align-items: stretch !important;
}

.em-kits-grid .em-kit-card .em-btn-row > .em-btn,
.em-wholesale-page-kits .em-kit-card .em-btn-row > .em-btn,
.em-kits-section .em-kit-card .em-btn-row > .em-btn {
  display: flex;
  width: 100% !important;
  min-height: 48px;
  flex: 0 0 48px !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap !important;
}

@media (max-width: 980px) {
  .em-newsletter-shell,
  .em-newsletter {
    width: 100%;
  }

  .em-assurance-card {
    height: 100%;
  }
}

@media (max-width: 640px) {
  .em-newsletter-shell,
  .em-newsletter {
    width: 100%;
  }

  .em-newsletter .em-form-row,
  .em-newsletter-shell .em-form-row {
    width: 100%;
  }

  .em-newsletter .em-btn,
  .em-newsletter-shell .em-btn {
    width: 100%;
  }

  .em-assurance-card {
    width: 100%;
  }
}

/* WooCommerce archive content container below the hero only. */
.woocommerce-shop .em-main > .em-page-content,
.post-type-archive-product .em-main > .em-page-content,
.tax-product_cat .em-main > .em-page-content {
  width: 100%;
  max-width: 1480px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 72px;
  padding-bottom: 72px;
  padding-left: 72px;
}

.woocommerce-shop .em-main > .em-page-content > .em-wrap,
.post-type-archive-product .em-main > .em-page-content > .em-wrap,
.tax-product_cat .em-main > .em-page-content > .em-wrap {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

@media (max-width: 980px) {
  .woocommerce-shop .em-main > .em-page-content,
  .post-type-archive-product .em-main > .em-page-content,
  .tax-product_cat .em-main > .em-page-content {
    padding-right: 48px;
    padding-bottom: 56px;
    padding-left: 48px;
  }
}

@media (max-width: 640px) {
  .woocommerce-shop .em-main > .em-page-content,
  .post-type-archive-product .em-main > .em-page-content,
  .tax-product_cat .em-main > .em-page-content {
    padding-right: 22px;
    padding-bottom: 44px;
    padding-left: 22px;
  }
}

body.post-type-archive-product main.em-main,
body.tax-product_cat main.em-main,
body.woocommerce-shop main.em-main {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 80px;
}

body.post-type-archive-product main.em-main .page-description,
body.post-type-archive-product main.em-main .woocommerce-result-count,
body.post-type-archive-product main.em-main .woocommerce-ordering,
body.post-type-archive-product main.em-main ul.products,
body.post-type-archive-product main.em-main .woocommerce-pagination,
body.tax-product_cat main.em-main .page-description,
body.tax-product_cat main.em-main .woocommerce-result-count,
body.tax-product_cat main.em-main .woocommerce-ordering,
body.tax-product_cat main.em-main ul.products,
body.tax-product_cat main.em-main .woocommerce-pagination,
body.woocommerce-shop main.em-main .page-description,
body.woocommerce-shop main.em-main .woocommerce-result-count,
body.woocommerce-shop main.em-main .woocommerce-ordering,
body.woocommerce-shop main.em-main ul.products,
body.woocommerce-shop main.em-main .woocommerce-pagination {
  width: min(100% - 120px, 1440px);
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 1024px) {
  body.post-type-archive-product main.em-main .page-description,
  body.post-type-archive-product main.em-main .woocommerce-result-count,
  body.post-type-archive-product main.em-main .woocommerce-ordering,
  body.post-type-archive-product main.em-main ul.products,
  body.post-type-archive-product main.em-main .woocommerce-pagination,
  body.tax-product_cat main.em-main .page-description,
  body.tax-product_cat main.em-main .woocommerce-result-count,
  body.tax-product_cat main.em-main .woocommerce-ordering,
  body.tax-product_cat main.em-main ul.products,
  body.tax-product_cat main.em-main .woocommerce-pagination,
  body.woocommerce-shop main.em-main .page-description,
  body.woocommerce-shop main.em-main .woocommerce-result-count,
  body.woocommerce-shop main.em-main .woocommerce-ordering,
  body.woocommerce-shop main.em-main ul.products,
  body.woocommerce-shop main.em-main .woocommerce-pagination {
    width: min(100% - 64px, 100%);
  }
}

@media (max-width: 640px) {
  body.post-type-archive-product main.em-main,
  body.tax-product_cat main.em-main,
  body.woocommerce-shop main.em-main {
    padding-bottom: 56px;
  }

  body.post-type-archive-product main.em-main .page-description,
  body.post-type-archive-product main.em-main .woocommerce-result-count,
  body.post-type-archive-product main.em-main .woocommerce-ordering,
  body.post-type-archive-product main.em-main ul.products,
  body.post-type-archive-product main.em-main .woocommerce-pagination,
  body.tax-product_cat main.em-main .page-description,
  body.tax-product_cat main.em-main .woocommerce-result-count,
  body.tax-product_cat main.em-main .woocommerce-ordering,
  body.tax-product_cat main.em-main ul.products,
  body.tax-product_cat main.em-main .woocommerce-pagination,
  body.woocommerce-shop main.em-main .page-description,
  body.woocommerce-shop main.em-main .woocommerce-result-count,
  body.woocommerce-shop main.em-main .woocommerce-ordering,
  body.woocommerce-shop main.em-main ul.products,
  body.woocommerce-shop main.em-main .woocommerce-pagination {
    width: min(100% - 32px, 100%);
  }
}

body.post-type-archive-product main.em-main > h1.page-title,
body.woocommerce-shop main.em-main > h1.page-title,
body.tax-product_cat main.em-main > h1.page-title {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 38px;
  padding-bottom: 28px;
  background: #10223A;
  color: #FFFFFF;
  font-family: Montserrat, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

body.post-type-archive-product main.em-main > :not(h1.page-title),
body.woocommerce-shop main.em-main > :not(h1.page-title),
body.tax-product_cat main.em-main > :not(h1.page-title) {
  width: min(100% - 120px, 1440px);
  margin-left: auto;
  margin-right: auto;
}

body.post-type-archive-product main.em-main > :last-child:not(h1.page-title),
body.woocommerce-shop main.em-main > :last-child:not(h1.page-title),
body.tax-product_cat main.em-main > :last-child:not(h1.page-title) {
  margin-bottom: 80px;
}

@media (max-width: 1024px) {
  body.post-type-archive-product main.em-main > :not(h1.page-title),
  body.woocommerce-shop main.em-main > :not(h1.page-title),
  body.tax-product_cat main.em-main > :not(h1.page-title) {
    width: min(100% - 64px, 100%);
  }
}

@media (max-width: 640px) {
  body.post-type-archive-product main.em-main > :not(h1.page-title),
  body.woocommerce-shop main.em-main > :not(h1.page-title),
  body.tax-product_cat main.em-main > :not(h1.page-title) {
    width: min(100% - 32px, 100%);
  }

  body.post-type-archive-product main.em-main > :last-child:not(h1.page-title),
  body.woocommerce-shop main.em-main > :last-child:not(h1.page-title),
  body.tax-product_cat main.em-main > :last-child:not(h1.page-title) {
    margin-bottom: 56px;
  }
}

/* Products archive title, introduction, and sorting polish only. */
body.post-type-archive-product main.em-main > h1.page-title,
body.woocommerce-shop main.em-main > h1.page-title,
body.tax-product_cat main.em-main > h1.page-title {
  padding-left: max(36px, calc((100vw - 1320px) / 2 + 36px));
  padding-right: max(36px, calc((100vw - 1320px) / 2 + 36px));
}

body.post-type-archive-product main.em-main .page-description,
body.woocommerce-shop main.em-main .page-description,
body.tax-product_cat main.em-main .page-description {
  margin-top: 32px;
  margin-bottom: 28px;
  color: #10223A;
}

body.post-type-archive-product main.em-main .page-description p,
body.woocommerce-shop main.em-main .page-description p,
body.tax-product_cat main.em-main .page-description p {
  margin: 0;
  color: #10223A;
}

body.post-type-archive-product main.em-main .woocommerce-result-count,
body.woocommerce-shop main.em-main .woocommerce-result-count,
body.tax-product_cat main.em-main .woocommerce-result-count {
  float: left;
  margin: 0 0 24px;
  color: #10223A;
}

body.post-type-archive-product main.em-main .woocommerce-ordering,
body.woocommerce-shop main.em-main .woocommerce-ordering,
body.tax-product_cat main.em-main .woocommerce-ordering {
  float: right;
  width: 270px;
  margin: 0 0 24px;
}

body.post-type-archive-product main.em-main select.orderby,
body.woocommerce-shop main.em-main select.orderby,
body.tax-product_cat main.em-main select.orderby {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid #D6DCE5;
  border-radius: var(--em-radius);
  background: #FFFFFF;
  color: #10223A;
}

body.post-type-archive-product main.em-main select.orderby option,
body.woocommerce-shop main.em-main select.orderby option,
body.tax-product_cat main.em-main select.orderby option {
  background: #FFFFFF;
  color: #10223A;
}

@media (max-width: 980px) {
  body.post-type-archive-product main.em-main > h1.page-title,
  body.woocommerce-shop main.em-main > h1.page-title,
  body.tax-product_cat main.em-main > h1.page-title {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 640px) {
  body.post-type-archive-product main.em-main > h1.page-title,
  body.woocommerce-shop main.em-main > h1.page-title,
  body.tax-product_cat main.em-main > h1.page-title {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.post-type-archive-product main.em-main .page-description,
  body.woocommerce-shop main.em-main .page-description,
  body.tax-product_cat main.em-main .page-description {
    margin-top: 24px;
    margin-bottom: 22px;
  }

  body.post-type-archive-product main.em-main .woocommerce-result-count,
  body.woocommerce-shop main.em-main .woocommerce-result-count,
  body.tax-product_cat main.em-main .woocommerce-result-count,
  body.post-type-archive-product main.em-main .woocommerce-ordering,
  body.woocommerce-shop main.em-main .woocommerce-ordering,
  body.tax-product_cat main.em-main .woocommerce-ordering {
    float: none;
    width: 100%;
  }

  body.post-type-archive-product main.em-main .woocommerce-result-count,
  body.woocommerce-shop main.em-main .woocommerce-result-count,
  body.tax-product_cat main.em-main .woocommerce-result-count {
    margin-bottom: 12px;
  }
}

body.post-type-archive-product main.em-main > .page-description,
body.woocommerce-shop main.em-main > .page-description,
body.tax-product_cat main.em-main > .page-description,
body.post-type-archive-product main.em-main > .woocommerce-notices-wrapper,
body.woocommerce-shop main.em-main > .woocommerce-notices-wrapper,
body.tax-product_cat main.em-main > .woocommerce-notices-wrapper,
body.post-type-archive-product main.em-main > .woocommerce-result-count,
body.woocommerce-shop main.em-main > .woocommerce-result-count,
body.tax-product_cat main.em-main > .woocommerce-result-count,
body.post-type-archive-product main.em-main > .woocommerce-ordering,
body.woocommerce-shop main.em-main > .woocommerce-ordering,
body.tax-product_cat main.em-main > .woocommerce-ordering,
body.post-type-archive-product main.em-main > ul.products,
body.woocommerce-shop main.em-main > ul.products,
body.tax-product_cat main.em-main > ul.products,
body.post-type-archive-product main.em-main > .woocommerce-pagination,
body.woocommerce-shop main.em-main > .woocommerce-pagination,
body.tax-product_cat main.em-main > .woocommerce-pagination {
  width: min(100% - 120px, 1440px) !important;
  max-width: 1440px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.post-type-archive-product main.em-main > .page-description,
body.woocommerce-shop main.em-main > .page-description,
body.tax-product_cat main.em-main > .page-description {
  margin-top: 28px !important;
  margin-bottom: 24px !important;
}

body.post-type-archive-product main.em-main > .page-description p,
body.woocommerce-shop main.em-main > .page-description p,
body.tax-product_cat main.em-main > .page-description p {
  margin: 0 !important;
  color: #10223A !important;
  line-height: 1.7 !important;
}

body.post-type-archive-product main.em-main > .woocommerce-result-count,
body.woocommerce-shop main.em-main > .woocommerce-result-count,
body.tax-product_cat main.em-main > .woocommerce-result-count {
  float: left !important;
  width: auto !important;
  margin-left: calc((100vw - min(100% - 120px, 1440px)) / 2) !important;
  margin-bottom: 24px !important;
  color: #10223A !important;
}

body.post-type-archive-product main.em-main > .woocommerce-ordering,
body.woocommerce-shop main.em-main > .woocommerce-ordering,
body.tax-product_cat main.em-main > .woocommerce-ordering {
  float: right !important;
  width: auto !important;
  max-width: 280px !important;
  margin-right: calc((100vw - min(100% - 120px, 1440px)) / 2) !important;
  margin-bottom: 24px !important;
}

body.post-type-archive-product main.em-main > .woocommerce-ordering select.orderby,
body.woocommerce-shop main.em-main > .woocommerce-ordering select.orderby,
body.tax-product_cat main.em-main > .woocommerce-ordering select.orderby {
  width: 280px !important;
  max-width: 280px !important;
  height: 52px !important;
  padding: 0 18px !important;
  background: #FFFFFF !important;
  color: #10223A !important;
  border: 1px solid #D6DCE5 !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  line-height: 52px !important;
}

body.post-type-archive-product main.em-main > ul.products,
body.woocommerce-shop main.em-main > ul.products,
body.tax-product_cat main.em-main > ul.products {
  clear: both !important;
  padding-top: 8px !important;
  padding-bottom: 80px !important;
}

@media (max-width: 1024px) {
  body.post-type-archive-product main.em-main > .page-description,
  body.woocommerce-shop main.em-main > .page-description,
  body.tax-product_cat main.em-main > .page-description,
  body.post-type-archive-product main.em-main > ul.products,
  body.woocommerce-shop main.em-main > ul.products,
  body.tax-product_cat main.em-main > ul.products,
  body.post-type-archive-product main.em-main > .woocommerce-pagination,
  body.woocommerce-shop main.em-main > .woocommerce-pagination,
  body.tax-product_cat main.em-main > .woocommerce-pagination {
    width: min(100% - 64px, 100%) !important;
  }

  body.post-type-archive-product main.em-main > .woocommerce-result-count,
  body.woocommerce-shop main.em-main > .woocommerce-result-count,
  body.tax-product_cat main.em-main > .woocommerce-result-count,
  body.post-type-archive-product main.em-main > .woocommerce-ordering,
  body.woocommerce-shop main.em-main > .woocommerce-ordering,
  body.tax-product_cat main.em-main > .woocommerce-ordering {
    float: none !important;
    width: min(100% - 64px, 100%) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.post-type-archive-product main.em-main > .woocommerce-ordering select.orderby,
  body.woocommerce-shop main.em-main > .woocommerce-ordering select.orderby,
  body.tax-product_cat main.em-main > .woocommerce-ordering select.orderby {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 640px) {
  body.post-type-archive-product main.em-main > .page-description,
  body.woocommerce-shop main.em-main > .page-description,
  body.tax-product_cat main.em-main > .page-description,
  body.post-type-archive-product main.em-main > .woocommerce-result-count,
  body.woocommerce-shop main.em-main > .woocommerce-result-count,
  body.tax-product_cat main.em-main > .woocommerce-result-count,
  body.post-type-archive-product main.em-main > .woocommerce-ordering,
  body.woocommerce-shop main.em-main > .woocommerce-ordering,
  body.tax-product_cat main.em-main > .woocommerce-ordering,
  body.post-type-archive-product main.em-main > ul.products,
  body.woocommerce-shop main.em-main > ul.products,
  body.tax-product_cat main.em-main > ul.products,
  body.post-type-archive-product main.em-main > .woocommerce-pagination,
  body.woocommerce-shop main.em-main > .woocommerce-pagination,
  body.tax-product_cat main.em-main > .woocommerce-pagination {
    width: min(100% - 32px, 100%) !important;
  }
}

/* Final client adjustments: product contrast, mobile ordering, and feature cards. */
.single-product div.product .woocommerce-tabs {
  background: #10223A;
  color: #D6DCE5;
}

.single-product div.product .woocommerce-tabs .panel,
.single-product div.product .woocommerce-tabs .panel p,
.single-product div.product .woocommerce-tabs .panel li,
.single-product div.product .woocommerce-tabs .panel dd,
.single-product div.product .woocommerce-tabs .panel blockquote,
.single-product div.product .woocommerce-tabs .panel .em-description-paragraph,
.single-product div.product .woocommerce-tabs .panel .em-description-feature-copy {
  color: #D6DCE5 !important;
}

.single-product div.product .woocommerce-tabs .panel h1,
.single-product div.product .woocommerce-tabs .panel h2,
.single-product div.product .woocommerce-tabs .panel h3,
.single-product div.product .woocommerce-tabs .panel h4,
.single-product div.product .woocommerce-tabs .panel h5,
.single-product div.product .woocommerce-tabs .panel h6,
.single-product div.product .woocommerce-tabs .panel strong,
.single-product div.product .woocommerce-tabs .panel b,
.single-product div.product .woocommerce-tabs .panel dt,
.single-product div.product .woocommerce-tabs .panel .em-description-heading,
.single-product div.product .woocommerce-tabs .panel .em-description-lead,
.single-product div.product .woocommerce-tabs .panel .em-description-feature-title {
  color: #FFFFFF !important;
}

.single-product div.product .woocommerce-tabs .panel a {
  color: #65B5FF;
}

.single-product div.product .woocommerce-tabs .panel .em-card,
.single-product div.product .woocommerce-tabs .panel .em-description-feature-list li {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
  color: #D6DCE5;
}

.em-product-feature-grid {
  margin: 22px 0;
}

@media (max-width: 767px) {
  .home .em-hero-grid {
    display: flex;
    flex-direction: column;
  }

  .home .em-hero-visual {
    order: 1;
    width: 100%;
    margin-bottom: 24px;
  }

  .home .em-hero-copy {
    order: 2;
  }

  .single-product div.product div.summary .em-product-feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .single-product .em-product-feature-grid .em-card {
    width: 100%;
    min-height: 0;
    padding: 22px;
  }

  .em-contact-media-split .em-content-page-image {
    order: -1;
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
  }

  .em-contact-media-split .em-content-page-image img,
  .em-contact-media-split img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}

/* Final WooCommerce archive controls layout. */
body.post-type-archive-product main.em-main > .page-description,
body.woocommerce-shop main.em-main > .page-description,
body.tax-product_cat main.em-main > .page-description,
body.post-type-archive-product main.em-main > ul.products,
body.woocommerce-shop main.em-main > ul.products,
body.tax-product_cat main.em-main > ul.products {
  width: min(100% - 120px, 1440px) !important;
  max-width: 1440px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.post-type-archive-product main.em-main > .page-description,
body.woocommerce-shop main.em-main > .page-description,
body.tax-product_cat main.em-main > .page-description {
  margin-top: 28px !important;
  margin-bottom: 16px !important;
}

body.post-type-archive-product main.em-main > .woocommerce-result-count,
body.woocommerce-shop main.em-main > .woocommerce-result-count,
body.tax-product_cat main.em-main > .woocommerce-result-count {
  float: left !important;
  width: auto !important;
  margin: 0 0 24px max(60px, calc((100vw - 1440px) / 2)) !important;
}

body.post-type-archive-product main.em-main > .woocommerce-ordering,
body.woocommerce-shop main.em-main > .woocommerce-ordering,
body.tax-product_cat main.em-main > .woocommerce-ordering {
  float: right !important;
  width: 260px !important;
  max-width: 260px !important;
  margin: 0 max(60px, calc((100vw - 1440px) / 2)) 24px 0 !important;
}

body.post-type-archive-product main.em-main > .woocommerce-ordering select.orderby,
body.woocommerce-shop main.em-main > .woocommerce-ordering select.orderby,
body.tax-product_cat main.em-main > .woocommerce-ordering select.orderby {
  width: 260px !important;
  max-width: 260px !important;
}

body.post-type-archive-product main.em-main > ul.products,
body.woocommerce-shop main.em-main > ul.products,
body.tax-product_cat main.em-main > ul.products {
  clear: both !important;
}

@media (max-width: 1024px) {
  body.post-type-archive-product main.em-main > .page-description,
  body.woocommerce-shop main.em-main > .page-description,
  body.tax-product_cat main.em-main > .page-description,
  body.post-type-archive-product main.em-main > ul.products,
  body.woocommerce-shop main.em-main > ul.products,
  body.tax-product_cat main.em-main > ul.products {
    width: min(100% - 64px, 100%) !important;
  }

  body.post-type-archive-product main.em-main > .woocommerce-result-count,
  body.woocommerce-shop main.em-main > .woocommerce-result-count,
  body.tax-product_cat main.em-main > .woocommerce-result-count {
    margin-left: 32px !important;
  }

  body.post-type-archive-product main.em-main > .woocommerce-ordering,
  body.woocommerce-shop main.em-main > .woocommerce-ordering,
  body.tax-product_cat main.em-main > .woocommerce-ordering {
    margin-right: 32px !important;
  }
}

@media (max-width: 640px) {
  body.post-type-archive-product main.em-main > .page-description,
  body.woocommerce-shop main.em-main > .page-description,
  body.tax-product_cat main.em-main > .page-description,
  body.post-type-archive-product main.em-main > .woocommerce-result-count,
  body.woocommerce-shop main.em-main > .woocommerce-result-count,
  body.tax-product_cat main.em-main > .woocommerce-result-count,
  body.post-type-archive-product main.em-main > .woocommerce-ordering,
  body.woocommerce-shop main.em-main > .woocommerce-ordering,
  body.tax-product_cat main.em-main > .woocommerce-ordering,
  body.post-type-archive-product main.em-main > ul.products,
  body.woocommerce-shop main.em-main > ul.products,
  body.tax-product_cat main.em-main > ul.products {
    float: none !important;
    width: min(100% - 32px, 100%) !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body.post-type-archive-product main.em-main > .woocommerce-result-count,
  body.woocommerce-shop main.em-main > .woocommerce-result-count,
  body.tax-product_cat main.em-main > .woocommerce-result-count {
    margin-bottom: 14px !important;
  }

  body.post-type-archive-product main.em-main > .woocommerce-ordering,
  body.woocommerce-shop main.em-main > .woocommerce-ordering,
  body.tax-product_cat main.em-main > .woocommerce-ordering {
    margin-bottom: 24px !important;
  }

  body.post-type-archive-product main.em-main > .woocommerce-ordering select.orderby,
  body.woocommerce-shop main.em-main > .woocommerce-ordering select.orderby,
  body.tax-product_cat main.em-main > .woocommerce-ordering select.orderby {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Final checkout note contrast and product feature-card responsiveness. */
.woocommerce-checkout .em-checkout-notes,
.woocommerce-cart .em-checkout-notes,
.woocommerce-order-received .em-checkout-notes,
.woocommerce-view-order .em-checkout-notes {
  border-color: rgba(13, 139, 255, .45);
  background: #10223A;
  color: #D6DCE5;
}

.woocommerce-checkout .em-checkout-notes p,
.woocommerce-cart .em-checkout-notes p,
.woocommerce-order-received .em-checkout-notes p,
.woocommerce-view-order .em-checkout-notes p {
  color: #D6DCE5 !important;
}

.woocommerce-checkout .em-checkout-notes strong,
.woocommerce-cart .em-checkout-notes strong,
.woocommerce-order-received .em-checkout-notes strong,
.woocommerce-view-order .em-checkout-notes strong {
  color: #FFFFFF !important;
}

.woocommerce-checkout .em-checkout-notes a,
.woocommerce-cart .em-checkout-notes a,
.woocommerce-order-received .em-checkout-notes a,
.woocommerce-view-order .em-checkout-notes a {
  color: #0D8BFF !important;
}

.em-checkout-notes ::selection {
  background: #0D8BFF;
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .single-product div.product div.summary .em-grid.cols-3.em-product-feature-grid,
  .single-product div.product div.summary .em-product-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100%;
    gap: 16px;
  }

  .single-product div.product div.summary .em-product-feature-grid > .em-card,
  .single-product .em-product-feature-grid > .em-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 22px;
    overflow: visible;
  }

  .single-product .em-product-feature-grid > .em-card h3,
  .single-product .em-product-feature-grid > .em-card p {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
  }
}

/* Final checkout label visibility and contact image framing. */
.woocommerce-checkout form.checkout .form-row label,
.woocommerce-checkout #customer_details .form-row label {
  color: #10223A !important;
  font-family: inherit;
  font-weight: 700;
}

.woocommerce-checkout form.checkout .form-row label .required,
.woocommerce-checkout #customer_details .form-row label .required {
  color: #0D8BFF !important;
  opacity: 1;
}

@media (max-width: 820px) {
  .em-contact-media-split .em-content-page-image {
    width: 100%;
    height: clamp(440px, 78vw, 620px);
    min-height: 440px;
    overflow: hidden;
  }

  .em-contact-media-split .em-content-page-image img,
  .em-contact-media-split img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 480px) {
  .em-contact-media-split .em-content-page-image {
    height: clamp(430px, 125vw, 560px);
    min-height: 430px;
  }
}

.woocommerce-checkout #ship-to-different-address,
.woocommerce-checkout #ship-to-different-address label,
.woocommerce-checkout #ship-to-different-address span {
  color: #10223A !important;
}

/* Premium WooCommerce order-received layout. Scoped to the existing Thank You page. */
body.woocommerce-order-received .em-main {
  background: #F5F7FA;
}

body.woocommerce-order-received .em-page-content {
  padding: 24px 0;
}

body.woocommerce-order-received .em-page-content > .em-wrap {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

body.woocommerce-order-received .woocommerce-order {
  display: grid;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #10223A;
}

body.woocommerce-order-received .woocommerce-thankyou-order-received,
body.woocommerce-order-received .woocommerce-thankyou-order-failed {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px 20px;
  margin: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(13, 139, 255, .22);
  border-radius: 16px;
  background: #FFFFFF;
  color: #10223A;
  box-shadow: 0 20px 55px rgba(16, 34, 58, .09);
  line-height: 1.45;
}

body.woocommerce-order-received .em-order-confirmation__icon {
  display: inline-flex;
  grid-column: 1;
  grid-row: 1;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 5px solid rgba(13, 139, 255, .18);
  border-radius: 50%;
  background: #10223A;
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(16, 34, 58, .18);
  font-size: 27px;
  font-weight: 900;
}

body.woocommerce-order-received .em-order-confirmation__copy {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  gap: 3px;
}

body.woocommerce-order-received .em-order-confirmation__title {
  color: #10223A;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
}

body.woocommerce-order-received .em-order-confirmation__message {
  color: #526278;
  font-size: 15px;
  font-weight: 600;
}

body.woocommerce-order-received .em-order-confirmation__steps {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

body.woocommerce-order-received .em-order-confirmation__steps > span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid #D6DCE5;
  border-radius: 9px;
  background: #F5F7FA;
  color: #334A65;
  font-size: 12px;
  font-weight: 800;
}

body.woocommerce-order-received .em-order-confirmation__steps i {
  display: inline-flex;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0D8BFF;
  color: #FFFFFF;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

body.woocommerce-order-received ul.woocommerce-order-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0;
  border: 1px solid #D6DCE5;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 16px 40px rgba(16, 34, 58, .07);
}

body.woocommerce-order-received ul.woocommerce-order-overview::before,
body.woocommerce-order-received ul.woocommerce-order-overview::after {
  display: none !important;
  content: none !important;
}

body.woocommerce-order-received ul.woocommerce-order-overview li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  float: none;
  min-width: 0;
  margin: 0;
  padding: 20px;
  border: 0;
  border-right: 1px solid #D6DCE5;
  border-bottom: 1px solid #D6DCE5;
  background: #FFFFFF;
  color: #66758A;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .08em;
}

body.woocommerce-order-received ul.woocommerce-order-overview li strong {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 7px;
  color: #10223A;
  font-size: 15px;
  letter-spacing: 0;
}

body.woocommerce-order-received .em-payment-instructions {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(13, 139, 255, .55);
  border-radius: 18px;
  background: linear-gradient(145deg, #10223A 0%, #183654 100%);
  color: #DCE6F0;
  box-shadow: 0 24px 60px rgba(16, 34, 58, .2);
}

body.woocommerce-order-received .em-payment-instructions::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  top: -150px;
  right: -90px;
  border-radius: 50%;
  background: rgba(13, 139, 255, .18);
}

body.woocommerce-order-received .em-payment-instructions__header,
body.woocommerce-order-received .em-payment-instructions__notice,
body.woocommerce-order-received .em-payment-methods,
body.woocommerce-order-received .em-payment-instructions__support {
  position: relative;
  z-index: 1;
}

body.woocommerce-order-received .em-payment-instructions__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #67BCFF;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body.woocommerce-order-received .em-payment-instructions h2 {
  margin: 0 0 10px;
  color: #FFFFFF;
  font-size: clamp(25px, 4vw, 38px);
}

body.woocommerce-order-received .em-payment-instructions__header p {
  margin: 0;
  color: #DCE6F0;
}

body.woocommerce-order-received .em-payment-instructions__notice {
  margin: 22px 0;
  padding: 14px 16px;
  border: 1px solid rgba(103, 188, 255, .35);
  border-radius: 10px;
  background: rgba(13, 139, 255, .12);
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.55;
}

body.woocommerce-order-received .em-payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.woocommerce-order-received .em-payment-method-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: #FFFFFF;
  color: #10223A;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .14);
}

body.woocommerce-order-received .em-payment-method-card__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

body.woocommerce-order-received .em-payment-method-card__heading img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

body.woocommerce-order-received .em-payment-method-card__heading h3 {
  margin: 0;
  color: #10223A;
  font-size: 18px;
}

body.woocommerce-order-received .em-payment-copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 14px;
  border: 1px solid #D6DCE5;
  border-radius: 10px;
  background: #F5F7FA;
}

body.woocommerce-order-received .em-payment-copy-value {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #10223A;
  font-size: clamp(17px, 3vw, 21px);
  letter-spacing: .02em;
}

body.woocommerce-order-received .em-copy-payment-value {
  flex: 0 0 auto;
  min-width: 72px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid #0D8BFF;
  border-radius: 8px;
  background: #0D8BFF;
  color: #FFFFFF;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

body.woocommerce-order-received .em-copy-payment-value:hover,
body.woocommerce-order-received .em-copy-payment-value:focus-visible,
body.woocommerce-order-received .em-copy-payment-value.is-copied {
  border-color: #10223A;
  background: #10223A;
  color: #FFFFFF;
}

body.woocommerce-order-received .em-copy-payment-value:hover {
  transform: translateY(-1px);
}

body.woocommerce-order-received .em-copy-payment-value:focus-visible {
  outline: 3px solid rgba(13, 139, 255, .28);
  outline-offset: 2px;
}

body.woocommerce-order-received .em-payment-account-name,
body.woocommerce-order-received .em-payment-memo {
  margin: 12px 0 0;
  color: #526278;
  line-height: 1.5;
}

body.woocommerce-order-received .em-payment-memo strong {
  color: #10223A;
}

body.woocommerce-order-received .em-payment-instructions__support {
  margin: 22px 0 0;
  color: #DCE6F0;
}

body.woocommerce-order-received .em-payment-instructions__support a {
  color: #67BCFF;
  font-weight: 800;
}

body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details {
  margin: 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid #D6DCE5;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 16px 40px rgba(16, 34, 58, .07);
}

body.woocommerce-order-received .woocommerce-order-details__title,
body.woocommerce-order-received .woocommerce-column__title {
  margin: 0 0 20px;
  color: #10223A;
  font-size: clamp(22px, 3vw, 30px);
}

body.woocommerce-order-received table.woocommerce-table--order-details {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid #D6DCE5 !important;
  border-radius: 12px;
  background: #FFFFFF;
}

body.woocommerce-order-received table.woocommerce-table--order-details th,
body.woocommerce-order-received table.woocommerce-table--order-details td {
  padding: 15px 16px;
  border-color: #E5E9EF !important;
  color: #10223A;
}

body.woocommerce-order-received table.woocommerce-table--order-details thead th {
  background: #10223A;
  color: #FFFFFF;
}

body.woocommerce-order-received table.woocommerce-table--order-details a {
  color: #0D70CC;
  font-weight: 800;
}

body.woocommerce-order-received .woocommerce-customer-details address {
  margin: 0;
  padding: 20px;
  border: 1px solid #D6DCE5;
  border-radius: 12px;
  background: #F5F7FA;
  color: #10223A;
  font-style: normal;
  line-height: 1.8;
}

body.woocommerce-order-received .woocommerce-customer-details address p {
  color: #526278;
}

@media (max-width: 760px) {
  body.woocommerce-order-received .em-order-confirmation__steps,
  body.woocommerce-order-received .em-payment-methods {
    grid-template-columns: 1fr 1fr;
  }

  body.woocommerce-order-received .em-order-confirmation__steps > span:last-child {
    grid-column: 1 / -1;
  }

  body.woocommerce-order-received table.woocommerce-table--order-details {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 520px) {
  body.woocommerce-order-received .em-page-content {
    padding: 16px 0;
  }

  body.woocommerce-order-received .em-page-content > .em-wrap {
    width: min(100% - 24px, 1120px);
  }

  body.woocommerce-order-received .woocommerce-thankyou-order-received,
  body.woocommerce-order-received .woocommerce-thankyou-order-failed {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  body.woocommerce-order-received .em-order-confirmation__icon,
  body.woocommerce-order-received .em-order-confirmation__copy {
    grid-column: 1;
    grid-row: auto;
  }

  body.woocommerce-order-received .em-order-confirmation__steps,
  body.woocommerce-order-received ul.woocommerce-order-overview,
  body.woocommerce-order-received .em-payment-methods {
    grid-template-columns: 1fr;
  }

  body.woocommerce-order-received .em-order-confirmation__steps > span:last-child {
    grid-column: auto;
  }

  body.woocommerce-order-received .em-payment-copy-row {
    align-items: stretch;
    flex-direction: column;
  }

  body.woocommerce-order-received .em-copy-payment-value {
    width: 100%;
  }

  body.woocommerce-order-received table.woocommerce-table--order-details th,
  body.woocommerce-order-received table.woocommerce-table--order-details td {
    padding: 12px;
  }
}
