:root {
  --blue: #003a70;
  --blue-dark: #00284f;
  --blue-light: #eaf2f8;
  --red: #d9292f;
  --green: #17833b;
  --ink: #101820;
  --muted: #5d6872;
  --line: #cbd2d8;
  --soft-line: #e3e7ea;
  --paper: #ffffff;
  --canvas: #f4f5f6;
  --yellow: #ffcf3a;
  --shell: 1180px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.utility-bar {
  color: #fff;
  background: var(--blue-dark);
  font-size: 12px;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-links {
  display: flex;
  gap: 24px;
}

.utility-links a {
  text-decoration: none;
}

.utility-links a:hover {
  text-decoration: underline;
}

.brand-row {
  min-height: 94px;
  display: grid;
  grid-template-columns: 230px minmax(280px, 1fr) auto;
  align-items: center;
  gap: 34px;
  background: #fff;
}

.site-header {
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  text-decoration: none;
  line-height: 1;
}

.brand-crest {
  width: 45px;
  height: 57px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.brand-tag {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.1px;
}

.search {
  display: grid;
  grid-template-columns: 1fr auto;
  height: 42px;
  border: 2px solid var(--blue);
}

.search input {
  min-width: 0;
  padding: 0 14px;
  border: 0;
  outline: 0;
}

.search button,
.cart-button {
  border: 0;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.search button {
  padding-inline: 22px;
  color: #fff;
  background: var(--blue);
}

.cart-button {
  min-width: 106px;
  height: 42px;
  color: var(--blue);
  background: var(--blue-light);
}

.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 7px;
  padding-inline: 5px;
  color: #fff;
  border-radius: 50%;
  background: var(--red);
}

.main-nav {
  color: #fff;
  background: var(--blue);
}

.nav-inner {
  display: flex;
  min-height: 42px;
}

.nav-inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.nav-inner a:last-child {
  border-right: 1px solid rgba(255,255,255,0.3);
}

.nav-inner a:hover {
  background: var(--blue-dark);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  color: #56616c;
  font-size: 12px;
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.product-card {
  padding: 28px 32px 32px;
  border: 1px solid #d1d6da;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.05);
}

.product-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--soft-line);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.9px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.8px;
}

.stock-callout {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding-top: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.stock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(23, 131, 59, 0.12);
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(40px, 7vw, 90px);
  padding: 34px 26px 42px;
}

.media-column {
  text-align: center;
}

.image-stage {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(#eff2f4 1px, transparent 1px),
    linear-gradient(90deg, #eff2f4 1px, transparent 1px),
    #fff;
  background-size: 28px 28px;
}

.image-stage img {
  display: block;
  width: min(100%, 500px);
  height: auto;
  mix-blend-mode: multiply;
}

.zoom-link {
  margin-top: 12px;
  padding: 8px;
  color: var(--blue);
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.image-note {
  margin: 4px 0 0;
  color: #737d86;
  font-size: 10px;
}

.selling-column {
  padding-top: 18px;
}

.lead {
  max-width: 560px;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.42;
}

.feature-list {
  margin: 0;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
}

.feature-list li + li {
  margin-top: 8px;
}

.option-block {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--soft-line);
}

.option-label {
  margin-right: 7px;
  font-size: 11px;
  font-weight: 800;
}

.swatch {
  width: 32px;
  height: 32px;
  border: 4px solid #fff;
  outline: 1px solid #8f989f;
}

.swatch.selected {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

.swatch-black {
  background: #1c2023;
}

.swatch-natural {
  background: #f2efe5;
}

.swatch:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.option-value {
  margin-left: 5px;
  font-size: 13px;
  font-weight: 700;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 34px;
  border-block: 1px solid var(--soft-line);
}

.trust-grid div {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 18px;
  border-right: 1px solid var(--soft-line);
}

.trust-grid div:first-child {
  padding-left: 0;
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  margin-bottom: 5px;
  color: var(--blue-dark);
  font-size: 12px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.order-table-wrap {
  overflow-x: auto;
  border: 1px solid #91999f;
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 12px;
}

.order-table th,
.order-table td {
  min-width: 82px;
  padding: 9px 8px;
  border-right: 1px solid #aeb5bb;
  border-bottom: 1px solid #aeb5bb;
}

.order-table th:last-child,
.order-table td:last-child {
  border-right: 0;
}

.order-table tbody tr:last-child td {
  border-bottom: 0;
}

.order-table thead {
  background: #f3f4f5;
}

.order-table th {
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
}

.order-table .tier-row th {
  padding-block: 5px;
  background: #fff;
}

.order-table .availability {
  color: var(--green);
}

.color-chip {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  background: #1c2023;
}

.add-cell {
  min-width: 150px !important;
  white-space: nowrap;
}

.add-cell input {
  width: 48px;
  height: 30px;
  padding: 0 4px;
  border: 1px solid #8f989f;
  text-align: center;
}

.add-cell button {
  height: 30px;
  margin-left: 5px;
  padding: 0 13px;
  color: #fff;
  border: 0;
  background: var(--red);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.add-cell button:hover,
.add-cell button:focus-visible {
  background: #a9181d;
}

.product-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding-top: 26px;
  font-size: 11px;
}

.product-links a {
  color: var(--blue);
}

.service-strip {
  margin-top: 28px;
  color: #fff;
  background: var(--blue-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-grid > div {
  position: relative;
  min-height: 130px;
  display: grid;
  align-content: center;
  padding: 22px 30px 22px 75px;
  border-right: 1px solid rgba(255,255,255,0.22);
}

.service-grid > div:first-child {
  border-left: 1px solid rgba(255,255,255,0.22);
}

.service-number {
  position: absolute;
  left: 26px;
  top: 35px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.service-grid strong {
  margin-bottom: 7px;
  font-size: 13px;
}

.service-grid small {
  color: #c8d5df;
  font-size: 11px;
}

.details {
  padding-block: 90px;
}

.section-heading {
  max-width: 670px;
  margin-bottom: 38px;
}

.section-heading h2,
.quote-section h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.4px;
}

.section-heading > p:last-child,
.quote-section p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.spec-panel,
.fit-panel {
  padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
}

.spec-panel h3,
.fit-panel h3 {
  margin-bottom: 24px;
  font-size: 20px;
}

.spec-list {
  margin: 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--soft-line);
  font-size: 13px;
}

.spec-list dt {
  color: var(--muted);
}

.spec-list dd {
  margin: 0;
  font-weight: 700;
}

.fit-panel > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.fit-visual {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  padding: 22px;
  background: var(--blue-light);
}

.diameter {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border: 7px solid var(--blue);
  border-radius: 50%;
  background: #fff;
}

.diameter span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.diameter-small {
  width: 58px;
  height: 58px;
}

.diameter-medium {
  width: 86px;
  height: 86px;
}

.diameter-large {
  width: 116px;
  height: 116px;
}

.fit-key {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 12px;
  color: var(--blue);
  text-align: center;
  font-size: 9px;
  font-weight: 900;
}

.notice {
  margin: 24px 0 0 !important;
  padding: 14px 16px;
  border-left: 4px solid var(--yellow);
  background: #fff9e5;
  color: var(--ink) !important;
}

.installation {
  padding-block: 84px;
  color: #fff;
  background: var(--ink);
}

.section-heading-light .eyebrow {
  color: var(--yellow);
}

.section-heading-light h2 {
  color: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 190px;
  display: flex;
  gap: 20px;
  padding: 30px;
  background: #1b252e;
}

.steps li > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 15px;
  font-weight: 900;
}

.steps strong {
  font-size: 18px;
}

.steps p {
  margin: 10px 0 0;
  color: #bdc7cf;
  font-size: 13px;
  line-height: 1.55;
}

.safety-note {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  margin-top: 20px;
  padding: 22px 26px;
  color: var(--ink);
  background: var(--yellow);
}

.safety-note strong {
  font-size: 12px;
}

.safety-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.quote-section {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding-block: 84px;
}

.quote-section > div {
  max-width: 700px;
}

.quote-section p {
  margin-bottom: 0;
}

.primary-cta,
.request-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  background: var(--red);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}

.primary-cta:hover,
.request-link:hover {
  background: #a9181d;
}

.site-footer {
  padding-top: 56px;
  color: #d6dee5;
  background: var(--blue-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-brand {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}

.footer-grid p {
  margin-top: 10px;
  font-size: 13px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
}

.footer-grid strong {
  color: #fff;
  font-size: 11px;
  letter-spacing: 1.4px;
}

.footer-grid a {
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.copyright {
  padding-block: 20px;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: #9fb0bd;
  font-size: 10px;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 50px;
  background: rgba(0, 19, 37, 0.88);
}

.lightbox[hidden],
.cart-panel[hidden],
.panel-scrim[hidden] {
  display: none;
}

.lightbox img {
  width: min(90vw, 760px);
  max-height: 85vh;
  object-fit: contain;
  background: #fff;
}

.lightbox button {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

.panel-scrim {
  position: fixed;
  z-index: 89;
  inset: 0;
  background: rgba(0, 19, 37, 0.55);
}

.cart-panel {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  width: min(100%, 430px);
  height: 100vh;
  padding: 24px;
  background: #fff;
  box-shadow: -20px 0 40px rgba(0,0,0,0.2);
}

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--blue);
}

.cart-panel-header h2 {
  margin: 0;
  font-size: 22px;
}

.cart-panel-header button {
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 26px;
  cursor: pointer;
}

.empty-cart {
  padding: 34px 0;
  color: var(--muted);
}

.cart-line {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--soft-line);
}

.cart-line img {
  width: 96px;
  height: 96px;
  object-fit: cover;
}

.cart-line div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
}

.cart-line span {
  color: var(--muted);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 14px;
}

.request-link {
  width: 100%;
}

.cart-panel small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  max-width: 330px;
  padding: 14px 18px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  opacity: 0;
  transform: translateY(18px);
  transition: 180ms ease;
  pointer-events: none;
  font-size: 12px;
  font-weight: 700;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .brand-row {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding-block: 18px;
  }

  .search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .nav-inner {
    overflow-x: auto;
  }

  .nav-inner a {
    min-width: max-content;
  }

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

  .product-overview {
    padding-inline: 0;
  }

  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-grid > div,
  .service-grid > div:first-child {
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.22);
  }

  .quote-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .utility-inner > span {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .brand-row {
    min-height: auto;
  }

  .brand-name {
    font-size: 24px;
  }

  .brand-tag {
    letter-spacing: 2.1px;
  }

  .breadcrumb {
    overflow-x: auto;
    white-space: nowrap;
  }

  .product-card {
    width: 100%;
    padding: 24px 16px;
    border-inline: 0;
  }

  .product-heading {
    flex-direction: column;
    gap: 12px;
  }

  .image-stage {
    min-height: 320px;
  }

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

  .trust-grid div,
  .trust-grid div:first-child {
    min-height: auto;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
  }

  .order-table,
  .order-table tbody,
  .order-table tr,
  .order-table td {
    display: block;
    width: 100%;
  }

  .order-table thead {
    display: none;
  }

  .order-table td {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 0;
    text-align: left;
    border-right: 0;
  }

  .order-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .add-cell {
    min-width: 0 !important;
  }

  .product-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .details,
  .installation,
  .quote-section {
    padding-block: 62px;
  }

  .spec-panel,
  .fit-panel {
    padding: 24px 18px;
  }

  .fit-visual {
    gap: 10px;
    padding-inline: 10px;
  }

  .diameter-small {
    width: 48px;
    height: 48px;
  }

  .diameter-medium {
    width: 70px;
    height: 70px;
  }

  .diameter-large {
    width: 92px;
    height: 92px;
  }

  .safety-note,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 34px;
  }

  .lightbox {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Store catalog */
.catalog-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.catalog-hero {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(0, 40, 79, 0.98) 0 43%, rgba(0, 58, 112, 0.92) 70%, rgba(0, 40, 79, 0.96) 100%),
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(255, 255, 255, 0.03) 22px 24px);
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: stretch;
  min-height: 260px;
}

.catalog-hero-copy {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 38px 24px 0;
}

.catalog-hero-copy::before {
  position: absolute;
  z-index: -1;
  top: 14px;
  right: 8px;
  width: 145px;
  height: 170px;
  content: "";
  opacity: 0.075;
  background: url('/assets/almonte-heraldic-mark.svg') center / contain no-repeat;
  filter: grayscale(1) brightness(3);
}

.catalog-hero-copy .eyebrow,
.bundle-copy .eyebrow {
  color: #79baf3;
}

.catalog-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(29px, 3.25vw, 45px);
  line-height: 0.98;
  letter-spacing: -1.6px;
}

.catalog-hero-copy h1 span {
  color: var(--yellow);
}

.catalog-hero-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin: 12px 0 0;
  color: #dbe9f5;
  font-size: 13px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.hero-actions .primary-cta,
.hero-actions .secondary-cta {
  min-width: 156px;
  min-height: 38px;
  text-align: center;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.52);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}

.secondary-cta:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 36px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  list-style: none;
}

.hero-proof li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 12px;
}

.hero-proof strong {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
}

.hero-proof span {
  color: #adc6dc;
  font-size: 11px;
}

.catalog-hero-media {
  position: relative;
  min-height: 260px;
  margin-right: calc((100vw - min(calc(100vw - 40px), var(--shell))) / -2);
  background: #fff url('/assets/wardogs/wardogs-faction-wallpaper.png') center / cover no-repeat;
}

.catalog-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 58, 112, 0.45), transparent 28%);
  pointer-events: none;
}

.catalog-hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.5));
}

.hero-media-label {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 14px;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.hero-media-label strong {
  padding: 10px 12px;
  color: #fff;
  background: var(--red);
  font-size: 11px;
  letter-spacing: 1px;
}

.hero-media-label span {
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 800;
}

.catalog-section {
  padding-block: 38px;
}

.catalog-section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 450px);
  align-items: end;
  gap: 50px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--blue);
}

.catalog-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -1.3px;
}

.catalog-section-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.catalog-product {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 6px solid var(--faction-color, var(--blue));
  background: #fff;
  box-shadow: 0 4px 14px rgba(16, 24, 32, 0.05);
}

.faction-lonestar {
  --faction-color: #1477d4;
  --wallpaper-position: left bottom;
  --display-stage: url('/assets/wardogs/wardogs-display-stage.jpg');
}

.faction-valkyra {
  --faction-color: #d11f2c;
  --wallpaper-position: center top;
  --display-stage: url('/assets/wardogs/wardogs-display-stage-valkyra.jpg');
}

.faction-manticore {
  --faction-color: #159a5c;
  --wallpaper-position: right bottom;
  --display-stage: url('/assets/wardogs/wardogs-display-stage-manticore.jpg');
}

.catalog-product-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.94;
  overflow: hidden;
  background: #f4f5f6;
}

.catalog-product-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 65px;
  content: "";
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.14));
}

.catalog-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.catalog-product-image.model-render {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0 22%, rgba(255, 255, 255, 0.5) 47%, rgba(255, 255, 255, 0.08) 72%),
    url('/assets/wardogs/wardogs-faction-wallpaper.png') var(--wallpaper-position, center) / 172% auto no-repeat,
    #fff;
}

.catalog-product-image.model-render img {
  position: relative;
  z-index: 1;
  padding: 18px;
  object-fit: contain;
  filter: drop-shadow(0 16px 13px rgba(0, 0, 0, 0.55));
}

.catalog-product:hover .catalog-product-image img {
  transform: scale(1.025);
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 8px 10px;
  color: #fff;
  background: var(--faction-color, var(--blue));
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.catalog-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px;
}

.product-code {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.9px;
}

.catalog-product h3,
.utility-product h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 21px;
  line-height: 1.22;
}

.catalog-product h3 a,
.utility-product h3 a {
  text-decoration: none;
}

.catalog-product h3 a:hover,
.utility-product h3 a:hover {
  text-decoration: underline;
}

.faction-origin {
  margin: 0 0 9px;
  color: var(--faction-color, var(--blue));
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.25px;
}

.catalog-product-body > p:not(.product-code):not(.faction-origin):not(.product-size) {
  min-height: 62px;
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.product-size {
  margin: 0 0 17px;
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.65px;
}

.catalog-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--soft-line);
}

.catalog-price span,
.utility-price span,
.bundle-price span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}

.catalog-price strong {
  color: var(--blue-dark);
  font-size: 30px;
}

.catalog-price small {
  color: var(--muted);
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 16px;
  color: #fff;
  background: var(--blue);
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.product-cta:hover {
  background: var(--blue-dark);
}

.bundle-section {
  color: #fff;
  background: #111820;
}

.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer::after {
  position: absolute;
  right: max(20px, calc((100vw - var(--shell)) / 2));
  bottom: -38px;
  width: 150px;
  height: 180px;
  content: "";
  opacity: 0.055;
  background: url('/assets/almonte-heraldic-mark.svg') center / contain no-repeat;
  filter: grayscale(1) brightness(3);
  pointer-events: none;
}

.bundle-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  align-items: center;
  gap: 70px;
  min-height: 620px;
}

.bundle-image {
  align-self: stretch;
  min-height: 620px;
  margin-left: calc((100vw - min(calc(100vw - 40px), var(--shell))) / -2);
  background: #e6e7e9;
}

.bundle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bundle-image.model-collection {
  background: #fff url('/assets/wardogs/wardogs-faction-wallpaper.png') center / cover no-repeat;
}

.bundle-image.model-collection img {
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.58));
}

.bundle-copy {
  padding: 70px 0;
}

.bundle-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(35px, 4.5vw, 54px);
  line-height: 1.03;
  letter-spacing: -1.8px;
}

.bundle-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 24px 0;
  color: #c8d0d8;
  font-size: 17px;
  line-height: 1.6;
}

.feature-list.compact {
  margin: 0 0 28px;
  color: #eef4f8;
}

.bundle-price {
  display: grid;
  grid-template-columns: auto 1fr;
  width: fit-content;
  align-items: baseline;
  column-gap: 14px;
  margin-bottom: 24px;
}

.bundle-price span {
  grid-column: 1 / -1;
  color: #8da1b2;
}

.bundle-price strong {
  color: var(--yellow);
  font-size: 48px;
}

.bundle-price small {
  color: #aebac5;
}

.utility-product {
  display: grid;
  grid-template-columns: 210px 1fr 180px;
  align-items: center;
  gap: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.utility-product > a {
  display: block;
  background: #f6f6f6;
}

.utility-product img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.utility-product p:not(.product-code) {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.utility-price {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 26px;
  border-left: 1px solid var(--soft-line);
}

.utility-price strong {
  margin-top: 3px;
  color: var(--blue-dark);
  font-size: 36px;
}

/* WarDogs product pages */
.wardogs-product .image-stage {
  padding: 0;
  overflow: hidden;
  background: #eef0f2;
}

.wardogs-product .image-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wardogs-product .image-stage.model-view {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.96) 0 20%, rgba(255, 255, 255, 0.5) 48%, rgba(255, 255, 255, 0.08) 74%),
    url('/assets/wardogs/wardogs-faction-wallpaper.png') var(--wallpaper-position, center) / 168% auto no-repeat,
    #fff;
}

.wardogs-product .image-stage.model-view img {
  position: relative;
  z-index: 1;
  padding: 24px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 15px rgba(0, 0, 0, 0.56));
}

.wardogs-product .image-stage.model-view.display-scene {
  background: #d5c4a2 var(--display-stage) center / cover no-repeat;
}

.wardogs-product .image-stage.model-view.display-scene::before {
  position: absolute;
  z-index: 0;
  left: 47.25%;
  bottom: 9.5%;
  width: 5.5%;
  height: 12%;
  content: "";
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(90deg, #111517, #303538 48%, #0a0c0d);
  box-shadow: 0 6px 9px rgba(0, 0, 0, 0.38);
}

.wardogs-product .image-stage.model-view.display-scene::after {
  position: absolute;
  z-index: 0;
  left: 34%;
  bottom: 4%;
  width: 32%;
  height: 8%;
  content: "";
  border-radius: 50%;
  background: linear-gradient(#303538, #080a0b 68%);
  box-shadow: 0 12px 15px rgba(0, 0, 0, 0.46);
}

.wardogs-product .image-stage.model-view.display-scene img {
  align-self: end;
  width: 39%;
  height: auto;
  margin-bottom: 5.5%;
  padding: 0;
  filter: drop-shadow(0 13px 9px rgba(0, 0, 0, 0.6));
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.gallery-choice {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 62px;
  padding: 4px 10px 4px 4px;
  color: var(--blue-dark);
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-align: left;
}

.gallery-choice img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  background: #eef1f3;
}

.gallery-choice:first-child img {
  object-fit: contain;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2)),
    url('/assets/wardogs/wardogs-faction-wallpaper.png') var(--wallpaper-position, center) / 175% auto no-repeat,
    #fff;
}

.gallery-choice:nth-child(2) img {
  object-fit: cover;
}

.gallery-choice.selected {
  border: 2px solid var(--blue);
  box-shadow: inset 0 0 0 1px #fff;
}

.faction-line {
  width: 76px;
  height: 5px;
  margin-top: 14px;
  background: var(--faction-color, var(--blue));
}

.faction-swatch {
  background: var(--faction-color, var(--blue));
}

.color-chip.faction-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  border: 1px solid #333;
  vertical-align: -1px;
}

.manufacturing-profile {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 24px;
  background: var(--soft-line);
  border: 1px solid var(--soft-line);
}

.manufacturing-profile div {
  padding: 15px;
  background: #fff;
}

.manufacturing-profile strong,
.manufacturing-profile span {
  display: block;
}

.manufacturing-profile strong {
  color: var(--blue-dark);
  font-size: 13px;
}

.manufacturing-profile span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.collection-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.collection-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  min-height: 110px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
}

.collection-card img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.25)),
    url('/assets/wardogs/wardogs-faction-wallpaper.png') var(--wallpaper-position, center) / 175% auto no-repeat,
    #fff;
  filter: drop-shadow(0 7px 7px rgba(0, 0, 0, 0.35));
}

.collection-card span {
  padding: 16px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.collection-card:hover span {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .catalog-hero-grid,
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .catalog-hero-copy {
    padding: 32px 0;
  }

  .catalog-hero-media,
  .bundle-image {
    min-height: 260px;
    margin: 0 -20px;
  }

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

  .catalog-section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .utility-price {
    grid-column: 2;
    padding: 0;
    border: 0;
  }
}

@media (max-width: 640px) {
  .catalog-hero-copy h1 {
    font-size: 34px;
  }

  .hero-proof,
  .product-grid,
  .collection-cards,
  .manufacturing-profile {
    grid-template-columns: 1fr;
  }

  .catalog-hero-media,
  .bundle-image {
    min-height: 210px;
  }

  .catalog-section {
    padding-block: 34px;
  }

  .catalog-product-body > p:not(.product-code):not(.faction-origin):not(.product-size) {
    min-height: 0;
  }

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

  .utility-product > a {
    max-height: 300px;
    overflow: hidden;
  }

  .utility-price {
    grid-column: auto;
  }

  .collection-card {
    grid-template-columns: 88px 1fr;
  }
}
