:root {
  --red: #c1272d;
  --red-dark: #8b0000;
  --black: #111;
  --ink: #202020;
  --muted: #666;
  --line: #dedede;
  --paper: #fff;
  --soft: #f5f5f5;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.vo-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: #fff;
  background: #181818;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.vo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
  padding: 0.65rem max(22px, calc((100vw - 1280px) / 2));
  background: linear-gradient(90deg, var(--red), #d51d2a 62%, #8b0000);
}

.vo-topbar p,
.vo-topbar a {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  text-decoration: none;
}

.vo-login-link::before {
  content: "Lock";
  display: inline-block;
  margin-right: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.vo-account-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vo-account-links a:last-child {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.vo-mega-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 108px;
  padding: 0 max(22px, calc((100vw - 1280px) / 2));
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 32%),
    #1f1f1f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-menu-toggle {
  display: flex;
  align-items: center;
  min-width: 0;
}

.mega-toggle-blocks-left,
.mega-toggle-blocks-right {
  display: flex;
  align-items: center;
}

.mega-toggle-blocks-right {
  display: none;
  margin-left: auto;
}

.mega-menu-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
}

.mega-menu-logo img {
  display: block;
  width: clamp(150px, 18vw, 220px);
  height: auto;
}

.mega-menu-logo span {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.mega-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-menu > .mega-menu-item {
  position: relative;
}

.mega-menu > .mega-hide-on-mobile {
  display: none;
}

.mega-menu-link {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 0.8rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.mega-menu-link:hover,
.mega-menu-link:focus-visible {
  color: #fff;
  background: rgba(193, 39, 45, 0.22);
  outline: 1px solid rgba(193, 39, 45, 0.5);
  outline-offset: -1px;
}

.mega-hide-on-mobile .mega-menu-logo img {
  width: 190px;
}

.mega-menu-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  margin-left: 0.35rem;
  padding: 0.17rem 0.38rem;
  color: #fff;
  background: var(--red);
  border-radius: 2px;
  line-height: 1;
}

.mega-menu-woo-cart-count,
.mega-menu-woo-cart-total {
  color: #fff;
  font-weight: 900;
}

.mega-toggle-animated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  cursor: pointer;
}

.mega-toggle-animated-box,
.mega-toggle-animated-inner,
.mega-toggle-animated-inner::before,
.mega-toggle-animated-inner::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.mega-toggle-animated-box {
  position: relative;
  background: transparent;
}

.mega-toggle-animated-inner {
  position: absolute;
  left: 0;
  top: 50%;
}

.mega-toggle-animated-inner::before,
.mega-toggle-animated-inner::after {
  content: "";
  position: absolute;
  left: 0;
}

.mega-toggle-animated-inner::before {
  top: -7px;
}

.mega-toggle-animated-inner::after {
  top: 7px;
}

.mega-toggle-animated[aria-expanded="true"] .mega-toggle-animated-inner {
  background: transparent;
}

.mega-toggle-animated[aria-expanded="true"] .mega-toggle-animated-inner::before,
.mega-toggle-animated[aria-expanded="true"] .mega-toggle-animated-inner::after {
  top: 0;
}

.mega-toggle-animated[aria-expanded="true"] .mega-toggle-animated-inner::before {
  transform: rotate(45deg);
}

.mega-toggle-animated[aria-expanded="true"] .mega-toggle-animated-inner::after {
  transform: rotate(-45deg);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(193, 39, 45, 0.28), transparent 36%),
    rgba(0, 0, 0, 0.88);
}

.age-gate[hidden] {
  display: none;
}

.age-gate-panel {
  width: min(520px, 100%);
  padding: 2rem;
  color: #fff;
  background: #151515;
  border: 2px solid rgba(193, 39, 45, 0.8);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
  text-align: center;
}

.age-gate-panel img {
  width: min(250px, 78%);
  margin-bottom: 1.1rem;
}

.age-gate-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.age-gate-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.age-gate-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.age-denied-message {
  margin-top: 1.2rem;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

body.age-gate-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0 28px;
  color: #fff;
  background: #171717;
  border-top: 6px solid var(--red);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(150px, 18vw, 198px);
  height: auto;
  flex: 0 0 auto;
}

.brand-site-name {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem 1rem;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a {
  padding: 0.45rem 0;
  text-decoration: none;
}

.cart-nav-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  min-height: 1.35rem;
  margin-left: 0.25rem;
  padding: 0 0.28rem;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-size: 0.72rem;
  line-height: 1;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
  min-height: 610px;
  padding: 72px max(24px, calc((100vw - 1160px) / 2));
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.97), rgba(21, 21, 21, 0.9)),
    radial-gradient(circle at 80% 28%, rgba(193, 39, 45, 0.32), transparent 32%),
    #111;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-section h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(2.55rem, 5.6vw, 5.65rem);
  line-height: 0.94;
}

.hero-lead {
  max-width: 650px;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.76rem 1rem;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.button-secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.button:hover,
.button:focus-visible {
  color: #fff;
  border-color: #fff;
  outline: none;
}

.hero-art {
  position: relative;
  min-height: 350px;
}

.ring {
  position: absolute;
  border-radius: 50%;
}

.ring-one {
  right: 36px;
  top: 18px;
  width: 230px;
  aspect-ratio: 1;
  border: 24px solid rgba(193, 39, 45, 0.25);
}

.ring-two {
  left: 42px;
  bottom: 22px;
  width: 120px;
  aspect-ratio: 1;
  border: 14px solid rgba(255, 255, 255, 0.08);
}

.suppressor-body {
  position: absolute;
  right: 0;
  bottom: 112px;
  width: min(470px, 100%);
  height: 94px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 18px, transparent 18px 42px),
    linear-gradient(90deg, #2f2f2f, #070707 48%, #292929);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.suppressor-body::before,
.suppressor-body::after {
  content: "";
  position: absolute;
  top: 14px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, #0a0a0a 0 28%, #343434 29% 60%, #050505 61%);
}

.suppressor-body::before {
  left: 14px;
}

.suppressor-body::after {
  right: 14px;
}

.suppressor-shadow {
  position: absolute;
  right: 20px;
  bottom: 78px;
  width: min(430px, 90%);
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.44);
  filter: blur(10px);
}

.compliance-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--red);
}

.compliance-strip div {
  min-width: 0;
  padding: 1rem max(20px, calc((100vw - 1160px) / 2 / 3));
  color: #fff;
  background: rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.compliance-strip strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compliance-strip span {
  line-height: 1.36;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.contact-section h2 {
  color: #141414;
  font-size: clamp(1.85rem, 3.1vw, 3.05rem);
  line-height: 1;
}

.section-heading p:not(.eyebrow),
.contact-section p {
  margin: 0.82rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
}

.partner-card,
.product-card,
.process-grid article {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--line);
  border-top-color: var(--red);
  border-radius: 8px;
}

.partner-card {
  width: 100%;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
}

.partner-card:hover,
.partner-card:focus-visible {
  border-color: var(--red);
  outline: 3px solid rgba(193, 39, 45, 0.16);
  outline-offset: 2px;
}

.partner-card-featured {
  display: grid;
  grid-template-rows: auto 1fr;
}

.partner-card-rank {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fafafa;
}

.partner-card img {
  display: block;
  width: 100%;
  height: clamp(150px, 12vw, 190px);
  object-fit: cover;
  object-position: center;
  background: #111;
  scale: 1;
  transition: scale 240ms ease, filter 240ms ease;
}

.partner-card-rank img {
  object-position: center;
}

.partner-card > img:hover,
.partner-card:hover > img,
.partner-card:focus-within > img {
  scale: 1.06 !important;
  filter: contrast(1.04) !important;
}

.partner-card > div,
.partner-card-rank {
  padding: 1.25rem;
}

.partner-card-rank {
  padding: 0;
}

.card-label {
  margin: 0 0 0.35rem;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-card h3,
.product-card h3,
.process-grid h3 {
  margin: 0 0 0.45rem;
  color: #111;
  font-size: 1.45rem;
  line-height: 1.1;
}

.partner-card p,
.product-card p,
.process-grid p {
  color: #555;
  line-height: 1.5;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.38rem 0.55rem;
  color: #222;
  background: #f4f4f4;
  border: 1px solid #dfdfdf;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1;
}

.partner-card-action {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-section {
  border-top: 1px solid var(--line);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(190px, 0.34fr) minmax(190px, 0.34fr);
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.search-box,
.filter-box {
  display: grid;
  gap: 0.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-box span,
.filter-box span {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.search-box input,
.filter-box select {
  width: 100%;
  min-height: 44px;
  padding: 0.6rem 0.7rem;
  color: #222;
  background: #fff;
  border: 2px solid #d7d7d7;
  border-radius: 4px;
  font: inherit;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.product-image-button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #111;
  border: 0;
  border-bottom: 1px solid #e8e8e8;
  cursor: zoom-in;
}

.product-image-button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -3px;
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #111;
  border-bottom: 1px solid #e8e8e8;
  scale: 1;
  transition: scale 240ms ease, filter 240ms ease;
}

.product-image-button:hover img,
.product-image-button:focus-visible img {
  scale: 1.07 !important;
  filter: contrast(1.04) !important;
}

.product-card-body {
  padding: 1rem;
}

.product-card h3 {
  font-size: 1.1rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.9rem 0;
}

.product-meta span {
  padding: 0.28rem 0.45rem;
  color: #fff;
  background: #191919;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-meta .wait-time-chip {
  background: var(--red);
}

.stock-counts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0.9rem 0;
}

.stock-count {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
  padding: 0.62rem 0.7rem;
  background: #f4f4f4;
  border: 1px solid #dedede;
  border-radius: 4px;
}

.stock-count span {
  color: #666;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stock-count strong {
  color: #111;
  font-size: 1.08rem;
  line-height: 1;
}

.stock-count-backorder {
  border-color: rgba(193, 39, 45, 0.32);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e9e9e9;
}

.price {
  color: var(--red);
  font-size: 1.22rem;
  font-weight: 900;
}

.order-link,
.text-button {
  color: #111;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.text-button {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.order-link:hover,
.order-link:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  color: var(--red);
  outline: none;
}

.text-button:disabled {
  color: #9b9b9b;
  cursor: not-allowed;
}

.text-button-danger {
  color: #b42318;
}

.text-button-danger:hover,
.text-button-danger:focus-visible {
  color: #7a1510;
}

.cart-add-button,
.cart-item-actions button:not(.text-button) {
  min-height: 36px;
  padding: 0.5rem 0.7rem;
  color: #fff;
  background: #171717;
  border: 2px solid #171717;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.cart-add-button:hover,
.cart-add-button:focus-visible,
.cart-item-actions button:not(.text-button):hover,
.cart-item-actions button:not(.text-button):focus-visible {
  background: var(--red);
  border-color: var(--red);
  outline: none;
}

.cart-section {
  border-top: 1px solid var(--line);
}

.order-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.order-flow article {
  min-width: 0;
  padding: 1rem;
  background: #171717;
  border-top: 3px solid var(--red);
  border-radius: 8px;
}

.order-flow span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--red);
  font-weight: 900;
}

.order-flow strong {
  display: block;
  color: #fff;
  font-size: 1.02rem;
  text-transform: uppercase;
}

.order-flow p {
  margin: 0.42rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
  gap: 1rem;
  align-items: start;
}

.cart-panel,
.request-form,
.transfer-start-panel {
  border: 2px solid var(--line);
  border-top-color: var(--red);
  border-radius: 8px;
  background: #fff;
}

.cart-items {
  display: grid;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #e9e9e9;
}

.cart-item h3 {
  margin: 0 0 0.25rem;
  color: #111;
  font-size: 1.05rem;
  line-height: 1.1;
}

.cart-item p {
  margin: 0;
  color: #555;
  line-height: 1.45;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.cart-quantity {
  min-width: 2rem;
  text-align: center;
  font-weight: 900;
}

.cart-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  color: #111;
  font-weight: 900;
}

.checkout-breakdown {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  background: #f8f8f8;
  border-top: 1px solid #e9e9e9;
}

.checkout-breakdown p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  color: #111;
}

.checkout-breakdown p:nth-child(3) {
  padding-top: 0.45rem;
  border-top: 1px solid #dcdcdc;
  font-size: 1.05rem;
}

.checkout-breakdown small {
  color: var(--muted);
  line-height: 1.4;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem;
}

.request-form label {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.request-form label span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 0.58rem 0.68rem;
  color: #222;
  background: #fff;
  border: 2px solid #d7d7d7;
  border-radius: 4px;
  font: inherit;
}

.request-form textarea {
  resize: vertical;
}

.request-notes,
.request-form .button,
.form-note,
.confirmation-list {
  grid-column: 1 / -1;
}

.confirmation-list {
  display: grid;
  gap: 0.6rem;
  margin: 0.25rem 0 0;
  padding: 0.8rem;
  border: 2px solid #e4e4e4;
  border-radius: 6px;
}

.confirmation-list legend {
  padding: 0 0.25rem;
  color: #111;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confirmation-list label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: none;
}

.confirmation-list input {
  width: 1rem;
  min-height: 1rem;
  margin-top: 0.1rem;
  flex: 0 0 auto;
}

.confirmation-list label span {
  font-size: 0.92rem;
  letter-spacing: 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: #245f35;
  font-weight: 800;
  line-height: 1.4;
}

.form-status.is-error {
  color: var(--red-dark);
}

.is-disabled {
  opacity: 0.58;
}

.process-section {
  width: 100%;
  max-width: none;
  padding: 64px max(16px, calc((100vw - 1160px) / 2));
  color: #fff;
  background: #151515;
}

.process-section .section-heading,
.process-grid {
  width: min(1160px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.process-section h2,
.process-section h3 {
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-grid article {
  padding: 1.2rem;
  background: #202020;
  border-color: rgba(255, 255, 255, 0.12);
  border-top-color: var(--red);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--red);
  font-weight: 900;
}

.process-section .process-grid p {
  color: #e2e2e2;
  font-weight: 600;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 68px;
}

.contact-section h2 {
  overflow-wrap: anywhere;
}

.contact-section .button {
  flex: 0 0 auto;
}

.contact-dialog-panel {
  width: min(760px, calc(100vw - 32px));
}

.contact-fulfillment {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.2rem max(24px, calc((100vw - 1160px) / 2));
  color: #fff;
  background: #111;
  border-top: 6px solid var(--red);
}

@media (max-width: 980px) {
  .vo-topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 18px;
    padding-right: 18px;
  }

  .vo-mega-wrap {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .mega-menu-toggle {
    justify-content: space-between;
    min-height: 84px;
    padding: 0 18px;
  }

  .mega-toggle-blocks-right {
    display: flex;
  }

  .mega-menu-logo img {
    width: 168px;
  }

  .mega-menu {
    display: none;
    width: 100%;
    background: #181818;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mega-menu.is-open {
    display: block;
  }

  .mega-menu > .mega-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-menu-link {
    margin: 0;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
  }

  .mega-hide-on-mobile {
    display: none;
  }

  .site-header,
  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .brand-grid,
  .partner-card-featured,
  .catalog-toolbar,
  .cart-layout,
  .order-flow,
  .process-grid,
  .compliance-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero-art {
    min-height: 220px;
  }

  .suppressor-body {
    right: auto;
    left: 0;
    bottom: 58px;
  }
}

@media (max-width: 720px) {
  .catalog-toolbar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .vo-topbar p,
  .vo-topbar a {
    font-size: 0.84rem;
  }

  .age-gate-panel {
    padding: 1.35rem;
  }

  .age-gate-actions {
    flex-direction: column;
  }

  .site-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero,
  .section,
  .contact-section {
    width: auto;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .button {
    width: 100%;
  }

  .cart-item,
  .request-form {
    grid-template-columns: 1fr;
  }

  .cart-item-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-card img,
  .product-card img {
    transition: none;
  }

  .partner-card:hover > img,
  .partner-card > img:hover,
  .partner-card:focus-within > img,
  .product-image-button:hover img,
  .product-image-button:focus-visible img {
    scale: 1 !important;
    filter: none !important;
  }
}

/* Modern suppressor storefront refresh */
body {
  background:
    linear-gradient(180deg, #080808 0, #111 760px, #f2f2f2 760px, #f6f6f6 100%);
}

.vo-header {
  background: rgba(12, 12, 12, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.vo-topbar {
  min-height: 38px;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  background: #c1272d;
}

.vo-topbar p,
.vo-topbar a {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.vo-login-link::before {
  content: "";
  margin: 0;
}

.vo-mega-wrap {
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 82px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 28%),
    rgba(20, 20, 20, 0.92);
}

.mega-menu-logo img {
  width: clamp(132px, 15vw, 188px);
}

.mega-menu-logo span {
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.92rem;
}

.mega-menu-link {
  min-height: 42px;
  margin: 0 0.12rem;
  padding: 0 0.72rem;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.mega-menu-link:hover,
.mega-menu-link:focus-visible {
  background: rgba(193, 39, 45, 0.92);
  outline: none;
}

.mega-menu-badge {
  border-radius: 3px;
  background: #c1272d;
}

.hero {
  position: relative;
  isolation: isolate;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 120px);
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(52px, 7vw, 88px);
  overflow: hidden;
  background: #080808;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("hero-suppressor-display.webp");
  background-position: center 48%;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(0.72) contrast(1.08);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.97) 0%, rgba(6, 6, 6, 0.9) 34%, rgba(6, 6, 6, 0.56) 62%, rgba(6, 6, 6, 0.3) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 54%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(circle at 78% 32%, rgba(193, 39, 45, 0.2), transparent 38%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero h1 {
  max-width: 900px;
  font-size: 5.4rem;
  overflow-wrap: normal;
}

@media (max-width: 1220px) {
  .hero h1 {
    font-size: 4.55rem;
  }
}

.hero-lead {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.12rem;
}

.ring,
.suppressor-body,
.suppressor-shadow {
  display: none;
}

.compliance-strip {
  background: #141414;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compliance-strip div {
  background: transparent;
}

.section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.section-heading {
  max-width: 820px;
}

.partner-card,
.product-card,
.cart-panel,
.request-form,
.transfer-start-panel,
.process-grid article {
  border-width: 1px;
  border-color: #d9d9d9;
  border-top-color: #c1272d;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.partner-card img {
  height: clamp(180px, 18vw, 250px);
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 286px), 1fr));
  gap: 1.15rem;
}

.product-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 0.9rem;
  background:
    radial-gradient(circle at 52% 32%, rgba(255, 255, 255, 0.13), transparent 30%),
    #101010;
}

.product-card-body {
  padding: 1.1rem;
}

.price-row {
  align-items: stretch;
}

.order-link {
  display: inline-flex;
  align-items: center;
}

.cart-add-button {
  background: #c1272d;
  border-color: #c1272d;
}

.cart-add-button:hover,
.cart-add-button:focus-visible {
  background: #111;
  border-color: #111;
}

.cart-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1160px) / 2));
  padding-right: max(16px, calc((100vw - 1160px) / 2));
  background: #fff;
}

.cart-section > .section-heading,
.cart-section > .order-flow,
.cart-section > .cart-layout {
  width: min(1160px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.process-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(193, 39, 45, 0.25), transparent 28%),
    #111;
}

.contact-section {
  align-items: stretch;
}

.contact-section > div {
  min-width: 0;
}

@media (max-width: 980px) {
  body {
    background:
      linear-gradient(180deg, #080808 0, #111 690px, #f5f5f5 690px, #f6f6f6 100%);
  }

  .vo-topbar {
    display: none;
  }

  .vo-mega-wrap {
    background: rgba(16, 16, 16, 0.96);
  }

  .mega-menu-link {
    margin: 0;
    width: 100%;
  }

  .mega-menu-toggle {
    min-height: 70px;
  }

  .mega-menu-logo img {
    width: 138px;
  }

  .mega-menu-logo span {
    font-size: 0.82rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 42px;
    overflow: hidden;
  }

  .hero::before {
    background-position: 62% center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(6, 6, 6, 0.9) 0%, rgba(6, 6, 6, 0.82) 58%, rgba(6, 6, 6, 0.76) 100%),
      linear-gradient(90deg, rgba(6, 6, 6, 0.84) 0%, rgba(6, 6, 6, 0.52) 100%),
      radial-gradient(circle at 78% 22%, rgba(193, 39, 45, 0.2), transparent 36%);
  }

  .hero h1 {
    max-width: 100%;
    font-size: 4rem;
  }

}

@media (max-width: 560px) {
  .mega-menu-toggle {
    min-height: 64px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .mega-menu-logo {
    gap: 0.55rem;
  }

  .mega-menu-logo img {
    width: 118px;
  }

  .mega-menu-logo span {
    padding-left: 0.55rem;
    font-size: 0.76rem;
  }

  .hero h1 {
    font-size: 2.62rem;
    line-height: 0.98;
    overflow-wrap: normal;
  }

  .hero-product-frame {
    min-height: 220px;
    max-width: 100%;
  }

  .hero-product-frame img {
    width: 96%;
  }

  .section {
    width: calc(100% - 28px);
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .price-row {
    flex-direction: column;
    gap: 0.65rem;
  }

  .order-link {
    justify-content: center;
    min-height: 38px;
  }
}

.admin-page {
  background: #f3f3f3;
}

/* Valhalla Gun Shop transfer refresh */
body * {
  letter-spacing: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: #fff;
  text-decoration: none;
}

.mega-menu-logo.brand-lockup img,
.brand-lockup-gate img {
  width: 48px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy,
.mega-menu-logo .brand-copy {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
  padding: 0;
  border: 0;
  color: #fff;
  line-height: 1;
}

.brand-copy strong {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy small {
  color: #c1272d;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand-lockup-gate {
  justify-content: center;
  margin-bottom: 1.1rem;
}

.brand-lockup-gate img {
  width: 58px;
  height: 53px;
}

.brand-lockup-gate .brand-copy strong {
  font-size: 1.32rem;
}

.brand-lockup-gate .brand-copy small {
  font-size: 0.86rem;
}

.mega-hide-on-mobile .mega-menu-logo.brand-lockup img {
  width: 48px;
}

.catalog-scope {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.catalog-scope button {
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  color: #222;
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-scope button:hover,
.catalog-scope button:focus-visible,
.catalog-scope button.is-active {
  color: #fff;
  background: #c1272d;
  border-color: #c1272d;
  outline: none;
}

#catalogCount {
  margin-left: auto;
  color: #666;
  font-size: 0.88rem;
  font-weight: 800;
}

.product-meta .lineup-chip {
  color: #111;
  background: #fff;
  border: 1px solid #c1272d;
}

.product-option {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.9rem;
  color: #222;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-option select {
  width: 100%;
  min-height: 42px;
  padding: 0.55rem 0.65rem;
  color: #222;
  background: #fff;
  border: 2px solid #d7d7d7;
  border-radius: 4px;
  font: inherit;
}

.form-section-title {
  grid-column: 1 / -1;
  margin: 0.2rem 0 0;
  padding-bottom: 0.55rem;
  color: #111;
  border-bottom: 1px solid #e2e2e2;
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .mega-menu-logo.brand-lockup img,
  .mega-hide-on-mobile .mega-menu-logo.brand-lockup img {
    width: 42px;
    height: 40px;
  }

  .mega-menu-logo .brand-copy strong {
    font-size: 0.96rem;
  }

  .mega-menu-logo .brand-copy small {
    font-size: 0.7rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-lockup {
    gap: 0.48rem;
  }

  .mega-menu-logo.brand-lockup img {
    width: 38px;
    height: 36px;
  }

  .catalog-scope {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-scope button {
    width: 100%;
  }

  #catalogCount {
    grid-column: 1 / -1;
    margin-left: 0;
  }

}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox-panel {
  position: relative;
  display: grid;
  gap: 0.75rem;
  width: min(1120px, 96vw);
  max-height: 94vh;
}

.image-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  background: var(--red);
  outline: none;
}

.image-lightbox-stage {
  display: grid;
  place-items: center;
  width: 100%;
  max-height: 84vh;
  padding: 0;
  overflow: auto;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  cursor: zoom-in;
}

.image-lightbox-stage img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.image-lightbox.is-zoomed .image-lightbox-stage {
  place-items: start;
  cursor: zoom-out;
}

.image-lightbox.is-zoomed .image-lightbox-stage img {
  width: min(1800px, 175vw);
  max-width: none;
  max-height: none;
}

.image-lightbox-panel p {
  margin: 0;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

body.image-lightbox-open {
  overflow: hidden;
}

.transfer-start-panel {
  padding: 1.3rem;
  color: #111;
}

.transfer-start-panel h3 {
  margin: 0.2rem 0 0.65rem;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.transfer-start-panel > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.transfer-start-panel ul {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 1.2rem;
  padding-left: 1.15rem;
  color: #333;
  line-height: 1.4;
}

.transfer-start-panel .button {
  width: 100%;
}

.transfer-start-panel .button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.transfer-dialog {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.transfer-dialog[hidden] {
  display: none;
}

.transfer-dialog-panel {
  width: min(920px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  color: #111;
  background: #f7f7f7;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
}

.transfer-dialog-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  color: #fff;
  background: #151515;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.transfer-dialog-header h2 {
  margin: 0.1rem 0 0.35rem;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2rem);
  text-transform: uppercase;
}

.transfer-dialog-header p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.transfer-dialog-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.transfer-dialog-close:hover,
.transfer-dialog-close:focus-visible {
  background: var(--red);
  border-color: var(--red);
  outline: none;
}

.transfer-dialog-form {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.fulfillment-choice,
.verification-choice {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.fulfillment-choice legend,
.verification-choice legend {
  grid-column: 1 / -1;
  margin-bottom: 0.1rem;
  color: #111;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fulfillment-choice label,
.verification-choice label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 96px;
  padding: 0.85rem;
  background: #fff;
  border: 2px solid #d9d9d9;
  border-radius: 6px;
  cursor: pointer;
  text-transform: none;
}

.fulfillment-choice label:has(input:checked),
.verification-choice label:has(input:checked) {
  background: #fff7f7;
  border-color: var(--red);
}

.fulfillment-choice input,
.verification-choice input {
  width: 1rem;
  min-height: 1rem;
  margin-top: 0.18rem;
  flex: 0 0 auto;
  accent-color: var(--red);
}

.fulfillment-choice label > span,
.verification-choice label > span {
  display: grid;
  gap: 0.3rem;
}

.fulfillment-choice strong,
.verification-choice strong {
  color: #111;
  font-size: 0.92rem;
}

.fulfillment-choice small,
.verification-choice small {
  color: #666;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

.dealer-fields {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem;
  background: #ededed;
  border-left: 3px solid var(--red);
}

.dealer-fields[hidden] {
  display: none;
}

.dealer-fields-heading {
  grid-column: 1 / -1;
}

.dealer-fields-heading h3 {
  margin: 0;
  color: #111;
  font-size: 1rem;
  text-transform: uppercase;
}

.dealer-fields-heading p {
  margin: 0.3rem 0 0;
  color: #555;
  font-size: 0.88rem;
  line-height: 1.45;
}

.admin-auth-pending .admin-shell > :not(#adminAccessPanel),
.admin-auth-denied .admin-shell > :not(#adminAccessPanel) {
  display: none;
}

.admin-access-panel {
  max-width: 640px;
  margin: 2rem auto;
}

.admin-access-panel h2 {
  margin-top: 0;
  color: #111;
}

.admin-access-panel p {
  margin: 0 0 1rem;
  color: #4d4d4d;
  line-height: 1.5;
}

.ffl-ez-check {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.8rem;
  padding: 0.9rem;
  background: #fff;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
}

.vgs-ffl-picker {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #c9c9c9;
  border-top: 3px solid var(--red);
  border-radius: 6px;
}

.vgs-ffl-picker[hidden] {
  display: none !important;
}

.vgs-ffl-picker-heading h4 {
  margin: 0.15rem 0 0.3rem;
  color: #111;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.vgs-ffl-picker-heading p {
  max-width: 760px;
  margin: 0;
  color: #555;
  font-size: 0.86rem;
  line-height: 1.48;
}

.vgs-ffl-picker-heading .vgs-ffl-picker-kicker {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vgs-ffl-picker-controls {
  display: grid;
  grid-template-columns: auto minmax(150px, 1fr) auto;
  align-items: end;
  gap: 0.65rem;
}

.vgs-ffl-picker-controls .button {
  min-height: 46px;
  color: #111;
  background: #fff;
  border-color: #aeb4bd;
}

.vgs-ffl-picker-controls .button:hover,
.vgs-ffl-picker-controls .button:focus-visible {
  color: #fff;
  background: #111;
  border-color: #111;
}

.vgs-ffl-zip-label {
  display: grid;
  gap: 0.35rem;
}

.vgs-ffl-zip-label span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vgs-ffl-picker-status {
  margin: 0;
  color: #333;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.45;
}

.vgs-ffl-picker-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.vgs-ffl-result {
  display: grid;
  gap: 0.22rem;
  padding: 0.8rem;
  color: #222;
  background: #f7f7f7;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  text-align: left;
  cursor: pointer;
}

.vgs-ffl-result:hover,
.vgs-ffl-result:focus-visible,
.vgs-ffl-result.is-selected {
  background: #fff7f7;
  border-color: var(--red);
  outline: none;
}

.vgs-ffl-result strong,
.vgs-ffl-result span,
.vgs-ffl-result small {
  display: block;
}

.vgs-ffl-result span {
  color: #464646;
  font-size: 0.83rem;
  line-height: 1.35;
}

.vgs-ffl-result small {
  color: #666;
  font-size: 0.74rem;
  line-height: 1.35;
}

.vgs-ffl-result .vgs-ffl-license {
  color: #7a2529;
  font-weight: 800;
}

.vgs-ffl-picker-note {
  margin: 0;
  color: #666;
  font-size: 0.72rem;
  line-height: 1.45;
}

.vgs-ffl-picker-note a {
  color: #7a2529;
  font-weight: 800;
}

.vgs-ffl-picker.is-loading {
  opacity: 0.76;
}

.ffl-ez-check h4 {
  margin: 0.15rem 0;
  color: #111;
  font-size: 1rem;
}

.ffl-ez-check p {
  margin: 0.3rem 0 0;
  color: #4d4d4d;
  font-size: 0.84rem;
  line-height: 1.45;
}

.ffl-ez-check-inputs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.65rem;
}

.ffl-ez-check-inputs label {
  display: grid;
  gap: 0.35rem;
}

.ffl-ez-check-inputs label span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ffl-ez-check-status.is-error {
  color: var(--red-dark);
  font-weight: 800;
}

body.transfer-dialog-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .image-lightbox {
    padding: 8px;
  }

  .image-lightbox-panel {
    width: calc(100vw - 16px);
  }

  .vgs-ffl-picker-controls,
  .vgs-ffl-picker-results {
    grid-template-columns: 1fr;
  }

  .vgs-ffl-picker-controls .button {
    width: 100%;
  }

  .transfer-dialog {
    padding: 0;
  }

  .transfer-dialog-panel {
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    border-radius: 0;
  }

  .transfer-dialog-header {
    padding: 1rem;
  }

  .transfer-dialog-form,
  .fulfillment-choice,
  .verification-choice,
  .dealer-fields,
  .ffl-ez-check-inputs {
    grid-template-columns: 1fr;
  }

  .fulfillment-choice label,
  .verification-choice label {
    min-height: 0;
  }
}

.admin-header {
  position: static;
}

.admin-brandbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem max(20px, calc((100vw - 1160px) / 2));
  background: #181818;
}

.admin-brandbar img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.admin-brandbar h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.admin-panel {
  padding: 1rem;
  background: #fff;
  border: 2px solid var(--line);
  border-top-color: var(--red);
  border-radius: 8px;
}

.admin-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-panel-heading h2 {
  margin: 0;
  color: #111;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.admin-token-field,
.admin-form label {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  color: #222;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-token-field span,
.admin-form label span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.admin-token-field input,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 0.58rem 0.68rem;
  color: #222;
  background: #fff;
  border: 2px solid #d7d7d7;
  border-radius: 4px;
  font: inherit;
}

.admin-status {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-status.is-error {
  color: var(--red);
  font-weight: 900;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.user-admin-panel {
  margin-top: 1rem;
}

.user-admin-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 6%, rgba(193, 39, 45, 0.08), transparent 32rem),
    linear-gradient(180deg, #f7f8fa 0, #edf0f4 100%);
}

.portal-header {
  position: static;
}

.portal-brandbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 98px;
  padding: 1rem max(22px, calc((100vw - 1280px) / 2));
  background: #1f1f1f;
}

.portal-brandbar .brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.portal-brandbar .brand-lockup img {
  width: 58px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
}

.portal-account-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.portal-staff-nav[hidden] {
  display: none;
}

.portal-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.portal-login {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.7fr);
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: start;
  width: min(1120px, 100%);
  min-height: 58vh;
  margin: 0 auto;
}

.portal-login h1 {
  margin: 0.35rem 0 1rem;
  color: #172033;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.portal-auth-intro {
  padding: clamp(1rem, 4vw, 3.2rem) 0;
}

.portal-auth-intro > p {
  max-width: 600px;
  color: #566173;
  font-size: 1.08rem;
  line-height: 1.65;
}

.portal-trust-list {
  display: grid;
  gap: 0.9rem;
  max-width: 620px;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.portal-trust-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2.9rem;
  border-top: 1px solid rgba(23, 32, 51, 0.12);
}

.portal-trust-list li::before {
  content: "✓";
  position: absolute;
  top: 0.78rem;
  left: 0;
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  color: #fff;
  background: #26344c;
  border-radius: 50%;
  font-weight: 900;
}

.portal-trust-list strong,
.portal-trust-list span {
  display: block;
}

.portal-trust-list strong {
  color: #172033;
}

.portal-trust-list span {
  margin-top: 0.2rem;
  color: #677285;
  font-size: 0.9rem;
  line-height: 1.45;
}

.portal-auth-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe1e9;
  border-top: 5px solid var(--red);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(26, 34, 49, 0.14);
}

.portal-auth-card-heading {
  padding: 1.55rem 1.7rem 1rem;
}

.portal-auth-card-heading h2 {
  margin: 0.25rem 0 0.35rem;
  color: #172033;
  font-size: 1.65rem;
}

.portal-auth-card-heading > p:last-child {
  margin: 0;
  color: #687386;
  line-height: 1.5;
}

.portal-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 1.7rem;
  padding: 4px;
  background: #eef1f5;
  border-radius: 9px;
}

.portal-auth-tabs button {
  min-height: 42px;
  color: #5e697b;
  background: transparent;
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.portal-auth-tabs button.is-active {
  color: #172033;
  background: #fff;
  box-shadow: 0 2px 8px rgba(23, 32, 51, 0.09);
}

.portal-form {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-top: 4px solid var(--red);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.portal-form label,
.reply-form label {
  display: grid;
  gap: 0.35rem;
  color: #111;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-form label span {
  font-size: 0.75rem;
}

.portal-form input,
.reply-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem;
  color: #111;
  background: #fff;
  border: 2px solid #d5d5d5;
  border-radius: 4px;
  font: inherit;
}

.portal-auth-form {
  gap: 1rem;
  padding: 1.35rem 1.7rem 1.55rem;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.portal-auth-form[hidden],
.portal-auth-result[hidden],
.portal-auth-tabs[hidden] {
  display: none !important;
}

.portal-auth-form label {
  gap: 0.45rem;
  color: #29364c;
  text-transform: none;
}

.portal-auth-form label > span:first-child {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.portal-auth-form input {
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #c9d1dc;
  border-radius: 8px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.portal-auth-form input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(193, 39, 45, 0.13);
}

.portal-password-control {
  position: relative;
  display: block;
  font-size: 1rem !important;
}

.portal-password-control input {
  padding-right: 4.5rem;
}

.portal-password-control button {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  min-width: 3.4rem;
  min-height: 36px;
  padding: 0 0.55rem;
  color: #33415a;
  background: #eef1f5;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
  transform: translateY(-50%);
}

.portal-form-actions {
  display: grid;
  gap: 0.8rem;
}

.portal-auth-form .button,
.portal-auth-result .button {
  width: 100%;
  min-height: 50px;
  border-radius: 8px;
}

.portal-text-button,
.portal-resend-button {
  padding: 0.25rem;
  color: #9f282d;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.portal-resend-button {
  min-height: 42px;
  border: 1px solid rgba(193, 39, 45, 0.28);
  border-radius: 7px;
  text-decoration: none;
}

.portal-password-help {
  margin: -0.2rem 0 0;
  color: #697486;
  font-size: 0.82rem;
  line-height: 1.45;
}

.portal-auth-result {
  padding: 2rem 1.7rem 1.7rem;
  text-align: center;
}

.portal-auth-result-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  color: #fff;
  background: #2f6546;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 900;
}

.portal-auth-result.is-error .portal-auth-result-icon {
  background: #a32c32;
}

.portal-auth-result.is-pending .portal-auth-result-icon {
  background: #5d6878;
}

.portal-auth-result h3 {
  margin: 0;
  color: #172033;
  font-size: 1.5rem;
}

.portal-auth-result p {
  margin: 0.7rem 0 1.25rem;
  color: #657083;
  line-height: 1.55;
}

.portal-auth-footnote {
  margin: 0;
  padding: 1rem 1.7rem 1.25rem;
  color: #6d7788;
  background: #f7f8fa;
  border-top: 1px solid #e4e8ee;
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.portal-auth-footnote a {
  color: #8f2529;
  font-weight: 800;
}

.form-status.is-success {
  color: #24613e;
  font-weight: 800;
}

.portal-staff-return [data-auth-view="register"] {
  display: none;
}

.portal-staff-return .portal-auth-tabs {
  grid-template-columns: 1fr;
}

.portal-inbox {
  display: grid;
  grid-template-columns: minmax(340px, 0.42fr) minmax(0, 1fr);
  min-height: 74vh;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-top: 4px solid var(--red);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.customer-orders-panel {
  margin-bottom: 1.1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d5dbe3;
  border-top: 4px solid var(--red);
  border-radius: 7px;
  box-shadow: 0 16px 38px rgba(21, 29, 41, 0.08);
}

.customer-orders-panel[hidden] {
  display: none;
}

.customer-orders-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.25rem 1.4rem;
  color: #fff;
  background: #171717;
}

.customer-orders-heading h1 {
  margin: 0.12rem 0 0;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.customer-orders-heading p:not(.eyebrow) {
  max-width: 700px;
  margin: 0.45rem 0 0;
  color: #cbd1da;
  line-height: 1.5;
}

.customer-orders-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.customer-order-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1rem 1.4rem;
  background: #f4f6f8;
  border-bottom: 1px solid #dde2e8;
}

.customer-order-metrics article {
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem 0.9rem;
  background: #fff;
  border: 1px solid #dfe4ea;
  border-radius: 6px;
}

.customer-order-metrics span {
  color: #6a7484;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.customer-order-metrics strong {
  color: #172033;
  font-size: 1.5rem;
}

.customer-orders-status {
  margin: 0;
  padding: 0.85rem 1.4rem;
  color: #586477;
  border-bottom: 1px solid #e3e7ec;
  font-size: 0.82rem;
  font-weight: 750;
}

.customer-order-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1.15rem 1.4rem 1.4rem;
}

.customer-orders-empty {
  grid-column: 1 / -1;
  padding: 1.5rem;
  color: #596577;
  background: #f7f8fa;
  border: 1px dashed #cbd2dc;
  border-radius: 7px;
  text-align: center;
}

.customer-orders-empty strong {
  display: block;
  color: #172033;
  font-size: 1.2rem;
}

.customer-orders-empty p {
  margin: 0.5rem 0 1rem;
}

.customer-order-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dce1e7;
  border-radius: 7px;
}

.customer-order-card > header,
.customer-order-card > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  background: #f7f8fa;
}

.customer-order-card > header {
  border-bottom: 1px solid #e0e4e9;
}

.customer-order-card > header div {
  display: grid;
  gap: 0.2rem;
}

.customer-order-card > header div span {
  color: #9c272d;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.customer-order-card > header div strong {
  color: #172033;
  font-size: 0.85rem;
}

.customer-order-status {
  padding: 0.28rem 0.48rem;
  color: #fff;
  background: #5d6878;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-order-status.status-completed,
.customer-order-status.status-processing {
  background: #286144;
}

.customer-order-status.status-pending,
.customer-order-status.status-on-hold {
  background: #80621a;
}

.customer-order-status.status-failed,
.customer-order-status.status-cancelled {
  background: #9b2b31;
}

.customer-order-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0.9rem 1rem;
  list-style: none;
  border-bottom: 1px solid #e5e8ec;
}

.customer-order-card li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: #202b3d;
  font-weight: 800;
}

.customer-order-card li small {
  flex: 0 0 auto;
  color: #6d7787;
  font-weight: 750;
}

.customer-order-card dl {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
  gap: 0.45rem 0.8rem;
  margin: 0;
  padding: 0.9rem 1rem;
}

.customer-order-card dt,
.customer-order-card dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.77rem;
  line-height: 1.4;
}

.customer-order-card dt {
  color: #6e7889;
  font-weight: 750;
}

.customer-order-card dd {
  color: #172033;
  font-weight: 850;
}

.customer-order-card > footer {
  align-items: flex-start;
  border-top: 1px solid #e0e4e9;
}

.customer-order-card > footer p {
  margin: 0;
  color: #596577;
  font-size: 0.76rem;
  line-height: 1.4;
}

.thread-sidebar {
  min-width: 0;
  background: #f7f7f7;
  border-right: 1px solid #d8d8d8;
}

.thread-sidebar-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  background: #171717;
}

.thread-sidebar-heading h1 {
  margin: 0;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 1.15rem;
}

.thread-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(125px, 0.55fr);
  gap: 0.65rem;
  padding: 0.9rem;
  background: #eef1f4;
  border-bottom: 1px solid #d8dde4;
}

.thread-controls label {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
  color: #465268;
  font-size: 0.67rem;
  font-weight: 900;
  text-transform: uppercase;
}

.thread-controls input,
.thread-controls select {
  width: 100%;
  min-height: 40px;
  padding: 0.55rem 0.6rem;
  color: #172033;
  background: #fff;
  border: 1px solid #c7cfda;
  border-radius: 6px;
  font: inherit;
  font-size: 0.8rem;
  text-transform: none;
}

.thread-controls p {
  grid-column: 1 / -1;
  margin: 0;
  color: #697486;
  font-size: 0.74rem;
  font-weight: 750;
}

.staff-inbox-summary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
}

.staff-inbox-summary[hidden] {
  display: none;
}

.staff-inbox-summary span {
  display: grid;
  gap: 0.05rem;
  padding: 0.45rem 0.55rem;
  color: #5d6878;
  background: #fff;
  border: 1px solid #d7dde5;
  border-radius: 4px;
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
}

.staff-inbox-summary strong {
  color: #172033;
  font-size: 1rem;
}

.thread-controls .thread-refresh-status {
  margin-top: -0.2rem;
  color: #7b8493;
  font-size: 0.68rem;
}

.icon-button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 1.4rem;
  cursor: pointer;
}

.thread-list {
  max-height: 68vh;
  overflow: auto;
}

.thread-item {
  display: grid;
  gap: 0.45rem;
  width: 100%;
  padding: 1rem;
  color: #222;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ddd;
  text-align: left;
  cursor: pointer;
}

.thread-item:hover,
.thread-item:focus-visible,
.thread-item.is-active {
  background: #fff;
  box-shadow: inset 4px 0 var(--red);
  outline: none;
}

.thread-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.thread-subject {
  overflow: hidden;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thread-item-customer {
  color: #172033;
  font-size: 0.82rem;
  font-weight: 850;
}

.thread-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: #7b8493;
  font-size: 0.69rem;
  font-weight: 750;
}

.thread-item-footer span:last-child {
  white-space: nowrap;
}

.thread-item small {
  display: -webkit-box;
  overflow: hidden;
  color: #666;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.thread-status {
  padding: 0.2rem 0.4rem;
  color: #fff;
  background: #555;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-new,
.status-open {
  background: var(--red);
}

.status-waiting_customer {
  background: #7a5b00;
}

.conversation-panel {
  min-width: 0;
  background: #fff;
}

.conversation-empty {
  display: grid;
  place-content: center;
  min-height: 68vh;
  padding: 2rem;
  color: #777;
  text-align: center;
}

.conversation-empty > span {
  color: #c5cbd4;
  font-size: 3rem;
  line-height: 1;
}

.conversation-empty h2 {
  margin-bottom: 0;
  color: #222;
}

.conversation-header {
  padding: 1.25rem 1.4rem;
  border-bottom: 1px solid #ddd;
}

.conversation-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.conversation-header h2 {
  margin: 0.2rem 0;
  overflow-wrap: anywhere;
  color: #111;
  font-size: 1.4rem;
}

.conversation-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.conversation-facts div {
  min-width: 0;
  padding: 0.65rem 0.75rem;
  background: #f5f7f9;
  border: 1px solid #e0e4ea;
  border-radius: 6px;
}

.conversation-facts span,
.conversation-facts strong,
.conversation-facts a {
  display: block;
  overflow-wrap: anywhere;
}

.conversation-facts span {
  margin-bottom: 0.24rem;
  color: #737e90;
  font-size: 0.63rem;
  font-weight: 900;
  text-transform: uppercase;
}

.conversation-facts strong,
.conversation-facts a {
  color: #1e293b;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
}

.conversation-facts a {
  color: #8f2529;
}

.conversation-staff-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e0e4ea;
}

.conversation-staff-controls[hidden] {
  display: none;
}

.conversation-staff-controls label {
  display: grid;
  gap: 0.35rem;
  color: #222;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.conversation-staff-controls select {
  min-height: 40px;
  padding: 0.45rem 0.6rem;
  color: #222;
  background: #fff;
  border: 2px solid #d5d5d5;
  border-radius: 4px;
  font: inherit;
  text-transform: none;
}

.conversation-back-button {
  display: none;
  margin-bottom: 0.8rem;
  padding: 0;
  color: #8f2529;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.transfer-summary {
  padding: 1.15rem 1.4rem;
  background: #f7f8fa;
  border-bottom: 1px solid #dce1e8;
}

.transfer-summary[hidden] {
  display: none;
}

.transfer-summary-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.transfer-summary-heading h3,
.message-history-heading h3 {
  margin: 0.15rem 0 0;
  color: #172033;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.transfer-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.transfer-detail-section {
  min-width: 0;
  padding: 0.8rem;
  background: #fff;
  border: 1px solid #dde2e9;
  border-radius: 7px;
}

.transfer-detail-section.is-wide {
  grid-column: 1 / -1;
}

.transfer-detail-section h4 {
  margin: 0 0 0.55rem;
  color: #8f2529;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.transfer-detail-section dl {
  display: grid;
  grid-template-columns: minmax(120px, 0.48fr) minmax(0, 1fr);
  gap: 0.4rem 0.7rem;
  margin: 0;
}

.transfer-detail-section dt,
.transfer-detail-section dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.78rem;
  line-height: 1.4;
}

.transfer-detail-section dt {
  color: #6e7889;
  font-weight: 750;
}

.transfer-detail-section dd {
  color: #172033;
  font-weight: 800;
}

.transfer-item-list,
.transfer-note-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.transfer-item-list li,
.transfer-note-list li {
  padding: 0.55rem 0.65rem;
  color: #263247;
  background: #f5f7f9;
  border-left: 3px solid var(--red);
  font-size: 0.78rem;
  line-height: 1.45;
}

.message-history-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.4rem;
  background: #fff;
  border-bottom: 1px solid #e2e5e9;
}

.message-history-heading p {
  margin: 0;
}

.message-history-heading > span {
  color: #737e90;
  font-size: 0.74rem;
  font-weight: 800;
}

.message-list {
  display: grid;
  gap: 0.8rem;
  max-height: 42vh;
  overflow: auto;
  padding: 1.25rem;
  background: #f4f4f4;
}

.portal-message {
  width: min(680px, 90%);
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
}

.portal-message.is-transfer-source p {
  color: #5f6b7c;
  font-style: italic;
}

.portal-message:not(.message-customer) {
  justify-self: end;
  border-color: rgba(193, 39, 45, 0.35);
  box-shadow: inset -3px 0 var(--red);
}

.portal-message header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem;
  color: #222;
}

.portal-message time {
  color: #777;
  font-size: 0.78rem;
}

.portal-message p {
  margin: 0.55rem 0 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  line-height: 1.5;
}

.reply-form {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid #ddd;
}

.reply-form > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reply-form > div p {
  margin: 0;
  color: #666;
  font-size: 0.82rem;
  line-height: 1.4;
}

.portal-loading {
  padding: 1rem;
  color: #666;
}

.password-dialog-panel {
  width: min(560px, calc(100vw - 32px));
}

.password-form {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 760px) {
  .contact-fulfillment,
  .user-admin-form,
  .portal-login,
  .portal-inbox,
  .customer-order-list,
  .customer-order-metrics {
    grid-template-columns: 1fr;
  }

  .customer-orders-heading,
  .customer-order-card > footer {
    align-items: stretch;
    flex-direction: column;
  }

  .customer-orders-actions {
    justify-content: stretch;
  }

  .customer-orders-actions .button {
    flex: 1 1 auto;
    text-align: center;
  }

  .portal-shell {
    width: min(100% - 20px, 1280px);
    padding-top: 20px;
  }

  .portal-login {
    gap: 1rem;
  }

  .portal-auth-intro {
    padding: 0;
  }

  .portal-trust-list {
    margin-top: 1.2rem;
  }

  .portal-auth-card-heading,
  .portal-auth-form,
  .portal-auth-result {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .portal-auth-tabs {
    margin-right: 1.2rem;
    margin-left: 1.2rem;
  }

  .portal-inbox {
    overflow: visible;
  }

  .portal-inbox.is-conversation-open .thread-sidebar {
    display: none;
  }

  .portal-inbox:not(.is-conversation-open) .conversation-panel {
    display: none;
  }

  .thread-sidebar {
    border-right: 0;
    border-bottom: 1px solid #d8d8d8;
  }

  .thread-list {
    max-height: 34vh;
  }

  .conversation-empty {
    min-height: 34vh;
  }

  .message-list {
    max-height: none;
  }

  .conversation-back-button {
    display: inline-block;
  }

  .conversation-facts,
  .conversation-staff-controls,
  .transfer-detail-grid {
    grid-template-columns: 1fr;
  }

  .transfer-detail-section.is-wide {
    grid-column: auto;
  }

  .reply-form > div {
    align-items: stretch;
    flex-direction: column;
  }

  .portal-account-actions {
    width: 100%;
  }

  .portal-account-actions .button {
    flex: 1 1 auto;
  }

  .vo-account-links {
    width: 100%;
    justify-content: space-between;
  }
}

fieldset.contact-fulfillment {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fly-out-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  min-height: 576px;
  color: #fff;
  background: #101010;
  border-top: 6px solid var(--red);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fly-out-visual {
  height: 690px;
  overflow: hidden;
  background: #050505;
}

.fly-out-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.fly-out-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 4.8vw, 4.8rem) max(24px, calc((100vw - 1280px) / 2));
  background:
    linear-gradient(135deg, rgba(193, 39, 45, 0.12), transparent 38%),
    #151515;
}

.fly-out-copy h2 {
  margin: 0.15rem 0 0;
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.fly-out-price {
  margin: 0.96rem 0 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}

.fly-out-price::after {
  content: " service price";
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.fly-out-lead {
  max-width: 680px;
  margin: 0.8rem 0 0;
  color: #f2f2f2;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.55;
}

.fly-out-details {
  display: grid;
  gap: 0.56rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.fly-out-details li {
  position: relative;
  padding-left: 1.25rem;
  color: #fff;
  line-height: 1.45;
}

.fly-out-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--red);
}

.fly-out-note {
  max-width: 680px;
  margin: 0.96rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.5;
}

.fly-out-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

@media (max-width: 860px) {
  .fly-out-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .fly-out-visual,
  .fly-out-visual img {
    min-height: 0;
  }

  .fly-out-visual {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .fly-out-copy {
    padding: 1.8rem 20px 2.2rem;
  }
}

@media (max-width: 480px) {
  .fly-out-actions {
    display: grid;
  }

  .fly-out-actions .button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  fieldset.contact-fulfillment {
    grid-template-columns: 1fr;
  }
}

.admin-form .admin-panel-heading,
.admin-wide {
  grid-column: 1 / -1;
}

.suppressor-admin-panel {
  margin-top: 1rem;
}

.suppressor-inventory-form {
  grid-template-columns: minmax(260px, 2fr) minmax(140px, 0.7fr) minmax(180px, 0.9fr) auto;
  align-items: end;
}

.suppressor-inventory-form .button {
  min-height: 42px;
}

.fortis-paylink-panel {
  margin-bottom: 1.5rem;
}

.fortis-paylink-form .admin-confirmation-field {
  align-items: flex-start;
  display: flex;
  gap: 0.75rem;
}

.fortis-paylink-form .admin-confirmation-field input {
  margin-top: 0.25rem;
}

.suppressor-inventory-table {
  margin-top: 1rem;
}

.inventory-row-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  white-space: nowrap;
}

.inventory-table-wrap {
  overflow-x: auto;
}

.inventory-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.inventory-table th,
.inventory-table td {
  padding: 0.7rem 0.65rem;
  border-bottom: 1px solid #e3e3e3;
  text-align: left;
  vertical-align: top;
}

.inventory-table th {
  color: #111;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.inventory-table td:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.inventory-empty {
  color: var(--muted);
  text-align: center;
}

@media (max-width: 900px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .suppressor-inventory-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* The Fly Out service page */
.fly-page {
  background: #fff;
}

.fly-page .eyebrow {
  letter-spacing: 0;
}

.fly-nav-request {
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.fly-page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: clamp(540px, calc(100svh - 200px), 720px);
  min-height: 540px;
  overflow: hidden;
  color: #fff;
  background: #070707;
}

.fly-page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 42%;
}

.fly-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.87) 35%, rgba(5, 5, 5, 0.35) 66%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.78) 0%, transparent 48%);
}

.fly-page-hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1280px) / 2));
  padding: 56px 0 62px;
}

.fly-page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(4rem, 9vw, 8.4rem);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.fly-page-tagline {
  max-width: 650px;
  margin: 1.2rem 0 0;
  color: #fff;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.35;
}

.fly-page-price {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.fly-page-price strong {
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
}

.fly-page-price span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fly-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.fly-page-hero-note {
  max-width: 670px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.45;
}

.fly-page-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: #111;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.fly-page-facts > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.1rem 0.85rem;
  padding: 1.35rem max(22px, calc((100vw - 1280px) / 6));
  border-right: 1px solid #ddd;
}

.fly-page-facts > div:last-child {
  border-right: 0;
}

.fly-page-facts span {
  grid-row: 1 / 3;
  color: var(--red);
  font-size: 1.25rem;
  font-weight: 900;
}

.fly-page-facts strong {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.fly-page-facts small {
  color: #666;
  font-size: 0.82rem;
  line-height: 1.35;
}

.fly-page-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.fly-page-section-heading {
  max-width: 720px;
}

.fly-page-section-heading h2,
.fly-page-cta h2 {
  margin: 0;
  color: #111;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.fly-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 6vw;
  align-items: start;
}

.fly-page-intro-copy {
  padding-top: 1.4rem;
  border-top: 4px solid var(--red);
}

.fly-page-intro-copy p {
  margin: 0;
  color: #3f3f3f;
  font-size: 1.12rem;
  line-height: 1.7;
}

.fly-page-intro-copy p + p {
  margin-top: 1rem;
}

@media (min-width: 1100px) {
  .fly-page-intro {
    width: min(1320px, calc(100% - 80px));
    grid-template-columns: minmax(380px, 0.85fr) minmax(560px, 1.15fr);
    gap: clamp(64px, 7vw, 120px);
    align-items: center;
  }

  .fly-page-intro-copy {
    width: 100%;
    max-width: 700px;
    justify-self: end;
    padding-top: 1.75rem;
  }

  .fly-page-intro-copy p {
    max-width: 62ch;
    font-size: clamp(1.12rem, calc(1rem + 0.35vw), 1.25rem);
    line-height: 1.72;
  }
}

.fly-page-included-band {
  color: #fff;
  background: #151515;
  border-top: 6px solid var(--red);
}

.fly-page-included-band .fly-page-section-heading h2,
.fly-page-process .fly-page-section-heading h2 {
  color: #fff;
}

.fly-page-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3.2rem;
}

.fly-page-feature-grid article {
  padding: 1.6rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.fly-page-feature-grid span {
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 900;
}

.fly-page-feature-grid h3 {
  margin: 1rem 0 0;
  color: #fff;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.fly-page-feature-grid p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.fly-page-process {
  color: #fff;
  background: #242424;
}

.fly-page-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 3.2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.fly-page-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  min-height: 190px;
  padding: 1.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.fly-page-steps > li > span {
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 900;
}

.fly-page-steps h3 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.fly-page-steps p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.fly-page-requirements {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 6vw;
}

.fly-page-requirement-list {
  border-top: 4px solid var(--red);
}

.fly-page-requirement-list p {
  margin: 0;
  padding: 1.15rem 0;
  color: #444;
  line-height: 1.55;
  border-bottom: 1px solid #ddd;
}

.fly-page-requirement-list strong {
  color: #111;
}

.fly-page-faq-band {
  background: #f1f1f1;
  border-top: 1px solid #ddd;
}

.fly-page-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 6vw;
}

.fly-page-faq-list {
  border-top: 4px solid var(--red);
}

.fly-page-faq details {
  border-bottom: 1px solid #cfcfcf;
}

.fly-page-faq summary {
  position: relative;
  padding: 1.25rem 2.5rem 1.25rem 0;
  color: #111;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.fly-page-faq summary::-webkit-details-marker {
  display: none;
}

.fly-page-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1rem;
  color: var(--red);
  font-size: 1.6rem;
}

.fly-page-faq details[open] summary::after {
  content: "-";
}

.fly-page-faq details p {
  margin: 0;
  padding: 0 2.5rem 1.25rem 0;
  color: #555;
  line-height: 1.6;
}

.fly-page-cta {
  padding: 88px max(24px, calc((100vw - 900px) / 2));
  color: #fff;
  background: var(--red);
  text-align: center;
}

.fly-page-cta .eyebrow,
.fly-page-cta h2,
.fly-page-cta p {
  color: #fff;
}

.fly-page-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 1rem auto 1.5rem;
  font-size: 1.06rem;
  line-height: 1.55;
}

.fly-page-cta .button-primary {
  color: #111;
  background: #fff;
  border-color: #fff;
}

.fly-page-confirmation {
  grid-column: 1 / -1;
  display: flex !important;
  align-items: flex-start;
  gap: 0.65rem !important;
  padding: 0.9rem;
  background: #fff;
  border: 2px solid #d5d5d5;
  border-radius: 6px;
  text-transform: none !important;
}

.fly-page-confirmation input {
  width: 1rem;
  min-height: 1rem;
  margin-top: 0.18rem;
  flex: 0 0 auto;
  accent-color: var(--red);
}

.fly-page-confirmation span {
  color: #333;
  font-size: 0.9rem !important;
  line-height: 1.45;
  text-transform: none;
}

@media (max-width: 980px) {
  .fly-page-hero {
    height: clamp(540px, calc(100svh - 190px), 700px);
    min-height: 540px;
  }

  .fly-page-hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.42)),
      linear-gradient(0deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.24) 72%);
  }

  .fly-page-facts,
  .fly-page-feature-grid,
  .fly-page-steps {
    grid-template-columns: 1fr;
  }

  .fly-page-facts > div {
    padding: 1.1rem 24px;
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }

  .fly-page-intro,
  .fly-page-requirements,
  .fly-page-faq {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .fly-page-feature-grid {
    gap: 1.2rem;
  }

  .fly-page-steps li {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .fly-page-hero .eyebrow {
    display: none;
  }

  .fly-page-hero {
    height: clamp(490px, calc(100svh - 190px), 680px);
    min-height: 490px;
  }

  .fly-page-hero-image {
    object-position: center top;
  }

  .fly-page-hero-overlay {
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.76) 42%, rgba(5, 5, 5, 0.08) 76%);
  }

  .fly-page-hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-bottom: 32px;
  }

  .fly-page-hero h1 {
    font-size: clamp(3.5rem, 18vw, 5.2rem);
  }

  .fly-page-tagline {
    font-size: 1.1rem;
  }

  .fly-page-price strong {
    font-size: 2rem;
  }

  .fly-page-actions {
    display: grid;
  }

  .fly-page-section {
    width: calc(100% - 36px);
    padding: 64px 0;
  }

  .fly-page-section-heading h2,
  .fly-page-cta h2 {
    font-size: 2.4rem;
  }

  .fly-page-steps li {
    padding: 1.25rem;
  }

  .fly-page-cta {
    padding: 64px 18px;
  }
}

/* Admin workspace and private analytics */
.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  color: #fff;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 1rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
}

.admin-nav a:hover,
.admin-nav a:focus-visible,
.admin-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-bottom-color: var(--red);
  outline: none;
}

.admin-overview-panel {
  padding: 1.4rem;
  color: #fff;
  background: #1a1a1a;
  border-top: 5px solid var(--red);
}

.admin-panel,
.admin-grid,
.inventory-list-panel,
.suppressor-admin-panel,
.inventory-table-wrap {
  min-width: 0;
  max-width: 100%;
}

.admin-overview-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.admin-overview-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.admin-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-overview-grid article {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-overview-grid span,
.analytics-kpi span {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-overview-grid strong {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.admin-overview-grid small {
  color: rgba(255, 255, 255, 0.62);
}

.admin-overview-panel .admin-status {
  color: rgba(255, 255, 255, 0.66);
}

.order-admin-panel {
  border-top: 5px solid var(--red);
}

.order-admin-heading {
  align-items: end;
}

.order-toolbar {
  display: grid;
  grid-template-columns: minmax(150px, 0.65fr) minmax(260px, 1fr) auto;
  gap: 0.7rem;
  align-items: end;
}

.order-toolbar label {
  display: grid;
  gap: 0.35rem;
  color: #222;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-toolbar select,
.order-toolbar input,
.order-status-select {
  width: 100%;
  min-height: 42px;
  padding: 0.58rem 0.68rem;
  color: #222;
  background: #fff;
  border: 2px solid #d7d7d7;
  border-radius: 4px;
  font: inherit;
}

.order-summary-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 1.25rem 0 0.5rem;
  overflow: hidden;
  background: #d8d8d8;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
}

.order-summary-grid article {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
  padding: 0.85rem;
  background: #f7f7f7;
}

.order-summary-grid span {
  color: #666;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-summary-grid strong {
  color: #111;
  font-size: 1.55rem;
  line-height: 1;
}

.order-table-wrap {
  margin-top: 0.8rem;
}

.order-table {
  min-width: 1180px;
}

.order-table td {
  vertical-align: top;
}

.order-table td strong,
.order-table td span,
.order-table td small,
.order-table td a {
  display: block;
}

.order-table td small,
.order-table td span,
.order-table td a {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  line-height: 1.35;
}

.order-table td a {
  color: #8e0000;
  font-weight: 800;
}

.order-table .order-total {
  color: #111;
  font-weight: 900;
  white-space: nowrap;
}

.order-payment-paid,
.order-payment-due {
  width: max-content;
  padding: 0.16rem 0.4rem;
  border-radius: 999px;
  font-weight: 900;
}

.order-payment-paid {
  color: #145b2b;
  background: #dff2e4;
}

.order-payment-due {
  color: #7c4300;
  background: #fff0cf;
}

.fraudlabs-badge {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 0.28rem 0.48rem;
  border: 1px solid #aeb4bd;
  border-radius: 4px;
  background: #f2f3f5;
  color: #20252c;
  font-size: 0.7rem !important;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.fraudlabs-approve {
  border-color: #267044;
  background: #e7f4ec;
  color: #18502f;
}

.fraudlabs-review {
  border-color: #b87600;
  background: #fff2d8;
  color: #754b00;
}

.fraudlabs-reject {
  border-color: #a30d14;
  background: #fde9ea;
  color: #7f0b10;
}

.fraudlabs-unconfigured {
  border-style: dashed;
}

.order-status-badge {
  width: max-content;
  max-width: 100%;
  padding: 0.22rem 0.5rem;
  color: #333;
  background: #e5e5e5;
  border-radius: 999px;
  font-size: 0.72rem !important;
  font-weight: 900;
  text-transform: uppercase;
}

.order-status-badge.status-processing,
.order-status-badge.status-completed {
  color: #145b2b;
  background: #dff2e4;
}

.order-status-badge.status-pending,
.order-status-badge.status-on-hold {
  color: #7c4300;
  background: #fff0cf;
}

.order-status-badge.status-cancelled,
.order-status-badge.status-failed {
  color: #8e0000;
  background: #f9dddd;
}

.order-status-select {
  min-width: 130px;
  min-height: 36px;
  margin-top: 0.45rem;
  padding: 0.4rem;
  font-size: 0.78rem;
}

.order-actions {
  min-width: 148px;
}

.order-actions .button {
  width: 100%;
  min-height: 34px;
  margin-bottom: 0.4rem;
  padding: 0.42rem 0.55rem;
  font-size: 0.7rem;
}

.order-empty {
  padding: 2rem !important;
  color: #666 !important;
  font-weight: 700;
  text-align: center;
}

.order-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
  color: #555;
  font-size: 0.82rem;
  font-weight: 800;
}

.order-footnote {
  margin: 1rem 0 0;
  padding: 0.8rem;
  color: #555;
  background: #f2f2f2;
  border-left: 4px solid var(--red);
  font-size: 0.82rem;
  line-height: 1.45;
}

.checkout-diagnostics-panel {
  margin: 1rem 0 1.5rem;
  border-top: 5px solid #262626;
}

.checkout-diagnostics-heading {
  align-items: end;
}

.checkout-diagnostics-toolbar {
  display: grid;
  grid-template-columns: minmax(135px, 0.7fr) minmax(190px, 1fr) auto;
  gap: 0.7rem;
  align-items: end;
}

.checkout-diagnostics-toolbar label {
  display: grid;
  gap: 0.35rem;
  color: #222;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-diagnostics-toolbar select {
  width: 100%;
  min-height: 42px;
  padding: 0.58rem 0.68rem;
  color: #222;
  background: #fff;
  border: 2px solid #d7d7d7;
  border-radius: 4px;
  font: inherit;
}

.checkout-diagnostics-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 1.25rem 0 0.5rem;
  overflow: hidden;
  background: #d8d8d8;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
}

.checkout-diagnostics-summary article {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
  padding: 0.85rem;
  background: #f7f7f7;
}

.checkout-diagnostics-summary span {
  color: #666;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-diagnostics-summary strong {
  color: #111;
  font-size: 1.25rem;
  line-height: 1.15;
}

.checkout-diagnostics-table-wrap {
  margin-top: 0.8rem;
}

.checkout-diagnostics-table {
  min-width: 1120px;
}

.checkout-diagnostics-table td {
  vertical-align: top;
}

.checkout-diagnostics-table td strong,
.checkout-diagnostics-table td span,
.checkout-diagnostics-table td small {
  display: block;
}

.checkout-diagnostics-table td span,
.checkout-diagnostics-table td small {
  margin-top: 0.28rem;
  font-size: 0.78rem;
  line-height: 1.35;
}

.checkout-diagnostics-table td small {
  color: #6a6a6a;
}

.checkout-diagnostic-row.severity-error td:first-child {
  border-left: 4px solid #a30d14;
}

.checkout-diagnostic-row.severity-warning td:first-child {
  border-left: 4px solid #c47700;
}

.checkout-severity-badge {
  width: max-content;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem !important;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-severity-badge.severity-error {
  color: #8e0000;
  background: #f9dddd;
}

.checkout-severity-badge.severity-warning {
  color: #7c4300;
  background: #fff0cf;
}

.checkout-severity-badge.severity-info {
  color: #1d4f6d;
  background: #ddecf5;
}

.checkout-guidance {
  min-width: 260px;
  color: #333;
  line-height: 1.45;
}

.analytics-shell {
  display: grid;
  gap: 1rem;
}

.analytics-section-heading {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0.5rem 0 -0.3rem;
}

.analytics-section-heading p,
.analytics-section-heading h2 {
  margin: 0;
}

.analytics-section-heading h2 {
  color: #111;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.analytics-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: 1.5rem;
  align-items: end;
}

.analytics-toolbar h2 {
  margin: 0;
  color: #111;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.analytics-toolbar > div:first-child > p:last-child {
  max-width: 560px;
  margin: 0.7rem 0 0;
  color: #666;
  line-height: 1.45;
}

.analytics-controls {
  display: grid;
  grid-template-columns: minmax(150px, 0.65fr) minmax(240px, 1fr) auto;
  gap: 0.7rem;
  align-items: end;
}

.analytics-controls label {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  color: #222;
  font-weight: 900;
  text-transform: uppercase;
}

.analytics-controls label span {
  font-size: 0.72rem;
}

.analytics-controls select,
.analytics-controls input {
  width: 100%;
  min-height: 42px;
  padding: 0.58rem 0.68rem;
  color: #222;
  background: #fff;
  border: 2px solid #d7d7d7;
  border-radius: 4px;
  font: inherit;
}

.analytics-toolbar .admin-status {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 0.8rem;
  border-top: 1px solid #e1e1e1;
}

.analytics-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.analytics-kpi {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  min-width: 0;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-top: 4px solid var(--red);
  border-radius: 6px;
}

.analytics-kpi span {
  align-self: center;
  color: #333;
}

.analytics-kpi strong {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: #111;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
}

.analytics-kpi small {
  color: #777;
  line-height: 1.3;
}

.analytics-chart-panel {
  min-width: 0;
}

.analytics-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: #555;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.analytics-legend span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 0.35rem;
  background: #555;
}

.analytics-legend .views::before,
.analytics-bars .views {
  background: var(--red);
}

.analytics-legend .visitors::before,
.analytics-bars .visitors {
  background: #242424;
}

.analytics-legend .leads::before,
.analytics-bars .leads {
  background: #777;
}

.analytics-chart {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(28px, 1fr);
  align-items: end;
  gap: 0.35rem;
  min-height: 300px;
  padding: 1rem 0 0.2rem;
  overflow-x: auto;
  border-top: 1px solid #ddd;
  background:
    linear-gradient(to bottom, transparent 24%, #e8e8e8 25%, transparent 26%, transparent 49%, #e8e8e8 50%, transparent 51%, transparent 74%, #e8e8e8 75%, transparent 76%);
}

.analytics-bar-group {
  display: grid;
  grid-template-rows: 250px 28px;
  gap: 0.35rem;
  min-width: 28px;
}

.analytics-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.analytics-bars span {
  display: block;
  width: min(8px, 30%);
  min-height: 0;
}

.analytics-bar-group small {
  color: #777;
  font-size: 0.65rem;
  text-align: center;
  white-space: nowrap;
}

.analytics-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.analytics-commerce-grid {
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.4fr);
}

.analytics-orders-table {
  min-width: 650px;
}

.analytics-orders-table a {
  color: #8e0000;
  font-weight: 900;
}

.analytics-orders-table th:last-child,
.analytics-orders-table td:last-child {
  width: 120px;
  white-space: nowrap;
}

.analytics-table-wrap {
  overflow-x: auto;
}

.analytics-table {
  width: 100%;
  border-collapse: collapse;
}

.analytics-table th,
.analytics-table td {
  padding: 0.7rem 0.45rem;
  color: #333;
  border-bottom: 1px solid #e1e1e1;
  text-align: left;
  overflow-wrap: anywhere;
}

.analytics-table th {
  color: #777;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.analytics-table th:last-child,
.analytics-table td:last-child {
  width: 90px;
  color: #111;
  font-weight: 900;
  text-align: right;
}

.analytics-empty {
  color: #777 !important;
  font-weight: 600 !important;
  text-align: left !important;
}

.analytics-footnote {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  padding: 1rem;
  color: #555;
  background: #e8e8e8;
  border-left: 4px solid var(--red);
  font-size: 0.86rem;
}

.analytics-footnote strong {
  color: #111;
  text-transform: uppercase;
}

.meta-pixel-settings {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 2rem;
  align-items: center;
}

.meta-pixel-settings h2 {
  margin: 0;
  color: #111;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.meta-pixel-settings > div > p:last-child {
  margin: 0.7rem 0 0;
  color: #666;
  line-height: 1.5;
}

.meta-pixel-settings form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 0.7rem;
  align-items: end;
}

.meta-pixel-settings label {
  display: grid;
  gap: 0.35rem;
  color: #222;
  font-weight: 900;
  text-transform: uppercase;
}

.meta-pixel-settings label span {
  font-size: 0.72rem;
}

.meta-pixel-settings input {
  width: 100%;
  min-height: 42px;
  padding: 0.58rem 0.68rem;
  color: #222;
  background: #fff;
  border: 2px solid #d7d7d7;
  border-radius: 4px;
  font: inherit;
}

.meta-pixel-settings .admin-status {
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 980px) {
  .admin-overview-grid,
  .analytics-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-admin-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .checkout-diagnostics-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .checkout-diagnostics-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .analytics-toolbar,
  .analytics-report-grid,
  .analytics-commerce-grid,
  .meta-pixel-settings {
    grid-template-columns: 1fr;
  }

  .analytics-controls {
    grid-template-columns: minmax(140px, 0.6fr) minmax(220px, 1fr) auto;
  }
}

@media (max-width: 620px) {
  .admin-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }

  .admin-nav a {
    justify-content: center;
    padding: 0 0.5rem;
  }

  .admin-overview-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-overview-grid,
  .analytics-kpi-grid,
  .analytics-controls,
  .meta-pixel-settings form,
  .order-toolbar,
  .order-summary-grid,
  .checkout-diagnostics-toolbar,
  .checkout-diagnostics-summary {
    grid-template-columns: 1fr;
  }

  .order-pagination {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .admin-form,
  .user-admin-form,
  .suppressor-inventory-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .analytics-kpi strong {
    font-size: 2rem;
  }

  .analytics-chart {
    grid-auto-columns: 34px;
  }
}

@media (max-width: 620px) {
  .admin-brandbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-form {
    grid-template-columns: 1fr;
  }

  .suppressor-inventory-form {
    grid-template-columns: 1fr;
  }

  .stock-counts {
    grid-template-columns: 1fr;
  }
}

/* Large displays keep content substantial without allowing bands or cards to over-stretch. */
@media (min-width: 1440px) {
  .vo-topbar,
  .vo-mega-wrap,
  .portal-brandbar,
  .admin-brandbar {
    padding-left: max(32px, calc((100vw - 1600px) / 2));
    padding-right: max(32px, calc((100vw - 1600px) / 2));
  }

  .hero {
    min-height: clamp(680px, calc(100svh - 220px), 1050px);
    padding-left: max(32px, calc((100vw - 1600px) / 2));
    padding-right: max(32px, calc((100vw - 1600px) / 2));
  }

  .hero-copy {
    max-width: 820px;
  }

  .compliance-strip {
    padding-left: max(32px, calc((100vw - 1600px) / 2));
    padding-right: max(32px, calc((100vw - 1600px) / 2));
  }

  .compliance-strip div {
    padding: 1.2rem 1.5rem;
  }

  .fly-out-section {
    grid-template-columns: minmax(520px, 0.92fr) minmax(0, 1.08fr);
    min-height: 0;
  }

  .fly-out-visual {
    height: clamp(620px, 42vw, 720px);
  }

  .fly-out-copy {
    min-width: 0;
    padding-left: clamp(3rem, 5vw, 6rem);
    padding-right: clamp(3rem, 5vw, 6rem);
  }

  .section,
  .contact-section,
  .portal-shell,
  .admin-shell {
    width: min(1600px, calc(100% - 64px));
  }

  .cart-section,
  .process-section {
    padding-left: max(32px, calc((100vw - 1600px) / 2));
    padding-right: max(32px, calc((100vw - 1600px) / 2));
  }

  .cart-section > .section-heading,
  .cart-section > .order-flow,
  .cart-section > .cart-layout,
  .process-section .section-heading,
  .process-grid {
    width: min(1600px, 100%);
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .portal-login {
    width: min(1320px, 100%);
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  }

  .fly-page-section {
    width: min(1480px, calc(100% - 64px));
  }

  .site-footer {
    padding-left: max(32px, calc((100vw - 1600px) / 2));
    padding-right: max(32px, calc((100vw - 1600px) / 2));
  }
}

@media (min-width: 1900px) {
  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
