body.hx-commerce-overlay-open { overflow: hidden; }

.hx-cart-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 180;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: #fff;
  background: #ff5b00;
  box-shadow: 0 16px 36px rgba(255,91,0,.34);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.hx-cart-launcher:hover { background: #ff6d1f; transform: translateY(-3px); }
.hx-cart-launcher i { font-size: 20px; }
.hx-cart-count {
  position: absolute;
  top: -5px;
  right: -3px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: #111318;
  font: 800 10px/1 Roboto,Arial,sans-serif;
}
.hx-cart-launcher.is-bumping { animation: hx-cart-bump .45s ease; }

.hx-cart-backdrop,
.hx-auth-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  background: rgba(4,5,7,.72);
  backdrop-filter: blur(7px);
  transition: opacity .25s ease, visibility .25s ease;
}
.hx-cart-backdrop.is-open,
.hx-auth-backdrop.is-open { opacity: 1; visibility: visible; }

.hx-cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 210;
  display: grid;
  width: min(440px,100vw);
  grid-template-rows: auto 1fr auto;
  color: #15171b;
  background: #fff;
  box-shadow: -20px 0 60px rgba(0,0,0,.28);
  transform: translateX(104%);
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.hx-cart-drawer.is-open { transform: translateX(0); }
.hx-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 24px;
  color: #fff;
  background: #0b0c0e;
  border-bottom: 3px solid #ff5b00;
}
.hx-cart-head div { display: grid; gap: 2px; }
.hx-cart-head strong { font: 700 22px/1 Oswald,Arial,sans-serif; text-transform: uppercase; }
.hx-cart-head span { color: #9ca1aa; font-size: 11px; }
.hx-icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}
.hx-cart-items { overflow-y: auto; padding: 8px 24px 24px; }
.hx-cart-empty { display: grid; min-height: 360px; place-items: center; align-content: center; color: #777d86; text-align: center; }
.hx-cart-empty i { margin-bottom: 16px; color: #d6d9de; font-size: 54px; }
.hx-cart-empty strong { margin-bottom: 6px; color: #25282d; font: 700 22px/1.2 Oswald,Arial,sans-serif; text-transform: uppercase; }
.hx-cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #e6e8eb;
}
.hx-cart-item img { width: 84px; height: 84px; object-fit: contain; border-radius: 4px; background: #0c0e11; }
.hx-cart-item__copy { display: grid; align-content: start; gap: 5px; }
.hx-cart-item__copy strong { font: 700 15px/1.25 Oswald,Arial,sans-serif; text-transform: uppercase; }
.hx-cart-item__copy small { color: #777d86; }
.hx-cart-item__price { color: #e85100; font-weight: 900; }
.hx-cart-item__remove { align-self: start; border: 0; color: #969ba3; background: transparent; cursor: pointer; }
.hx-cart-foot { padding: 22px 24px 26px; border-top: 1px solid #e2e4e8; background: #f8f9fa; }
.hx-cart-summary { display: flex; align-items: end; justify-content: space-between; margin-bottom: 16px; }
.hx-cart-summary span { color: #6e747d; font-size: 12px; }
.hx-cart-summary strong { font: 700 30px/1 Oswald,Arial,sans-serif; }
.hx-cart-foot .hx-btn { width: 100%; border-radius: 4px; }
.hx-cart-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hx-cart-actions .hx-btn { min-height: 48px; padding-inline: 12px; font: 700 12px/1.15 Oswald,Arial,sans-serif; text-transform: uppercase; }
.hx-btn--cart-secondary { border-color: #292c31; color: #202329; background: #fff; }
.hx-btn--cart-secondary:hover { color: #fff; background: #202329; }
.hx-cart-payments { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 17px; padding-top: 15px; border-top: 1px solid #e0e3e7; }
.hx-cart-payments > span { flex: 0 0 auto; color: #666d77; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.hx-cart-payment-logos { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.hx-cart-payment-logos img { width: 47px; height: 29px; padding: 6px; object-fit: contain; border: 1px solid #d9dce1; border-radius: 4px; background: #fff; }
.hx-cart-foot p { margin: 11px 0 0; color: #858b94; font-size: 10px; text-align: center; }

.hx-auth-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 220;
  width: min(920px,calc(100vw - 32px));
  max-height: min(760px,calc(100vh - 32px));
  overflow: auto;
  border: 1px solid #31343a;
  border-radius: 7px;
  color: #fff;
  background: #101216;
  box-shadow: 0 28px 90px rgba(0,0,0,.48);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%,-47%) scale(.97);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}
.hx-auth-dialog.is-open { opacity: 1; visibility: visible; transform: translate(-50%,-50%) scale(1); }
.hx-auth-layout { display: grid; grid-template-columns: .86fr 1.14fr; }
.hx-auth-aside {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  padding: 42px 36px;
  background: linear-gradient(155deg,rgba(255,91,0,.95),rgba(168,47,0,.96)), url("assets/images/hero-reference-style.png") center/cover;
}
.hx-auth-aside::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.54)); }
.hx-auth-aside > * { position: relative; z-index: 1; }
.hx-auth-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 78px; font: 700 18px/1 Oswald,Arial,sans-serif; }
.hx-auth-brand b { color: #fff; font-size: 32px; letter-spacing: -2px; }
.hx-auth-aside h2 { max-width: 9ch; margin: 0 0 18px; font: 700 clamp(36px,5vw,56px)/.98 Oswald,Arial,sans-serif; text-transform: uppercase; }
.hx-auth-aside p { max-width: 30ch; color: rgba(255,255,255,.86); font-size: 13px; }
.hx-auth-benefits { display: grid; gap: 11px; margin-top: 28px; padding: 0; list-style: none; font-size: 12px; font-weight: 700; }
.hx-auth-benefits i { width: 22px; }
.hx-auth-main { position: relative; min-height: 580px; padding: 38px 42px; background: #fff; color: #17191d; }
.hx-auth-close { position: absolute; top: 18px; right: 18px; border-color: #ddd; color: #333; }
.hx-auth-main h3 { margin: 0 0 7px; font: 700 30px/1.1 Oswald,Arial,sans-serif; text-transform: uppercase; }
.hx-auth-intro { margin: 0 0 25px; color: #707680; font-size: 13px; }
.hx-auth-tabs { display: grid; grid-template-columns: repeat(2,1fr); margin-bottom: 24px; border-bottom: 1px solid #dfe2e6; }
.hx-auth-tab { padding: 12px 5px; border: 0; border-bottom: 3px solid transparent; color: #7a8089; background: transparent; font: 700 12px/1 Oswald,Arial,sans-serif; text-transform: uppercase; cursor: pointer; }
.hx-auth-tab.is-active { border-color: #ff5b00; color: #e24f00; }
.hx-auth-panel[hidden] { display: none; }
.hx-auth-field { display: grid; gap: 7px; margin-bottom: 15px; }
.hx-auth-field label { font-size: 12px; font-weight: 800; }
.hx-auth-field input { width: 100%; min-height: 48px; padding: 0 14px; border: 1px solid #ccd0d6; border-radius: 4px; outline: 0; }
.hx-auth-field input:focus { border-color: #ff5b00; box-shadow: 0 0 0 3px rgba(255,91,0,.12); }
.hx-auth-submit { width: 100%; margin-top: 6px; border-radius: 4px; }
.hx-auth-note { margin: 14px 0 0; color: #888e97; font-size: 10px; line-height: 1.6; }
.hx-guest-card { padding: 24px; border: 1px solid #e0e2e6; border-radius: 5px; background: #f7f8fa; }
.hx-guest-card i { display: grid; width: 44px; height: 44px; margin-bottom: 18px; place-items: center; border-radius: 50%; color: #fff; background: #17191d; }
.hx-guest-card h4 { margin: 0 0 8px; font: 700 21px/1.2 Oswald,Arial,sans-serif; text-transform: uppercase; }
.hx-guest-card p { margin: 0 0 18px; color: #6d737c; font-size: 12px; }
.hx-auth-success { display: grid; min-height: 290px; place-items: center; align-content: center; text-align: center; }
.hx-auth-success i { display: grid; width: 62px; height: 62px; margin-bottom: 18px; place-items: center; border-radius: 50%; color: #fff; background: #1f9659; font-size: 25px; }
.hx-auth-success strong { font: 700 25px/1.2 Oswald,Arial,sans-serif; text-transform: uppercase; }
.hx-auth-success span { margin-top: 7px; color: #747a83; font-size: 12px; }

.hx-login-success-page { min-height: 100vh; background: #090b0e; color: #fff; }
.hx-login-success-page .hx-header { position: relative; }
.hx-login-success-main { display: grid; min-height: calc(100vh - 94px); place-items: center; padding: 56px 20px; background: #090b0e; }
.hx-login-success-card { width: min(620px,100%); padding: clamp(36px,6vw,66px); border: 1px solid rgba(255,255,255,.14); border-top: 4px solid #ff5b00; border-radius: 6px; background: #15181d; box-shadow: 0 30px 90px rgba(0,0,0,.5); text-align: center; }
.hx-login-success-icon { display: grid; width: 76px; height: 76px; margin: 0 auto 24px; place-items: center; border-radius: 50%; color: #fff; background: #1f9659; font-size: 31px; box-shadow: 0 0 0 9px rgba(31,150,89,.13); }
.hx-login-success-card .hx-eyebrow { margin-bottom: 12px; color: #ff6a1a; }
.hx-login-success-card h1 { margin: 0; font: 700 clamp(37px,7vw,62px)/.98 Oswald,Arial,sans-serif; letter-spacing: -.02em; text-transform: uppercase; }
.hx-login-success-message { max-width: 42ch; margin: 18px auto 0; color: #c6c9ce; font-size: 14px; line-height: 1.7; }
.hx-login-success-email { color: #fff; font-weight: 800; }
.hx-login-success-countdown { margin: 28px 0 20px; color: #9fa4ac; font-size: 13px; }
.hx-login-success-countdown strong { color: #ff6a1a; font: 700 24px/1 Oswald,Arial,sans-serif; }
.hx-login-success-progress { height: 4px; margin: 0 auto 26px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.12); }
.hx-login-success-progress span { display: block; width: 100%; height: 100%; background: #ff5b00; transform-origin: left; animation: hx-countdown-progress 3s linear forwards; }
.hx-login-success-card .hx-btn { min-width: 230px; }
@keyframes hx-countdown-progress { to { transform: scaleX(0); } }

.hx-price-gated .hx-live-price,
.hx-price-gated .hx-tier-table,
.hx-price-gated .hx-order-box,
.hx-price-gated .hx-buy-actions { filter: blur(7px); pointer-events: none; user-select: none; }
.hx-price-gated::after {
  content: "Choose a login option to unlock wholesale pricing";
  display: block;
  margin-top: -260px;
  padding: 18px;
  color: #fff;
  background: #111318;
  font: 700 14px/1.4 Oswald,Arial,sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.hx-fly-image { position: fixed; z-index: 500; margin: 0; object-fit: contain; border-radius: 8px; background: #0b0d10; box-shadow: 0 12px 32px rgba(0,0,0,.3); pointer-events: none; transition: left .72s cubic-bezier(.2,.8,.2,1), top .72s cubic-bezier(.2,.8,.2,1), width .72s ease, height .72s ease, opacity .72s ease, transform .72s ease; }
.hx-session-chip { position: fixed; right: 91px; bottom: 29px; z-index: 179; display: flex; align-items: center; gap: 7px; max-width: 180px; padding: 8px 12px; border: 1px solid #dddfe3; border-radius: 999px; color: #555b64; background: rgba(255,255,255,.96); box-shadow: 0 9px 24px rgba(0,0,0,.12); font-size: 10px; font-weight: 800; }
.hx-session-chip i { color: #ff5b00; }

@keyframes hx-cart-bump { 0%,100%{transform:scale(1)} 42%{transform:scale(1.18) rotate(-7deg)} }

@media (max-width: 700px) {
  .hx-cart-launcher { right: 14px; bottom: 14px; }
  .hx-session-chip { display: none; }
  .hx-auth-layout { grid-template-columns: 1fr; }
  .hx-auth-aside { min-height: 190px; padding: 25px 24px; }
  .hx-auth-brand { margin-bottom: 28px; }
  .hx-auth-aside h2 { max-width: 15ch; font-size: 32px; }
  .hx-auth-aside p,.hx-auth-benefits { display: none; }
  .hx-auth-main { min-height: 430px; padding: 30px 22px 24px; }
  .hx-auth-main h3 { padding-right: 42px; }
  .hx-auth-tabs { grid-template-columns: 1fr 1fr; }
  .hx-cart-item { grid-template-columns: 72px 1fr auto; }
  .hx-cart-item img { width: 72px; height: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  .hx-cart-launcher,.hx-cart-backdrop,.hx-auth-backdrop,.hx-cart-drawer,.hx-auth-dialog,.hx-fly-image { transition: none; animation: none; }
  .hx-login-success-progress span { animation: none; }
}

@media (max-width: 420px) {
  .hx-cart-payments { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 360px) { .hx-cart-actions { grid-template-columns: 1fr; } }
