@font-face {
  font-family: "Source Sans 3";
  src: url("fonts/source-sans-3-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #191919;
  --ink-soft: #454545;
  --charcoal: #171717;
  --charcoal-2: #202020;
  --red: #e21c2a;
  --red-dark: #bd1420;
  --line: #e4e4e4;
  --paper: #ffffff;
  --wash: #f6f6f5;
  --gold: #f8c400;
  --shadow: 0 16px 48px rgb(0 0 0 / 12%);
  --radius: 2px;
  --shell: min(1160px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.panel-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

sup {
  font-size: 0.55em;
  line-height: 0;
}

.shell {
  margin-inline: auto;
  width: var(--shell);
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--paper);
  color: var(--ink);
  left: 12px;
  padding: 10px 16px;
  position: fixed;
  top: -80px;
  z-index: 1000;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 3px solid #62b6ff;
  outline-offset: 3px;
}

.site-header {
  background: var(--charcoal);
  color: #fff;
  position: relative;
  z-index: 50;
}

.utility-bar {
  background: #111;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  font-size: 0.78rem;
}

.utility-inner,
.utility-group {
  align-items: center;
  display: flex;
}

.utility-inner {
  justify-content: space-between;
  min-height: 34px;
}

.utility-group {
  gap: 24px;
}

.utility-right {
  gap: 18px;
}

.utility-bar a,
.language-switcher summary {
  color: rgb(255 255 255 / 77%);
  transition: color 160ms ease;
}

.utility-bar a:hover,
.language-switcher summary:hover {
  color: #fff;
}

.language-switcher {
  position: relative;
}

.language-switcher summary {
  list-style: none;
  padding-right: 16px;
  position: relative;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  content: "⌄";
  position: absolute;
  right: 0;
  top: -1px;
}

.language-switcher ul {
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--ink);
  list-style: none;
  margin: 8px 0 0;
  min-width: 160px;
  padding: 8px;
  position: absolute;
  right: 0;
  top: 100%;
}

.language-switcher li a {
  color: var(--ink-soft);
  display: block;
  padding: 7px 10px;
}

.language-switcher li a:hover {
  background: var(--wash);
  color: var(--ink);
}

.primary-bar {
  background: var(--charcoal);
}

.primary-inner {
  align-items: center;
  display: flex;
  min-height: 78px;
}

.brand {
  flex: 0 0 auto;
  margin-right: auto;
  padding: 8px 0;
}

.brand img {
  height: 54px;
  object-fit: contain;
  object-position: left center;
  width: 100px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 24px;
  margin-left: 26px;
}

.main-nav > a,
.main-nav button {
  background: transparent;
  border: 0;
  color: rgb(255 255 255 / 88%);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.025em;
  padding: 28px 0;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.main-nav > a:hover,
.main-nav button:hover {
  color: #fff;
}

.nav-dropdown {
  position: relative;
}

.subnav {
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--ink);
  min-width: 230px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: calc(100% - 8px);
}

.subnav a {
  display: block;
  font-size: 0.9rem;
  padding: 9px 10px;
}

.subnav a:hover {
  background: var(--wash);
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 750;
  justify-content: center;
  letter-spacing: 0.035em;
  min-height: 44px;
  padding: 11px 18px;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button-red:hover {
  background: var(--red-dark);
}

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

.button-light:hover {
  background: transparent;
  color: #fff;
}

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

.button-outline:hover {
  background: var(--red);
  color: #fff;
}

.button-full {
  width: 100%;
}

.header-buy {
  margin-left: 24px;
  min-height: 42px;
  white-space: nowrap;
}

.icon-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  display: inline-flex;
  justify-content: center;
}

.nav-toggle {
  display: none;
}

.cart-button {
  display: inline-flex;
  height: 42px;
  margin-left: 16px;
  position: relative;
  width: 42px;
}

.cart-count {
  align-items: center;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  font-size: 0.68rem;
  height: 18px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 18px;
}

.mega-menu {
  background: #fff;
  box-shadow: 0 18px 35px rgb(0 0 0 / 18%);
  color: var(--ink-soft);
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
}

.mega-inner {
  display: grid;
  gap: 58px;
  grid-template-columns: 0.8fr 2fr;
  padding-block: 42px;
}

.mega-intro {
  border-right: 1px solid var(--line);
  padding-right: 40px;
}

.mega-intro h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.mega-intro p {
  font-size: 0.94rem;
}

.text-link {
  color: var(--red);
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 10px;
}

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

.mega-columns h3 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.mega-columns a {
  display: block;
  font-size: 0.91rem;
  padding: 5px 0;
}

.mega-columns a:hover {
  color: var(--red);
}

.mega-subheading {
  margin-top: 24px;
}

.hero {
  background: #15202a url("images/hero-poster.webp") center / cover no-repeat;
  color: #fff;
  min-height: clamp(450px, 53vw, 650px);
  overflow: hidden;
  position: relative;
}

.hero-video,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(90deg, rgb(0 0 0 / 60%) 0%, rgb(0 0 0 / 20%) 55%, rgb(0 0 0 / 8%) 100%);
}

.hero-inner {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  min-height: inherit;
  padding-bottom: clamp(58px, 8vw, 94px);
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 670px;
}

.hero h1 {
  color: #fff;
  font-style: italic;
  font-weight: 850;
  letter-spacing: -0.035em;
  margin-bottom: 8px;
  text-shadow: 0 3px 22px rgb(0 0 0 / 30%);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 700;
  margin-bottom: 0;
}

.eyebrow {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #fff;
}

.video-control {
  align-items: center;
  background: rgb(0 0 0 / 35%);
  border: 1px solid rgb(255 255 255 / 38%);
  border-radius: 50%;
  bottom: 18px;
  color: #fff;
  display: flex;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 20px;
  width: 38px;
  z-index: 3;
}

.section {
  padding-block: clamp(72px, 8vw, 112px);
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.centered {
  text-align: center;
}

.narrow {
  margin-inline: auto;
  max-width: 850px;
}

.products-home {
  overflow: hidden;
}

.carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
}

.product-rail {
  display: grid;
  gap: 18px;
  grid-auto-columns: calc((100% - 54px) / 4);
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.product-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px 14px 22px;
  scroll-snap-align: start;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: #c8c8c8;
  box-shadow: 0 12px 28px rgb(0 0 0 / 8%);
  transform: translateY(-3px);
}

.product-card img {
  aspect-ratio: 1;
  margin-bottom: 12px;
  object-fit: contain;
  width: 100%;
}

.product-card > span {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 750;
  text-align: center;
}

.product-card small {
  color: #6b6b6b;
  display: block;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.carousel-arrow {
  align-items: center;
  background: var(--red);
  border: 0;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 1.7rem;
  height: 38px;
  justify-content: center;
  position: absolute;
  top: calc(50% - 19px);
  width: 38px;
  z-index: 2;
}

.carousel-arrow:disabled {
  opacity: 0.35;
}

.carousel-prev {
  left: -19px;
}

.carousel-next {
  right: -19px;
}

.action-row {
  margin-top: 26px;
}

.button-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.feature-band {
  background: linear-gradient(90deg, rgb(0 67 111 / 82%), rgb(0 112 160 / 62%)), url("images/diving-bg.webp") center / cover no-repeat;
  color: #fff;
  padding-block: clamp(66px, 7vw, 94px);
}

.feature-grid,
.warranty-grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 7vw, 90px);
  grid-template-columns: 1fr 1fr;
}

.feature-media {
  box-shadow: 0 18px 42px rgb(0 0 0 / 24%);
  display: block;
  overflow: hidden;
  position: relative;
}

.feature-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 300ms ease;
  width: 100%;
}

.feature-media:hover img,
.video-card:hover img {
  transform: scale(1.025);
}

.play-button {
  align-items: center;
  background: var(--red);
  border: 3px solid rgb(255 255 255 / 78%);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 0.84rem;
  height: 54px;
  justify-content: center;
  left: 50%;
  padding-left: 3px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
}

.feature-copy h2,
.distributor-band h2,
.insider-band h2 {
  color: #fff;
}

.feature-copy p {
  max-width: 570px;
}

.logo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.logo-card {
  align-items: center;
  border: 1px solid var(--line);
  display: flex;
  height: 150px;
  justify-content: center;
  padding: 24px;
}

.logo-card img {
  max-height: 84px;
  object-fit: contain;
  width: auto;
}

.testimonial-heading {
  margin-top: 72px;
}

.testimonial-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(2, 1fr);
}

.testimonial-card {
  border: 1px solid var(--line);
  margin: 0;
  min-height: 290px;
  padding: 38px;
  position: relative;
}

.quote-mark {
  color: #d7d7d7;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  left: 28px;
  line-height: 1;
  position: absolute;
  top: 24px;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 26px;
  text-align: right;
}

.testimonial-card blockquote {
  color: #676767;
  font-size: 0.98rem;
  margin-bottom: 24px;
}

.testimonial-card figcaption {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.distributor-band,
.insider-band {
  background-color: var(--charcoal-2);
  background-image: url("images/pattern.png");
  color: rgb(255 255 255 / 80%);
  padding-block: clamp(68px, 8vw, 104px);
}

.distributor-grid,
.insider-grid {
  align-items: center;
  display: grid;
  gap: clamp(54px, 9vw, 124px);
  grid-template-columns: 1fr 1fr;
}

.distributor-grid img {
  border: 8px solid rgb(255 255 255 / 5%);
  width: 100%;
}

.video-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, 1fr);
}

.video-card {
  color: var(--ink);
  text-align: center;
}

.video-thumb {
  display: block;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}

.video-thumb img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 300ms ease;
  width: 100%;
}

.video-card strong {
  font-size: 0.95rem;
}

.warranty-section {
  background: var(--wash);
}

.warranty-grid h2 {
  margin-bottom: 16px;
}

.warranty-grid .feature-media {
  box-shadow: none;
}

.insider-grid {
  grid-template-columns: 1.5fr 0.5fr;
}

.insider-grid > img {
  background: #fff;
  justify-self: end;
  max-width: 290px;
  padding: 14px;
}

.newsletter-form {
  display: flex;
  max-width: 640px;
}

.newsletter-form input {
  background: #fff;
  border: 1px solid #fff;
  border-radius: var(--radius) 0 0 var(--radius);
  min-height: 48px;
  min-width: 0;
  padding: 10px 16px;
  width: 100%;
}

.newsletter-form .button {
  border-radius: 0 var(--radius) var(--radius) 0;
  min-width: 132px;
}

.form-note {
  color: rgb(255 255 255 / 48%);
  font-size: 0.76rem;
  margin: 10px 0 0;
}

.site-footer {
  background: #121212;
  color: rgb(255 255 255 / 64%);
  font-size: 0.88rem;
  padding: 68px 0 34px;
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.15fr 1fr 1fr 1.05fr;
}

.site-footer h2 {
  color: var(--red);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.site-footer address {
  font-style: normal;
  margin-bottom: 12px;
}

.site-footer section > a,
.site-footer nav a {
  display: block;
  margin: 7px 0;
}

.site-footer a:hover {
  color: #fff;
}

.footer-subheading {
  margin-top: 28px;
}

.footer-payment img {
  height: auto;
  margin: 16px 0 28px;
  max-width: 230px;
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 10%);
  margin-top: 52px;
  padding-top: 28px;
}

.footer-bottom p {
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  float: right;
  gap: 9px;
  margin-left: 24px;
}

.social-links a {
  align-items: center;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 50%;
  color: var(--red);
  display: flex;
  font-size: 0.72rem;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.cart-drawer {
  background: #fff;
  bottom: 0;
  box-shadow: -20px 0 50px rgb(0 0 0 / 20%);
  max-width: 430px;
  padding: 26px;
  position: fixed;
  right: 0;
  top: 0;
  width: calc(100% - 34px);
  z-index: 101;
}

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

.cart-header h2 {
  font-size: 1.6rem;
  margin: 0;
}

.cart-header button {
  color: var(--ink);
  font-size: 2rem;
}

.cart-items {
  overflow: auto;
  padding-block: 24px;
}

.cart-item {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  padding: 14px 0;
}

.cart-item img {
  aspect-ratio: 1;
  background: var(--wash);
  object-fit: contain;
  width: 72px;
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.cart-item span {
  color: #717171;
  font-size: 0.82rem;
  margin-top: 4px;
}

.cart-remove {
  background: transparent;
  border: 0;
  color: var(--red);
  font-size: 0.75rem;
  padding: 8px 0;
}

.empty-state {
  color: #737373;
  text-align: center;
}

.cart-footer {
  border-top: 1px solid var(--line);
  bottom: 0;
  left: 26px;
  padding: 20px 0 26px;
  position: absolute;
  right: 26px;
}

.cart-footer p {
  display: flex;
  justify-content: space-between;
}

.page-scrim {
  background: rgb(0 0 0 / 56%);
  border: 0;
  inset: 0;
  position: fixed;
  z-index: 100;
}

.page-hero {
  background: linear-gradient(90deg, rgb(0 0 0 / 68%), rgb(0 38 62 / 40%)), url("images/diving-bg.webp") center / cover no-repeat;
  color: rgb(255 255 255 / 84%);
  min-height: 410px;
  padding: 86px 0 72px;
}

.page-hero .shell {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 18px;
  max-width: 900px;
}

.page-hero p:last-child {
  font-size: 1.08rem;
  margin-bottom: 0;
  max-width: 720px;
}

.compact-hero {
  min-height: 340px;
}

.compact-hero .shell {
  min-height: 170px;
}

.breadcrumbs {
  align-items: center;
  color: rgb(255 255 255 / 62%);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.78rem;
  gap: 8px;
  margin-bottom: 34px;
}

.breadcrumbs a:hover {
  color: #fff;
}

.product-breadcrumbs {
  padding-top: 34px;
}

.product-breadcrumbs .breadcrumbs {
  color: #777;
  margin-bottom: 0;
}

.product-breadcrumbs .breadcrumbs a:hover {
  color: var(--red);
}

.content-page {
  min-height: 400px;
  padding: clamp(70px, 8vw, 112px) 0;
}

.rich-content {
  font-size: 1.04rem;
  max-width: 920px;
}

.rich-content > h2,
.rich-content > h3,
.rich-content > h4 {
  margin-top: 2.2em;
}

.rich-content > h2:first-child,
.rich-content > h3:first-child {
  margin-top: 0;
}

.rich-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.rich-content h3 {
  font-size: 1.5rem;
}

.rich-content p,
.rich-content li {
  max-width: 820px;
}

.rich-content a:not(.button) {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.rich-content blockquote {
  border-left: 4px solid var(--red);
  color: var(--ink);
  font-size: 1.2rem;
  font-style: italic;
  margin: 32px 0;
  padding: 10px 0 10px 28px;
}

.rich-content ul,
.rich-content ol {
  padding-left: 1.35em;
}

.content-image {
  margin: 38px 0;
}

.content-image img {
  height: auto;
  max-height: 760px;
  object-fit: contain;
  width: auto;
}

.table-wrap {
  margin: 34px 0;
  overflow-x: auto;
}

.table-wrap table {
  border-collapse: collapse;
  min-width: 620px;
  width: 100%;
}

.table-wrap td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  vertical-align: top;
}

.embed {
  aspect-ratio: 16 / 9;
  margin: 36px 0;
  max-width: 900px;
}

.embed iframe,
.content-video {
  border: 0;
  height: 100%;
  width: 100%;
}

.lead {
  color: var(--ink);
  font-size: 1.25rem;
}

.product-layout {
  display: grid;
  gap: clamp(48px, 7vw, 90px);
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  padding-bottom: clamp(80px, 8vw, 116px);
  padding-top: 34px;
}

.product-gallery {
  min-width: 0;
}

.gallery-main {
  background: #fafafa;
  border: 1px solid var(--line);
  display: block;
  overflow: hidden;
  padding: 22px;
  position: relative;
  width: 100%;
}

.gallery-main > img {
  aspect-ratio: 1;
  object-fit: contain;
  width: 100%;
}

.gallery-main > span {
  background: rgb(255 255 255 / 86%);
  bottom: 14px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 10px;
  position: absolute;
  right: 14px;
  text-transform: uppercase;
}

.gallery-thumbs {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 12px;
}

.gallery-thumb {
  background: #fff;
  border: 1px solid var(--line);
  padding: 5px;
}

.gallery-thumb.is-active {
  border-color: var(--red);
}

.gallery-thumb img {
  aspect-ratio: 1;
  object-fit: contain;
  width: 100%;
}

.product-summary {
  padding-top: 20px;
}

.product-summary h1 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  margin-bottom: 18px;
}

.product-rating {
  font-size: 0.86rem;
}

.product-rating span {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.product-price {
  color: var(--ink);
  font-size: 1.75rem;
  font-weight: 750;
  margin: 18px 0 2px;
}

.stock {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.in-stock {
  color: #277b45;
}

.out-of-stock {
  color: #a73b3b;
}

.product-short {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.product-short h2,
.product-short h3 {
  font-size: 1.2rem;
  margin-top: 24px;
}

.product-short img {
  max-height: 90px;
  width: auto;
}

.purchase-row {
  align-items: end;
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.purchase-row label {
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.purchase-row input {
  border: 1px solid #bbb;
  display: block;
  height: 44px;
  margin-top: 5px;
  padding: 8px;
  text-align: center;
  width: 72px;
}

.purchase-row .button {
  flex: 1;
}

.purchase-row .button:disabled {
  background: #999;
  cursor: not-allowed;
}

.secure-note {
  color: #777;
  font-size: 0.78rem;
  margin-top: 12px;
}

.product-meta {
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  margin-top: 30px;
  padding-top: 20px;
}

.product-meta div {
  display: grid;
  grid-template-columns: 86px 1fr;
  margin: 6px 0;
}

.product-meta dt {
  color: var(--ink);
  font-weight: 750;
}

.product-meta dd {
  margin: 0;
}

.product-details {
  background: var(--wash);
  padding: clamp(76px, 8vw, 110px) 0;
}

.gallery-dialog {
  background: #fff;
  border: 0;
  box-shadow: var(--shadow);
  height: min(90vh, 900px);
  max-width: min(92vw, 1000px);
  padding: 36px;
  width: 100%;
}

.gallery-dialog::backdrop {
  background: rgb(0 0 0 / 74%);
}

.gallery-dialog > button {
  background: #fff;
  border: 1px solid var(--line);
  font-size: 2rem;
  height: 44px;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
}

.gallery-dialog img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.shop-hero {
  min-height: 460px;
}

.catalog-section {
  min-height: 500px;
  padding: 72px 0 110px;
}

.catalog-toolbar {
  align-items: end;
  display: grid;
  gap: 8px 18px;
  grid-template-columns: minmax(260px, 480px) 1fr;
  margin-bottom: 40px;
}

.catalog-toolbar > label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 750;
  grid-column: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-toolbar > p {
  align-self: center;
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  text-align: right;
}

.search-field {
  grid-column: 1;
  position: relative;
}

.search-field input,
.site-search-input {
  border: 1px solid #b8b8b8;
  min-height: 48px;
  padding: 10px 46px 10px 14px;
  width: 100%;
}

.search-field span {
  font-size: 1.4rem;
  position: absolute;
  right: 16px;
  top: 8px;
}

.catalog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.catalog-card {
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.catalog-image {
  background: #fafafa;
  display: block;
  overflow: hidden;
}

.catalog-image img {
  aspect-ratio: 1;
  object-fit: contain;
  padding: 12px;
  transition: transform 250ms ease;
  width: 100%;
}

.catalog-card:hover .catalog-image img {
  transform: scale(1.035);
}

.catalog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.catalog-category {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.catalog-card h2 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.catalog-price {
  color: var(--ink);
  font-weight: 750;
  margin: auto 0 18px;
}

.catalog-card .button {
  align-self: flex-start;
}

.catalog-empty {
  border: 1px solid var(--line);
  padding: 42px;
  text-align: center;
}

.checkout-page {
  min-height: 550px;
  padding: 80px 0 110px;
}

.checkout-grid {
  align-items: start;
  display: grid;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: 1fr 0.85fr;
}

.checkout-grid h2,
.order-form h2 {
  font-size: 1.8rem;
}

.checkout-total {
  border-top: 2px solid var(--ink);
  color: var(--ink);
  display: flex;
  font-size: 1.1rem;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
}

.order-form {
  background: var(--wash);
  padding: 34px;
}

.order-form label {
  color: var(--ink);
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.order-form input,
.order-form textarea {
  background: #fff;
  border: 1px solid #bbb;
  display: block;
  margin-top: 5px;
  min-height: 44px;
  padding: 9px 11px;
  resize: vertical;
  width: 100%;
}

.form-note-dark {
  color: #747474;
  font-size: 0.76rem;
  margin: 12px 0 0;
}

.search-page-label {
  color: var(--ink);
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.site-search-input {
  max-width: 680px;
}

.search-results {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 820px;
}

.search-results a {
  border: 1px solid var(--line);
  display: block;
  padding: 18px 20px;
}

.search-results strong,
.search-results span {
  display: block;
}

.search-results strong {
  color: var(--ink);
}

.search-results span {
  color: #777;
  font-size: 0.88rem;
  margin-top: 5px;
}

[dir="rtl"] .breadcrumbs,
[dir="rtl"] .product-meta div,
[dir="rtl"] .catalog-toolbar > p {
  direction: rtl;
  text-align: right;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 15px;
    margin-left: 16px;
  }

  .main-nav > a,
  .main-nav button {
    font-size: 0.72rem;
  }

  .header-buy {
    margin-left: 16px;
    padding-inline: 12px;
  }

  .product-rail {
    grid-auto-columns: calc((100% - 36px) / 3);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .utility-right > a {
    display: none;
  }

  .primary-inner {
    min-height: 66px;
  }

  .brand img {
    height: 44px;
    width: 82px;
  }

  .nav-toggle,
  .cart-button {
    display: inline-flex;
  }

  .nav-toggle {
    flex-direction: column;
    gap: 5px;
    height: 42px;
    margin-left: 12px;
    width: 42px;
  }

  .nav-toggle span:not(.sr-only) {
    background: #fff;
    height: 2px;
    transition: transform 180ms ease, opacity 180ms ease;
    width: 22px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .cart-button {
    height: 42px;
    margin-left: auto;
    position: relative;
    width: 42px;
  }

  .cart-count {
    align-items: center;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    font-size: 0.68rem;
    height: 18px;
    justify-content: center;
    position: absolute;
    right: 2px;
    top: 2px;
    width: 18px;
  }

  .header-buy {
    margin-left: 8px;
  }

  .main-nav {
    align-items: stretch;
    background: #1b1b1b;
    border-top: 1px solid rgb(255 255 255 / 10%);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    margin: 0;
    max-height: calc(100vh - 100px);
    overflow: auto;
    padding: 12px 20px 24px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a,
  .main-nav button {
    border-bottom: 1px solid rgb(255 255 255 / 8%);
    font-size: 0.86rem;
    padding: 15px 2px;
    text-align: left;
    width: 100%;
  }

  .subnav {
    background: #242424;
    box-shadow: none;
    color: #fff;
    padding-left: 16px;
    position: static;
  }

  .mega-menu {
    max-height: calc(100vh - 100px);
    overflow: auto;
    position: fixed;
    top: 100px;
  }

  .mega-inner {
    gap: 30px;
    grid-template-columns: 1fr;
    padding-block: 26px 44px;
  }

  .mega-intro {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 0 0 24px;
  }

  .mega-columns {
    gap: 26px;
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 540px;
  }

  .hero-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 56px;
  }

  .hero-inner > .button {
    margin-top: 24px;
  }

  .product-rail {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .carousel-prev {
    left: -12px;
  }

  .carousel-next {
    right: -12px;
  }

  .feature-grid,
  .warranty-grid,
  .distributor-grid,
  .insider-grid {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .feature-copy {
    order: -1;
  }

  .insider-grid > img {
    display: none;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .product-gallery {
    max-width: 680px;
  }

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

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .utility-inner {
    min-height: 32px;
  }

  .utility-group {
    gap: 12px;
  }

  .utility-group a {
    font-size: 0.68rem;
  }

  .utility-group a:nth-child(2) {
    display: none;
  }

  .header-buy {
    font-size: 0.68rem;
    min-height: 34px;
    padding: 8px 10px;
  }

  .hero {
    min-height: 510px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgb(0 0 0 / 58%), rgb(0 0 0 / 8%) 72%);
  }

  .hero-video {
    object-position: 53% center;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .hero-copy .eyebrow {
    display: none;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .product-rail {
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
  }

  .product-card {
    padding: 10px 8px 16px;
  }

  .product-card > span {
    font-size: 0.82rem;
  }

  .carousel-arrow {
    height: 34px;
    width: 34px;
  }

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

  .logo-card {
    height: 116px;
    padding: 18px;
  }

  .testimonial-heading {
    margin-top: 54px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 28px 24px;
  }

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

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input,
  .newsletter-form .button {
    border-radius: var(--radius);
    width: 100%;
  }

  .footer-grid {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 350px;
    padding: 62px 0 52px;
  }

  .page-hero .shell {
    min-height: 210px;
  }

  .product-layout {
    padding-top: 24px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .purchase-row {
    align-items: stretch;
    flex-direction: column;
  }

  .purchase-row input {
    width: 100%;
  }

  .catalog-toolbar {
    display: block;
  }

  .catalog-toolbar > label {
    display: block;
    margin-bottom: 6px;
  }

  .catalog-toolbar > p {
    margin-top: 10px;
    text-align: left;
  }

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

  .order-form {
    padding: 24px;
  }

  .cart-item {
    grid-template-columns: auto 1fr;
  }

  .cart-remove {
    grid-column: 2;
    justify-self: start;
  }

  .social-links {
    float: none;
    margin: 0 0 20px;
  }
}

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

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

  .hero-video {
    display: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .video-control,
  .carousel-arrow,
  .cart-drawer,
  .page-scrim {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 60px 0;
  }
}
