/** Shopify CDN: Minification failed

Line 1068:2 Expected identifier but found "."
Line 1436:0 Expected "}" to go with "{"

**/
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --hh-bg: #050505;
  --hh-panel: #090909;
  --hh-text: #f4f4f4;
  --hh-muted: #8a8a8a;
  --hh-border: rgba(255,255,255,.10);
  --hh-orange: #f37021;
  --hh-offwhite: #efefef;
  --hh-container: 1440px;
}

html,
body {
  background: var(--hh-bg);
  color: var(--hh-text);
}

body,
input,
button,
textarea,
select {
  font-family: 'Inter', Arial, sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  font-family: 'Anton', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.page-wrapper,
.content-for-layout,
.shopify-section,
main#MainContent {
  background: var(--hh-bg);
}

.page-wrapper { max-width: none; }

#header-group,
footer,
.shopify-section-group-header-group,
.shopify-section-group-footer-group {
  background: var(--hh-bg);
}

.hh-shell {
  width: min(calc(100% - 28px), var(--hh-container));
  margin: 0 auto;
}

.hh-border-top { border-top: 1px solid var(--hh-border); }
.hh-border-bottom { border-bottom: 1px solid var(--hh-border); }

.hh-mono {
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .35em;
}

.hh-section {
  position: relative;
  width: 100%;
  background: var(--hh-bg);
}

.hh-link,
.hh-link:visited {
  color: var(--hh-text);
  text-decoration: none;
}

.hh-muted { color: var(--hh-muted); }
.hh-orange { color: var(--hh-orange) !important; }

/* HEADER */
.hh-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  color: #fff !important;
  white-space: nowrap;
}

.hh-logo__slash {
  color: var(--hh-orange) !important;
  padding: 0 2px;
}

.hh-announcement {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.hh-announcement .hh-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
}

.hh-announcement__item {
  font-size: 11px;
  color: #bcbcbc;
}

.hh-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.hh-header .hh-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  gap: 18px;
}

.hh-nav,
.hh-header__actions {
  display: flex;
  gap: 30px;
  align-items: center;
}

.hh-header__actions { justify-content: flex-end; }

.hh-nav a,
.hh-header__actions a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: .18em;
  color: #fff;
  text-decoration: none;
}

.hh-header__bag {
  display: inline-flex;
  align-items: center;
}

.hh-cart-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  border-radius: 999px;
  background: #ededed;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.hh-mobile-only { display: none; }

/* MOBILE DRAWER */
.hh-menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hh-menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 0;
  padding: 0;
  background: #fff;
  flex: none;
}

.hh-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(340px, 88vw);
  height: 100dvh;
  padding: 24px;
  background: #050505;
  border-right: 1px solid rgba(255,255,255,.12);
  transform: translateX(-105%);
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
  overflow-y: auto;
  z-index: 10001;
}

.hh-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.hh-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.hh-drawer__logo { font-size: 22px; }

.hh-drawer-close {
  display: inline-flex;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.hh-drawer-nav {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.hh-drawer-nav a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  color: #fff;
  text-decoration: none;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.hh-drawer-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(0,0,0,.68);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 10000;
}

.hh-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.hh-drawer-open { overflow: hidden; }

/* HERO */
.hh-hero { padding: 42px 0 44px; }

.hh-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #9d9d9d;
  font-size: 12px;
  margin-bottom: 28px;
}

.hh-kicker__line {
  width: 40px;
  height: 2px;
  background: var(--hh-orange);
  display: inline-block;
}

.hh-hero__layout {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(320px,.9fr);
  gap: 48px;
  align-items: start;
}

.hh-display {
  font-family: 'Anton', Impact, sans-serif;
  text-transform: uppercase;
  line-height: .88;
  font-size: clamp(4rem,9vw,10rem);
  margin: 0;
}

.hh-display__outlined {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.8px var(--hh-offwhite);
}

.hh-display__solid,
.hh-display__solid2 {
  display: block;
  color: var(--hh-offwhite);
}

.hh-display__solid2 { margin-top: .06em; }
.hh-hero__text { max-width: 620px; }

.hh-body-lg {
  color: #8b8b8b;
  font-size: clamp(20px,2vw,28px);
  line-height: 1.6;
  margin-top: 34px;
}

.hh-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.hh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 62px;
  padding: 0 34px;
  border: 1px solid rgba(255,255,255,.16);
  text-decoration: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .22em;
  white-space: nowrap;
}

.hh-btn--light {
  background: #efefef;
  color: #111;
  border-color: #efefef;
}

.hh-btn--ghost {
  background: transparent;
  color: var(--hh-text);
}

/* STATS */
.hh-stats { padding: 34px 0 32px; }

.hh-stats__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.hh-stat__number {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(2.7rem,5vw,4.5rem);
  line-height: .9;
  margin: 0 0 6px;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.hh-stat__label {
  font-family: 'IBM Plex Mono', monospace;
  color: #9d9d9d;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .34em;
}

/* IMAGES */
.hh-image-panel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hh-image-panel img,
.hh-callout-image,
.hh-boxer-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hh-image-tag {
  position: absolute;
  right: 16px;
  bottom: 28px;
  max-width: calc(100% - 32px);
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.65);
  color: #fff;
}

.hh-image-tag .hh-mono {
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .28em;
  color: #fff !important;
}

/* MARQUEE */
.hh-marquee-wrap {
  background: #ececec;
  color: #111;
  overflow: hidden;
}

.hh-marquee {
  display: flex;
  width: max-content;
  animation: hh-scroll 22s linear infinite;
}

.hh-marquee__item {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(2.3rem,3vw,3.8rem);
  line-height: 1;
  padding: 20px 18px;
  white-space: nowrap;
  text-transform: uppercase;
}

.hh-marquee__star {
  font-size: clamp(2rem,2vw,2.6rem);
  color: var(--hh-orange);
  padding: 18px 24px 0;
}

@keyframes hh-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* PRODUCTS */
.hh-products { padding: 56px 0 72px; }

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

.hh-section-head__eyebrow {
  color: #9d9d9d;
  font-size: 12px;
  margin-bottom: 14px;
}

.hh-section-head__title {
  font-size: clamp(3.5rem,8vw,7rem);
  line-height: .92;
  margin: 0;
  color: #fff !important;
}

.hh-viewall {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--hh-text);
  text-decoration: none;
  border-bottom: 1px solid var(--hh-border);
  padding-bottom: 8px;
}

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

.hh-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hh-product-card__imagewrap {
  position: relative;
  background: #121212;
}

.hh-product-card__imagewrap img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hh-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: auto;
  max-width: max-content;
  padding: 8px 12px;
  background: rgba(0,0,0,.78);
  border: 1px solid rgba(255,255,255,.20);
  color: #fff !important;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .22em;
  white-space: nowrap;
  z-index: 2;
}

.hh-count {
  position: absolute;
  top: 18px;
  right: 14px;
  color: rgba(255,255,255,.65) !important;
  font-size: 10px;
  letter-spacing: .18em;
  z-index: 2;
}

.hh-product-card__meta { padding-top: 18px; }

.hh-product-card__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.hh-product-card__title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  max-width: calc(100% - 90px);
}

.hh-product-card__price {
  text-align: right;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 15px;
  color: var(--hh-orange) !important;
  white-space: nowrap;
}

.hh-product-card__compare {
  color: #8b8b8b;
  text-decoration: line-through;
  margin-right: 8px;
}

.hh-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.hh-size-chip {
  min-width: 40px;
  height: 38px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hh-border);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #c2c2c2;
  white-space: nowrap;
}

.hh-add-form .hh-btn {
  width: 100%;
  min-height: 54px;
  background: transparent;
  color: var(--hh-text);
  font-size: 13px;
}

.hh-full-image { padding-bottom: 20px; }

/* MANIFESTO */
.hh-manifesto { padding: 62px 0 24px; }

.hh-manifesto__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}

.hh-manifesto__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-content: start;
}

.hh-manifesto__copy p {
  margin: 0;
  color: #8b8b8b;
  font-size: clamp(19px,1.8vw,30px);
  line-height: 1.65;
}

/* SPECS */
.hh-specs { padding: 24px 0 46px; }

.hh-spec-grid,
.hh-benefits-grid,
.hh-footer-main__grid,
.hh-footer-bottom__grid {
  display: grid;
}

.hh-spec-grid {
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
}

.hh-spec { padding: 22px 0; }

.hh-spec__value {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(2rem,2.6vw,3.1rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: #fff !important;
}

.hh-spec__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .3em;
  color: #9d9d9d;
  text-transform: uppercase;
}

/* BENEFITS */
.hh-benefits-grid {
  grid-template-columns: repeat(2,1fr);
  border-top: 1px solid var(--hh-border);
  border-left: 1px solid rgba(255,255,255,.06);
}

.hh-benefit {
  padding: 44px 40px 48px;
  border-right: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  min-height: 220px;
}

.hh-benefit__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  letter-spacing: .26em;
  color: var(--hh-orange);
  margin-bottom: 22px;
}

.hh-benefit__title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(2.2rem,2vw,3rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: #fff !important;
}

.hh-benefit__text {
  margin: 0;
  color: #8b8b8b;
  font-size: clamp(18px,1.6vw,28px);
  line-height: 1.6;
}

/* SIGNUP */
.hh-signup { padding: 72px 0; }
.hh-signup__intro { max-width: 980px; }

.hh-signup__title {
  font-size: clamp(4rem,9vw,8rem);
  line-height: .92;
  margin: 0 0 24px;
  color: #fff !important;
}

.hh-signup__title .hh-orange {
  display: inline-block;
  color: var(--hh-orange) !important;
}

.hh-signup__text {
  color: #8b8b8b;
  font-size: clamp(20px,1.9vw,31px);
  line-height: 1.6;
  max-width: 1080px;
}

.hh-form-wrap {
  margin-top: 48px;
  max-width: 1200px;
}

.hh-input-label {
  display: block;
  margin-bottom: 16px;
  color: #9d9d9d;
  font-size: 12px;
}

.hh-email-form__group {
  display: grid;
  grid-template-columns: 1fr 190px;
}

.hh-email-input {
  width: 100%;
  min-height: 68px;
  background: #000;
  color: #fff;
  border: 1px solid var(--hh-border);
  padding: 0 22px;
  font-size: 18px;
}

.hh-email-input::placeholder { color: #6f6f6f; }

.hh-form-button {
  min-height: 68px;
  border: 1px solid #fff;
  background: #fff;
  color: #111;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .22em;
  cursor: pointer;
}

.hh-form-note,
.hh-form-message {
  margin-top: 14px;
  color: #8b8b8b;
  font-size: 12px;
  line-height: 1.7;
}

.hh-form-message { color: #d6d6d6; }

/* FOOTER */
.hh-footer-main { padding: 72px 0 52px; }

.hh-footer-main__grid {
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 56px;
}

.hh-footer-heading {
  font-family: 'IBM Plex Mono', monospace;
  color: #9d9d9d;
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hh-footer-copy {
  color: #8b8b8b;
  font-size: clamp(20px,1.5vw,29px);
  line-height: 1.55;
  margin-top: 28px;
  max-width: 500px;
}

.hh-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hh-footer-list li + li { margin-top: 18px; }

.hh-footer-list a {
  color: var(--hh-text);
  text-decoration: none;
  font-size: clamp(20px,1.6vw,28px);
  line-height: 1.2;
}

.hh-footer-bottom { padding: 26px 0 40px; }

.hh-footer-bottom__grid {
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.hh-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.hh-socials a,
.hh-copyright {
  font-family: 'IBM Plex Mono', monospace;
  color: #9d9d9d;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .28em;
  line-height: 1.8;
  text-transform: uppercase;
}

/* MOBILE */
@media screen and (max-width: 989px) {
  .hh-desktop-only { display: none !important; }
  .hh-mobile-only { display: block; }

  .hh-announcement .hh-shell { justify-content: flex-start; }
  .hh-announcement__item--hide-mobile { display: none; }

  .hh-header .hh-shell {
    grid-template-columns: 38px minmax(0,1fr) auto !important;
    min-height: 60px !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .hh-menu-toggle { display: inline-flex !important; }
  .hh-nav { display: none !important; }

  .hh-header .hh-logo {
    justify-self: start;
    justify-content: flex-start;
    font-size: 22px !important;
  }

  .hh-header__actions {
    justify-self: end;
    justify-content: flex-end;
    gap: 0;
  }

  .hh-header__actions .hh-link:not(.hh-header__bag) {
    display: none !important;
  }

  .hh-header__bag {
    display: inline-flex !important;
    align-items: center;
    font-size: 12px !important;
    letter-spacing: .14em;
  }

  .hh-cart-pill {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .hh-hero { padding: 34px 0 28px; }
  .hh-hero__layout { grid-template-columns: 1fr; gap: 20px; }
  .hh-display { font-size: clamp(4.1rem,15vw,6rem); }

  .hh-body-lg {
    font-size: 17px;
    line-height: 1.9;
    margin-top: 28px;
  }

  .hh-button-row { gap: 16px; margin-top: 34px; }
  .hh-btn { min-height: 60px; padding: 0 32px; font-size: 13px; }

  .hh-btn--ghost {
    padding-inline: 0;
    border: none;
    border-bottom: 1px solid var(--hh-border);
  }

  .hh-stats { padding: 24px 0; }
  .hh-stats__grid { gap: 18px; }
  .hh-stat__number { font-size: 3rem; }

  .hh-stat__label {
    font-size: 11px;
    letter-spacing: .28em;
  }

  .hh-image-tag {
    right: 16px;
    left: 16px;
    bottom: 28px;
    padding: 16px 18px;
  }

  .hh-marquee__item {
    font-size: 2.2rem;
    padding: 18px 12px;
  }

  .hh-marquee__star { padding: 14px 18px 0; }

  .hh-products { padding: 46px 0 56px; }

  .hh-section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .hh-section-head__title { font-size: 4rem; }

  .hh-product-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 12px;
  }

  .hh-product-card__title {
    font-size: 12px !important;
    line-height: 1.2;
    max-width: 65%;
  }

  .hh-product-card__price { font-size: 12px !important; }

  .hh-sizes {
    gap: 5px;
    margin: 12px 0;
  }

  .hh-size-chip {
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
    font-size: 9px;
  }

  .hh-add-form .hh-btn {
    min-height: 42px;
    padding: 0 6px;
    font-size: 9px;
    letter-spacing: .12em;
  }

  .hh-manifesto { padding: 50px 0 16px; }
  .hh-manifesto__grid { grid-template-columns: 1fr; gap: 28px; }
  .hh-manifesto__copy { grid-template-columns: 1fr; gap: 24px; }
  .hh-manifesto__copy p { font-size: 19px; }

  .hh-spec-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 22px 18px;
  }

  .hh-spec { padding: 0 0 14px; }
  .hh-spec__value { font-size: 2rem; }

  .hh-benefits-grid { grid-template-columns: 1fr; }

  .hh-benefit {
    min-height: auto;
    padding: 34px 30px 38px;
  }

  .hh-benefit__title { font-size: 2.4rem; }
  .hh-benefit__text { font-size: 18px; }

  .hh-signup { padding: 54px 0 56px; }
  .hh-signup__title { font-size: 4.2rem; }
  .hh-signup__text { font-size: 18px; }
  .hh-form-wrap { margin-top: 40px; }

  .hh-email-form__group {
    grid-template-columns: 1fr 108px;
  }

  .hh-email-input,
  .hh-form-button {
    min-height: 66px;
  }

  .hh-footer-main { padding: 56px 0 36px; }

  .hh-footer-main__grid,
  .hh-footer-bottom__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hh-footer-copy {
    font-size: 17px;
    margin-top: 18px;
  }

  .hh-footer-list a { font-size: 17px; }
  .hh-socials { gap: 26px; }
  /* SMALLER MOBILE HEADER FONT */
@media screen and (max-width: 989px) {
  .hh-header .hh-logo {
    font-size: 18px !important;
  }

  .hh-header__bag {
    font-size: 10px !important;
  }

  .hh-cart-pill {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
  }

  .hh-drawer-nav a {
    font-size: 24px !important;
  }

  .hh-drawer__logo {
    font-size: 19px !important;
  }
}.hh-header .hh-logo {
  font-size: 16px !important;
}..hh-header__bag .hh-cart-pill {
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  padding: 0 !important;
  margin-left: 6px !important;

  border-radius: 0 !important;
  background: transparent !important;
  color: #f37021 !important;
  border: 0 !important;

  font-size: 13px !important;
  font-weight: 700 !important;
}
}/* REAL SELECTABLE PRODUCT SIZES — FINAL FIX */

.hh-product-card .hh-sizes {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 16px 0 18px !important;
  padding: 0 !important;
}

.hh-product-card .hh-size-input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hh-product-card .hh-size-chip {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 100% !important;
  min-width: 0 !important;
  height: 38px !important;
  padding: 0 4px !important;
  margin: 0 !important;

  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: transparent !important;
  color: #bdbdbd !important;

  font-family: 'IBM Plex Mono', monospace !important;
  font-size: 10px !important;
  line-height: 1 !important;
  text-align: center !important;
  white-space: nowrap !important;

  cursor: pointer !important;
  box-sizing: border-box !important;
  transition: background .2s ease, color .2s ease, border-color .2s ease !important;
}

.hh-product-card .hh-size-chip:hover {
  color: #ffffff !important;
  border-color: #ffffff !important;
}

.hh-product-card .hh-size-input:checked + .hh-size-chip {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: #ffffff !important;
}

.hh-product-card .hh-size-input:disabled + .hh-size-chip {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
  text-decoration: line-through !important;
}

/* Two product cards across on mobile */
@media screen and (max-width: 989px) {
  .hh-product-card .hh-sizes {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    margin: 12px 0 14px !important;
  }

  .hh-product-card .hh-size-chip {
    height: 34px !important;
    font-size: 9px !important;
    padding: 0 2px !important;
  }
}/* COLLECTION PAGE TEXT FIX */

body.template-collection,
body.template-collection .content-for-layout,
body.template-collection .shopify-section,
body.template-collection .collection,
body.template-collection .collection *,
body.template-collection .product-card,
body.template-collection .product-card * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Keep prices orange */
body.template-collection .price,
body.template-collection .price *,
body.template-collection [class*="price"] {
  color: #f37021 !important;
  -webkit-text-fill-color: #f37021 !important;
}

/* Keep smaller secondary text gray */
body.template-collection .caption,
body.template-collection .subheading,
body.template-collection .product-card__vendor,
body.template-collection .product-card__subtitle,
body.template-collection [class*="secondary"],
body.template-collection [class*="muted"] {
  color: #8a8a8a !important;
  -webkit-text-fill-color: #8a8a8a !important;
}/* COLLECTION PRODUCT CARDS — MATCH HOMEPAGE */

main[data-template="collection"] .product-grid {
  gap: 14px !important;
}

main[data-template="collection"] .product-grid__item {
  background: #050505 !important;
  border: 0 !important;
}

main[data-template="collection"] .product-card,
main[data-template="collection"] .product-card__content,
main[data-template="collection"] .product-grid__card {
  background: #050505 !important;
  color: #ffffff !important;
}

main[data-template="collection"] .product-card__content {
  gap: 10px !important;
}

/* PRODUCT IMAGE BOX */
main[data-template="collection"] .card-gallery,
main[data-template="collection"] .product-card-gallery,
main[data-template="collection"] slideshow-component {
  background: #f1f1f1 !important;
  overflow: hidden !important;
}

main[data-template="collection"] .product-card img {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: contain !important;
  background: #f1f1f1 !important;
}

/* PRODUCT TITLE */
main[data-template="collection"] .product-card h3,
main[data-template="collection"] .product-card h4,
main[data-template="collection"] .product-card [class*="title"] {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: 'Anton', Impact, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
}

/* PRICE */
main[data-template="collection"] .product-card .price,
main[data-template="collection"] .product-card .price *,
main[data-template="collection"] .product-card product-price,
main[data-template="collection"] .product-card [class*="price"] {
  color: #f37021 !important;
  -webkit-text-fill-color: #f37021 !important;
  font-family: 'Anton', Impact, sans-serif !important;
  font-size: 14px !important;
}

/* OLD PRICE */
main[data-template="collection"] .product-card s,
main[data-template="collection"] .product-card .compare-at-price,
main[data-template="collection"] .product-card [class*="compare"] {
  color: #858585 !important;
  -webkit-text-fill-color: #858585 !important;
  text-decoration: line-through !important;
  margin-right: 5px !important;
}

/* SALE BADGE */
main[data-template="collection"] .product-badges {
  top: 12px !important;
  left: 12px !important;
  right: auto !important;
}

main[data-template="collection"] .product-badges__badge {
  width: auto !important;
  padding: 8px 11px !important;
  background: rgba(5,5,5,.85) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  border-radius: 0 !important;
  font-family: 'IBM Plex Mono', monospace !important;
  font-size: 9px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
}@media screen and (max-width: 749px) {
  main[data-template="collection"] .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 10px !important;
    padding: 0 4px !important;
  }

  main[data-template="collection"] .product-card h3,
  main[data-template="collection"] .product-card h4,
  main[data-template="collection"] .product-card [class*="title"] {
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  main[data-template="collection"] .product-card .price,
  main[data-template="collection"] .product-card [class*="price"] {
    font-size: 13px !important;
  }
/* COLLECTION PAGE — MATCH HOMEPAGE TYPOGRAPHY */

main[data-template="collection"] .product-card h3,
main[data-template="collection"] .product-card h4,
main[data-template="collection"] .product-card [class*="title"] {
    font-family: 'Anton', sans-serif !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 0 !important;
    line-height: .92 !important;
    font-size: 30px !important;
    color: #fff !important;
    margin: 0 !important;
}

main[data-template="collection"] .price,
main[data-template="collection"] .price *,
main[data-template="collection"] [class*="price"] {
    font-family: 'Anton', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    font-size: 30px !important;
    color: #f37021 !important;
}

main[data-template="collection"] s,
main[data-template="collection"] .compare-at-price {
    font-family: 'Anton', sans-serif !important;
    font-size: 24px !important;
    color: #7b7b7b !important;
}/* COLLECTION CARDS — MATCH HOMEPAGE PRODUCT STYLE */

main[data-template="collection"] .product-card h3,
main[data-template="collection"] .product-card h4,
main[data-template="collection"] .product-card [class*="title"],
main[data-template="collection"] .product-card a[href*="/products/"] {
  font-family: 'Anton', Impact, sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  max-width: 72% !important;
  margin: 0 !important;
}

/* CURRENT PRICE */
main[data-template="collection"] .product-card .price,
main[data-template="collection"] .product-card .price *,
main[data-template="collection"] .product-card [class*="price"] {
  font-family: 'Anton', Impact, sans-serif !important;
  font-size: 14px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  color: #f37021 !important;
  -webkit-text-fill-color: #f37021 !important;
  white-space: nowrap !important;
}

/* OLD PRICE */
main[data-template="collection"] .product-card s,
main[data-template="collection"] .product-card [class*="compare"] {
  font-size: 12px !important;
  color: #777777 !important;
  -webkit-text-fill-color: #777777 !important;
}

/* TIGHTEN PRODUCT INFO */
main[data-template="collection"] .product-card__content,
main[data-template="collection"] .product-card [class*="content"] {
  gap: 6px !important;
  padding-top: 10px !important;
}@media screen and (max-width: 749px) {
  main[data-template="collection"] .product-card h3,
  main[data-template="collection"] .product-card h4,
  main[data-template="collection"] .product-card [class*="title"],
  main[data-template="collection"] .product-card a[href*="/products/"] {
    font-size: 13px !important;
    line-height: .92 !important;
    max-width: 68% !important;
  }

  main[data-template="collection"] .product-card .price,
  main[data-template="collection"] .product-card [class*="price"] {
    font-size: 12px !important;
  }
}/* FINAL COLLECTION CARD TYPOGRAPHY TWEAK */

main[data-template="collection"] .product-card h3,
main[data-template="collection"] .product-card h4,
main[data-template="collection"] .product-card [class*="title"],
main[data-template="collection"] .product-card a[href*="/products/"] {
  font-family: 'Anton', Impact, sans-serif !important;
  font-size: 13px !important;
  line-height: .98 !important;
  letter-spacing: 0 !important;
  max-width: 100% !important;
  margin: 0 0 8px !important;
  display: block !important;
}

main[data-template="collection"] .product-card .price,
main[data-template="collection"] .product-card .price *,
main[data-template="collection"] .product-card [class*="price"] {
  font-family: 'Anton', Impact, sans-serif !important;
  font-size: 13px !important;
  line-height: 1 !important;
  color: #f37021 !important;
  -webkit-text-fill-color: #f37021 !important;
  margin-top: 4px !important;
  display: block !important;
}

/* Add a little breathing room under the image */
main[data-template="collection"] .product-card__content,
main[data-template="collection"] .product-card [class*="content"] {
  padding-top: 12px !important;
}/* CART DRAWER / CART PAGE */

.cart-drawer h1,
.cart-drawer h2,
.cart-drawer h3,
.cart-drawer h4,
.cart-drawer .title,
.cart-drawer .heading,
.cart-drawer .totals,
.cart-drawer .totals__total,
.cart-drawer .cart__summary,
.cart-drawer .cart-summary,
.cart-drawer .cart-drawer__heading {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
