/** Shopify CDN: Minification failed

Line 211:12 Expected ":"

**/
:root {
  --ink: #090b0c;
  --paper: #f7f5f0;
  --white: #ffffff;
  --aqua: #00aeea;
  --muted: #6d7477;
  --line: rgba(9, 11, 12, 0.12);
  --radius: 18px;
  --page: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.section {
  padding: 88px 0;
}

.eyebrow {
  color: var(--aqua);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.display {
  max-width: 760px;
  margin: 0.35rem 0 1rem;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.h2 {
  margin: 0.3rem 0 1.25rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--aqua);
  color: #001018;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 174, 234, 0.2);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
  color: #ffffff;
}

.button--ghost:hover {
  border-color: #ffffff;
  box-shadow: none;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 8, 9, 0.94);
  color: #ffffff;
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 30px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand span {
  color: var(--aqua);
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--aqua);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.icon-link:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: none;
  color: #ffffff;
  font-size: 1.35rem;
}

/* Hero */

.hero{
  position:relative;
  display:grid;
  align-items:center;
  min-height 400px;
  overflow:hidden;
  color:#fff;

  background-color:#030608;

  background-repeat:no-repeat;
  background-position:right center;
  background-size:520px auto;
}
/* Black-to-blue background and readable text area */
.hero::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.95) 0%,
      rgba(0,0,0,.88) 35%,
      rgba(0,0,0,.45) 60%,
      rgba(0,0,0,.08) 82%,
      transparent 100%
    );

  z-index:1;
}
.hero-logo {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);

  width: min(42vw, 400px);
  height: min(42vw, 400px);

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  pointer-events: none;
}
/* Soft bottom fade */
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 0, 0, 0.28)
  );
}
.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;

    margin-left:60px;

    padding:80px 0;
}
.hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

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

/* Product cards */

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

.product-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
}

.product-media {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #efede8;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-info {
  padding: 18px;
}

.product-title {
  font-weight: 850;
}

.price {
  margin-top: 4px;
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.text-link {
  color: #007ca8;
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

/* Trust strip */

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.trust-item {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  font-size: 0.84rem;
}

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

.trust-item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
}

/* Split section */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #080b0d;
  color: #ffffff;
}

.split-media {
  min-height: 580px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 8vw, 110px);
}

.split-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

/* Videos */

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

.video-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
}

.video-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  background-color: #111111;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  font-size: 2.6rem;
}

.video-copy {
  padding: 16px;
}

/* Newsletter */

.newsletter {
  padding: 48px 0;
  background: #061a22;
  color: #ffffff;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 36px;
}

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

.newsletter-form input {
  flex: 1;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* Footer */

.site-footer {
  padding: 52px 0 28px;
  background: #050708;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-grid h4 {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin: 0.4rem 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: #ffffff;
}

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

/* Collection and product pages */

.collection-hero,
.page-hero {
  padding: 90px 0 42px;
}

.collection-grid {
  padding-bottom: 90px;
}

.product-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  padding: 70px 0;
}

.product-gallery img {
  border-radius: var(--radius);
  background: #eeeeee;
}

.product-detail {
  position: sticky;
  top: 110px;
  align-self: start;
}

.product-detail h1 {
  margin: 0.2rem 0 1.2rem;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.product-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.product-form select,
.product-form input {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.rte {
  max-width: 800px;
}

/* Cart */

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

.cart-table td {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-product img {
  width: 90px;
  height: 90px;
  object-fit: contain; /* use 'cover' if you want it cropped instead */
  object-position: center;
  border-radius: 12px;
  display: block;
  flex-shrink: 0;
}

.empty {
  padding: 100px 0;
  text-align: center;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  z-index: 100;
  top: 20px;
  left: 20px;
  padding: 10px;
  background: #ffffff;
}

.placeholder {
  background:
    radial-gradient(
      circle at 82% 50%,
      rgba(0, 174, 234, 0.2),
      transparent 50%
    ),
    linear-gradient(
      90deg,
      #020405 0%,
      #05090c 58%,
      #071c25 100%
    );
}

/* Tablet */
@media (max-width: 900px) {
  .hero {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  /* Reset the logo/image area */
  .hero-media,
  .hero-image,
  .hero-visual,
  .hero-logo,
  .hero picture {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 25px 20px 5px !important;
  }
.hero-media img,
.hero-image img,
.hero-visual img,
.hero-logo img,
.hero > img {
  position: relative !important;
  inset: auto !important;
  transform: none !important;

  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}

  /* Reset the text area */
  .hero .hero-content.page-width {
    position: relative !important;
    inset: auto !important;
    transform: none !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 25px 20px 50px !important;
    text-align: center !important;
  }

  .hero .eyebrow {
    margin: 0 0 12px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    letter-spacing: 3px !important;
  }

  .hero .display {
    width: 100% !important;
    margin: 0 0 16px !important;
    font-size: clamp(42px, 12vw, 64px) !important;
    line-height: 0.95 !important;
    letter-spacing: -2px !important;
    white-space: normal !important;
  }

  .hero .hero-content > p {
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 0 26px !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
  }

  .hero .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 !important;
    gap: 12px !important;
  }

  .hero .hero-actions .button {
    width: 100% !important;
    min-height: 54px !important;
    margin: 0 !important;
    padding: 14px 18px !important;
    justify-content: center !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 480px) {
  .hero .hero-content.page-width {
    padding: 42px 18px 55px !important;
  }

  .hero .hero-content .display {
    font-size: clamp(38px, 12.5vw, 54px) !important;
    line-height: 0.94 !important;
    letter-spacing: -1.5px !important;
  }

  .hero .hero-content > p {
    font-size: 15px !important;
  }

  .hero .hero-actions .button {
    min-height: 52px !important;
    padding: 13px 16px !important;
    font-size: 13px !important;
  }
}
/* Product image gallery */

.product-main {
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: start;
}

.product-gallery {
  width: 100%;
  max-width: 560px;
  min-width: 0;
}

.product-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
}

.product-gallery__slide {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
}

.product-gallery__slide.is-active {
  display: block;
}

.product-gallery__slide img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 25px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
}

.product-gallery__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #090b0c;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.product-gallery__arrow--previous {
  left: 16px;
}

.product-gallery__arrow--next {
  right: 16px;
}

.product-gallery__thumbnails {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.product-gallery__thumbnail {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
}

.product-gallery__thumbnail.is-active {
  border-color: var(--aqua);
}

.product-gallery__thumbnail img {
  width: 100%;
  height: 100%;
  padding: 5px;
  object-fit: contain;
}

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

  .product-gallery {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .product-gallery {
    max-width: 100%;
  }

  .product-gallery__slide img {
    padding: 14px;
  }

  .product-gallery__arrow {
    width: 40px;
    height: 40px;
  }
}
/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
  padding: 90px 0;
}

/* Contact introduction */

.contact-hero {
  max-width: 820px;
  margin-bottom: 56px;
}

.contact-title {
  max-width: 760px;
  margin: 0.35rem 0 1rem;
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.contact-hero__text {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.contact-response-time {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-response-time::before {
  content: "";
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--aqua);
}

/* Contact cards */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 90px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 390px;
  padding: 30px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
}

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  margin-bottom: 28px;
  border: 1px solid rgba(0, 174, 234, 0.35);
  border-radius: 50%;
  background: rgba(0, 174, 234, 0.08);
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.contact-card h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.contact-card ul {
  margin: 0 0 26px;
  padding-left: 20px;
  color: var(--muted);
}

.contact-card li {
  margin: 7px 0;
}

.contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-top: auto;
  color: #007ca8;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.contact-card__link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.contact-card__link:hover::after {
  transform: translateX(4px);
}

/* Contact form area */

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(40px, 8vw, 100px);
  padding: clamp(40px, 7vw, 80px);
  overflow: hidden;
  border-radius: 28px;
  background: #071014;
  color: #ffffff;
}

.contact-form-intro {
  align-self: start;
}

.contact-form-intro .h2 {
  color: #ffffff;
}

.contact-form-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.contact-form-wrapper {
  min-width: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-field {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.contact-field label {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-field label span {
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-field select {
  cursor: pointer;
}

.contact-field select option {
  background: #ffffff;
  color: var(--ink);
}

.contact-field textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--aqua);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(0, 174, 234, 0.14);
}

.contact-form__button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.contact-form__success,
.contact-form__errors {
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.contact-form__success {
  border: 1px solid rgba(0, 174, 234, 0.28);
  background: rgba(0, 174, 234, 0.14);
  color: #ffffff;
}

.contact-form__errors {
  border: 1px solid rgba(255, 90, 90, 0.28);
  background: rgba(255, 70, 70, 0.14);
  color: #ffffff;
}

.contact-form__errors ul {
  margin: 0;
  padding-left: 20px;
}

/* Frequently asked questions */

.contact-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  padding: 100px 0;
}

.contact-faq__heading {
  align-self: start;
}

.contact-faq__heading .h2 {
  margin-bottom: 0;
}

.contact-faq__list {
  min-width: 0;
  border-top: 1px solid var(--line);
}

.contact-faq details {
  border-bottom: 1px solid var(--line);
}

.contact-faq summary {
  position: relative;
  padding: 24px 50px 24px 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.contact-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 2px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 174, 234, 0.3);
  border-radius: 50%;
  color: var(--aqua);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.contact-faq details[open] summary::after {
  content: "−";
}

.contact-faq details p {
  max-width: 650px;
  margin: 0;
  padding: 0 45px 24px 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Bottom support message */

.contact-support-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(36px, 6vw, 72px);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.contact-support-message > div {
  max-width: 750px;
}

.contact-support-message .h2 {
  margin-bottom: 18px;
}

.contact-support-message p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-support-message .button {
  flex-shrink: 0;
}

/* Tablet */

@media (max-width: 900px) {
  .contact-page {
    padding: 74px 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    margin-bottom: 74px;
  }

  .contact-card {
    min-height: auto;
  }

  .contact-form-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-form-intro > p:not(.eyebrow) {
    max-width: 620px;
  }

  .contact-faq {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 80px 0;
  }

  .contact-support-message {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* =========================================================
   SUPPORT PAGE
   ========================================================= */

.support-page {
  overflow: hidden;
}

.support-hero {
  max-width: 900px;
  padding: 110px 0 90px;
}

.support-hero__title {
  max-width: 850px;
}

.support-hero__text {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.support-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.support-button--outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.support-button--outline:hover {
  border-color: var(--aqua);
}

.support-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 100px;
}

.support-option {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.support-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
}

.support-option__number {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 35px;
  border: 1px solid rgba(0, 174, 234, 0.35);
  border-radius: 50%;
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 900;
}

.support-option h2 {
  margin: 3px 0 14px;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.support-option p:not(.eyebrow) {
  margin: 0 0 25px;
  color: var(--muted);
  line-height: 1.65;
}

.support-option .text-link {
  margin-top: auto;
}

.support-share-button {
  align-self: flex-start;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.support-donation {
  padding: 100px 0;
  background: #071014;
  color: #ffffff;
}

.support-donation__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.support-donation__copy > p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.support-impact-list {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.support-impact-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.support-impact-list span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 174, 234, 0.16);
  color: var(--aqua);
  font-size: 0.75rem;
}

.support-donation__card {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 24px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.support-donation__card h3 {
  margin: 5px 0 15px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.support-donation__description {
  margin-bottom: 25px;
  color: var(--muted);
}

.support-donation__description p {
  margin-top: 0;
}

.support-donation__form {
  display: grid;
  gap: 16px;
}

.support-field {
  display: grid;
  gap: 8px;
}

.support-field label {
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.support-field select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
}

.support-donation__button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.support-donation__button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.support-donation__fine-print {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.support-merch {
  padding: 110px 0;
}

.support-merch__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.support-merch__media {
  overflow: hidden;
  min-height: 560px;
  border-radius: 24px;
  background: #e9edf0;
}

.support-merch__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.support-image-placeholder {
  display: grid;
  place-items: center;
  min-height: 560px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.support-merch__copy > p:not(.eyebrow) {
  max-width: 550px;
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.75;
}

.support-video {
  padding: 100px 0;
  background: #061a22;
  color: #ffffff;
}

.support-video__heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 40px;
}

.support-video__heading > p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.support-video__embed {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 25px 75px rgba(0, 0, 0, 0.28);
}

.support-video__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.support-video__placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
}

.support-video__button {
  margin-top: 28px;
  text-align: center;
}

.support-thanks {
  padding: 110px 0;
  text-align: center;
}

.support-thanks__inner {
  max-width: 850px;
}

.support-thanks__inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.support-thanks__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.support-button--outline-dark {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

@media (max-width: 1000px) {
  .support-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-donation__inner,
  .support-merch__inner {
    grid-template-columns: 1fr;
  }

  .support-donation__inner {
    gap: 50px;
  }

  .support-donation__card {
    max-width: 700px;
  }

  .support-merch__media {
    min-height: 450px;
  }

  .support-merch__media img {
    min-height: 450px;
  }
}

@media (max-width: 700px) {
  .support-hero {
    padding: 75px 0 60px;
  }

  .support-hero__buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .support-hero__buttons .button {
    width: 100%;
  }

  .support-options {
    grid-template-columns: 1fr;
    padding-bottom: 70px;
  }

  .support-option {
    min-height: auto;
  }

  .support-donation,
  .support-video {
    padding: 75px 0;
  }

  .support-donation__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-donation__card {
    padding: 28px 22px;
  }

  .support-merch {
    padding: 75px 0;
  }

  .support-merch__media,
  .support-merch__media img,
  .support-image-placeholder {
    min-height: 350px;
  }

  .support-video__heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .support-thanks {
    padding: 75px 0;
  }

  .support-thanks__buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .support-thanks__buttons .button {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .hero {
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .hero .hero-content.page-width {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    padding: 36px 20px 50px !important;
    margin: 0 !important;
    gap: 0 !important;
  }

  .hero .hero-content .eyebrow {
    position: static !important;
    margin: 0 0 14px !important;
  }

  .hero .hero-content .display {
    position: static !important;
    width: 100% !important;
    margin: 0 0 16px !important;

    font-size: clamp(38px, 11vw, 58px) !important;
    line-height: 1 !important;
    letter-spacing: -1.5px !important;
  }

  .hero .hero-content > p {
    position: static !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 0 26px !important;

    font-size: 15px !important;
    line-height: 1.45 !important;
  }

  .hero .hero-actions {
    position: static !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 !important;

    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero .hero-actions .button {
    position: static !important;
    width: 100% !important;
    min-height: 54px !important;
    margin: 0 !important;
    padding: 14px 18px !important;

    font-size: 13px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
  }
}

/* =========================================================
   MOBILE HERO LOGO — SAFE OVERRIDE
   Keeps the rest of the original theme CSS unchanged.
   ========================================================= */
@media screen and (max-width: 900px) {
  .hero {
    position: relative !important;
    overflow: hidden !important;
    padding-top: 220px !important;
  }

  .hero > .hero-logo,
  .hero .hero-logo {
    position: absolute !important;
    top: 18px !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    inset: auto auto auto 50% !important;
    transform: translateX(-50%) !important;

    display: block !important;
    width: 200px !important;
    max-width: calc(100vw - 40px) !important;
    height: 200px !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;

    pointer-events: none !important;
    z-index: 3 !important;
  }

  .hero .hero-content.page-width {
    position: relative !important;
    z-index: 4 !important;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    padding-top: 190px !important;
  }

  .hero > .hero-logo,
  .hero .hero-logo {
    top: 14px !important;
    width: 175px !important;
    height: 175px !important;
  }
}
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}
/* =========================================================
   COMPLETE MOBILE WIDTH / HORIZONTAL SCROLL FIX
   Paste at the very bottom of the CSS file
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  position: relative;
}

/* Prevent children from forcing their parent wider */
main,
section,
header,
footer,
div,
article,
aside,
nav,
form {
  min-width: 0;
}

/* Keep all media inside the screen */
img,
svg,
video,
iframe,
picture,
canvas {
  max-width: 100% !important;
}

/* Fix page container width */
.page-width {
  width: min(calc(100% - 40px), var(--page)) !important;
  max-width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Prevent long text or links from causing overflow */
p,
h1,
h2,
h3,
h4 {
  overflow-wrap: anywhere;
}

/* =========================================================
   TABLET AND MOBILE
   ========================================================= */

@media screen and (max-width: 900px) {

  /* Hero */
  .hero {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 230px 0 0 !important;
    overflow: hidden !important;
  }

  /* Background-image logo */
  .hero-logo {
    position: absolute !important;
    top: 20px !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;

    width: 210px !important;
    max-width: calc(100% - 40px) !important;
    height: 210px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translateX(-50%) !important;

    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;

    pointer-events: none !important;
    z-index: 3 !important;
  }

  /* Remove oversized image rules */
  .hero-media,
  .hero-image,
  .hero-visual,
  .hero picture {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hero-media img,
  .hero-image img,
  .hero-visual img,
  .hero-logo img,
  .hero > img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    transform: none !important;
  }

  .hero .hero-content.page-width {
    position: relative !important;
    width: min(calc(100% - 40px), 620px) !important;
    max-width: 100% !important;
    min-width: 0 !important;

    margin: 0 auto !important;
    padding: 30px 0 50px !important;

    text-align: center !important;
    z-index: 4 !important;
  }

  .hero .display,
  .hero .hero-content > p,
  .hero .hero-actions {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  /* Product cards */
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  /* Videos */
  .video-grid {
    grid-template-columns: 1fr !important;
  }

  /* Trust strip */
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  /* Split image/text section */
  .split {
    grid-template-columns: 1fr !important;
  }

  .split-media {
    min-height: 420px !important;
  }

  /* Newsletter */
  .newsletter-inner {
    grid-template-columns: 1fr !important;
  }

  .newsletter-form {
    width: 100% !important;
    min-width: 0 !important;
  }

  .newsletter-form input {
    min-width: 0 !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  /* Product page */
  .product-main {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 35px !important;
  }

  .product-gallery,
  .product-detail {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  /* Section headings */
  .section-head {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  /* Contact and support sections */
  .contact-form-section,
  .contact-faq,
  .support-donation__inner,
  .support-merch__inner,
  .support-video__heading {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .contact-support-message {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .support-options {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .support-donation__card,
  .support-merch__media,
  .support-video__embed {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media screen and (max-width: 600px) {

  .page-width {
    width: calc(100% - 32px) !important;
  }

  .section {
    padding: 60px 0 !important;
  }

  .hero {
    padding-top: 205px !important;
  }

  .hero-logo {
    top: 18px !important;
    width: 185px !important;
    height: 185px !important;
  }

  .hero .hero-content.page-width {
    width: calc(100% - 36px) !important;
    padding: 25px 0 45px !important;
  }

  .hero .display {
    font-size: clamp(38px, 12vw, 54px) !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .hero-actions .button {
    width: 100% !important;
  }

  .product-grid,
  .trust-strip,
  .footer-grid,
  .support-options {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .newsletter-form {
    align-items: stretch !important;
    flex-direction: column !important;
  }

  .newsletter-form input,
  .newsletter-form .button {
    width: 100% !important;
  }

  .contact-form__row {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .contact-form-section,
  .support-donation__card {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .product-gallery__thumbnails {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
@media screen and (max-width: 900px) {

  .site-header {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    width: calc(100% - 32px) !important;
    max-width: 100% !important;
    height: 72px !important;

    margin: 0 auto !important;
    padding: 0 !important;
    gap: 12px !important;
  }

  .brand {
    display: block !important;
    flex: 1 1 auto !important;

    min-width: 0 !important;
    max-width: calc(100% - 130px) !important;

    font-size: 18px !important;
    line-height: 1 !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .brand span {
    display: inline !important;
  }

  /* Hide desktop navigation on mobile */
  .nav {
    display: none !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    gap: 10px !important;
  }

  .icon-link {
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;
  }

  .mobile-toggle {
    display: block !important;
    flex: 0 0 auto !important;

    padding: 6px !important;
    margin: 0 !important;

    font-size: 26px !important;
    line-height: 1 !important;
  }
}
.mobile-nav {
  display: block;
}

.mobile-nav[hidden] {
  display: none !important;
}

@media screen and (max-width: 900px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    overflow: visible !important;
  }

  .header-inner {
    position: relative !important;
  }

  .nav {
    display: none !important;
  }

  .mobile-toggle {
    position: relative !important;
    z-index: 10001 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    flex: 0 0 44px !important;

    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #ffffff !important;

    font-size: 28px !important;
    line-height: 1 !important;

    cursor: pointer !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 10000;

    display: block;
    width: 100% !important;
    max-width: 100% !important;

    padding: 10px 20px 22px !important;
    margin: 0 !important;

    background: #060809;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav[hidden] {
    display: none !important;
  }

  .mobile-nav a {
    display: block;
    padding: 14px 0;

    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;

    text-transform: uppercase;
    word-break: normal;
    overflow-wrap: normal;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }
}
.product-gallery__main {
  position: relative;
}

.product-gallery__arrow {
  z-index: 20;
  pointer-events: auto;
  cursor: pointer;
}

.product-gallery__slide {
  pointer-events: none;
}

.product-gallery__slide.is-active {
  pointer-events: auto;
}
/* Product options */

.product-options {
  display: grid;
  gap: 24px;
}

.product-option {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.product-option__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-bottom: 12px;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-option__heading strong {
  color: var(--muted);
}

.product-size-guide {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  text-decoration: underline;
  text-transform: none;
}

.product-option__values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-option__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.product-option__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 48px;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 750;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.product-option__button:hover {
  border-color: rgba(9, 11, 12, 0.45);
}

.product-option__input:checked + .product-option__button {
  border-color: var(--ink);
  background: rgba(0, 174, 234, 0.08);
  box-shadow: 0 0 0 1px var(--ink);
}

.product-option__button.is-unavailable {
  cursor: not-allowed;
  opacity: 0.35;
  text-decoration: line-through;
}

.product-option__button--color {
  min-width: 90px;
}

.product-color-swatch {
  display: block;
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  border: 1px solid rgba(9, 11, 12, 0.2);
  border-radius: 50%;
  background: var(--swatch-color);
}

.product-color-swatch--black {
  --swatch-color: #111111;
}

.product-color-swatch--white {
  --swatch-color: #ffffff;
}

.product-color-swatch--navy {
  --swatch-color: #1f2d4d;
}

.product-color-swatch--blue {
  --swatch-color: #587392;
}

.product-color-swatch--blue-jean {
  --swatch-color: #6f879d;
}

.product-color-swatch--red {
  --swatch-color: #a52a2a;
}

.product-color-swatch--green {
  --swatch-color: #456b4d;
}

.product-color-swatch--gray,
.product-color-swatch--grey {
  --swatch-color: #858585;
}

.product-color-swatch--sand {
  --swatch-color: #d2bd9b;
}

.product-stock {
  padding: 13px 15px;
  border-radius: 10px;
  background: rgba(57, 145, 76, 0.1);
  color: #276b37;
  font-size: 0.85rem;
  font-weight: 750;
}

.product-stock.is-sold-out {
  background: rgba(180, 45, 45, 0.09);
  color: #9d2929;
}

.product-quantity {
  display: grid;
  gap: 8px;
}

.product-quantity label {
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-form__submit {
  width: 100%;
  cursor: pointer;
}

.product-form__submit:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.product-notes {
  display: grid;
  gap: 15px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.product-notes div {
  display: grid;
  gap: 2px;
}

.product-notes strong {
  font-size: 0.85rem;
}

.product-notes span {
  color: var(--muted);
  font-size: 0.8rem;
}

.product-gallery__slide video,
.product-gallery__slide iframe,
.product-gallery__slide model-viewer {
  width: 100%;
  height: 100%;
}

@media (max-width: 560px) {
  .product-option__button {
    min-width: 52px;
    min-height: 44px;
    padding: 9px 13px;
  }

  .product-option__button--color {
    min-width: 82px;
  }
}