@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@500;600;700;800;900&family=Space+Mono:wght@400;700&display=swap");

:root {
  --ink: #080908;
  --panel: #101110;
  --panel-soft: #151514;
  --line: #24231f;
  --muted: #78786f;
  --text: #f6f3e9;
  --gold: #caa533;
  --gold-dark: #a88422;
  --title: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: "Inter", Arial, sans-serif;
  --mono: "Space Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
}

body.drawer-open,
body.cart-open {
  overflow: hidden;
}

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

.page-pad {
  padding-left: clamp(18px, 4vw, 48px);
  padding-right: clamp(18px, 4vw, 48px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding-top: 18px;
  mix-blend-mode: screen;
}

body.drawer-open .site-header,
body.cart-open .site-header {
  mix-blend-mode: normal;
}

.navbar {
  padding: 0;
}

.brand-mark {
  display: inline-grid;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1;
}

.brand-mark span {
  color: #fff;
  font-family: var(--title);
  font-size: clamp(18px, 2vw, 26px);
}

.brand-mark small {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 6px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle,
.cart-toggle {
  width: 34px;
  height: 34px;
  position: relative;
  display: grid;
  place-content: center;
  border: 0;
  background: transparent;
  padding: 0;
  color: #fff;
}

.menu-toggle {
  gap: 5px;
}

.menu-toggle span {
  width: 15px;
  height: 2px;
  display: block;
  background: #fff;
}

.cart-toggle svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.cart-count {
  position: absolute;
  right: -5px;
  bottom: -2px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #11100d;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.page-scrim {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, .62);
  opacity: 0;
  transition: opacity .28s ease;
}

body.drawer-open .page-scrim,
body.cart-open .page-scrim {
  opacity: 1;
}

.nav-drawer,
.cart-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 60;
  width: min(100vw, 430px);
  background: #080908;
  color: #fff;
  transform: translateX(-104%);
  transition: transform .36s cubic-bezier(.22, .61, .36, 1);
}

.nav-drawer {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #2d2d2b;
}

body.drawer-open .nav-drawer {
  transform: translateX(0);
}

.drawer-top,
.cart-head {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px 18px 28px;
  border-bottom: 1px solid var(--line);
}

.drawer-logo {
  color: #fff;
  font-family: var(--title);
  font-size: 22px;
  letter-spacing: 7px;
  line-height: 1;
}

.drawer-close,
.cart-close {
  width: 34px;
  height: 34px;
  position: relative;
  border: 0;
  background: transparent;
  padding: 0;
}

.drawer-close::before,
.drawer-close::after,
.cart-close::before,
.cart-close::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 7px;
  width: 20px;
  height: 2px;
  background: #fff;
}

.drawer-close::before,
.cart-close::before {
  transform: rotate(45deg);
}

.drawer-close::after,
.cart-close::after {
  transform: rotate(-45deg);
}

.drawer-nav {
  display: grid;
  gap: 25px;
  padding: 58px 28px;
}

.drawer-nav a {
  color: #fff;
  font-family: var(--title);
  font-size: clamp(38px, 8vw, 48px);
  letter-spacing: 6px;
  line-height: .9;
  text-transform: uppercase;
  text-shadow: 3px 0 0 var(--gold), 6px 0 0 #1b61a7;
}

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

.drawer-socials {
  display: flex;
  gap: 24px;
  margin-top: auto;
  padding: 0 28px 34px;
}

.drawer-socials a {
  color: #87847c;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.cart-drawer {
  inset: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #2d2d2b;
  transform: translateX(104%);
}

body.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-head {
  align-items: flex-start;
  gap: 24px;
}

.cart-head .section-kicker {
  margin-bottom: 12px;
}

.cart-head h2 {
  margin: 0;
  color: #fff;
  font-family: var(--title);
  font-size: clamp(44px, 7vw, 64px);
  line-height: .9;
  text-transform: uppercase;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}

.empty-cart {
  margin: 0;
  color: #858279;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

.cart-line h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--title);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.cart-line p,
.cart-line strong {
  margin: 0;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cart-line button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  background: transparent;
  color: #858279;
  padding: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.cart-footer {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.cart-total strong {
  color: var(--gold);
}

.cart-footer .btn {
  width: 100%;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #98a59f;
}

.hero-bg,
.hero-shade,
.manifesto-bg {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("/assets/products/gianni-track-jacket.jpg");
  background-position: 61% center;
  background-size: cover;
  filter: saturate(.85) contrast(.95);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 9, 8, .48) 0%, rgba(8, 9, 8, .16) 48%, rgba(8, 9, 8, .36) 100%),
    linear-gradient(180deg, rgba(8, 9, 8, .05) 0%, rgba(8, 9, 8, .02) 62%, rgba(8, 9, 8, .86) 100%);
}

.hero-content {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 70px;
}

.section-kicker {
  margin: 0 0 22px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.hero-title,
.section-heading h2,
.manifesto-content h2,
.newsletter-copy h2 {
  margin: 0;
  font-family: var(--title);
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: .91;
}

.hero-title {
  max-width: 720px;
  color: #fff;
  font-size: clamp(86px, 17vw, 235px);
  text-shadow: 0 5px 25px rgba(0, 0, 0, .18);
}

.hero-title span {
  display: block;
}

.gold,
.manifesto-content span,
.newsletter-copy span {
  color: var(--gold);
}

.hero-copy {
  max-width: 420px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0 28px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #0e0d0a;
}

.btn-gold:hover {
  background: #d9ba4e;
  border-color: #d9ba4e;
  color: #0e0d0a;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  width: min(760px, 100%);
  margin-top: auto;
  padding-top: 54px;
}

.stat-block {
  min-width: 180px;
  padding: 12px 28px 12px 0;
}

.stat-block b {
  display: block;
  color: var(--gold);
  font-family: var(--title);
  font-size: clamp(20px, 3vw, 35px);
  line-height: .9;
  text-transform: uppercase;
}

.stat-block span {
  color: rgba(255, 255, 255, .6);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.ticker {
  min-height: 48px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #111110;
  color: #8f8b7f;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(20px, 6vw, 70px);
  padding: 0 clamp(10px, 3vw, 34px);
  animation: ticker-scroll 26s linear infinite;
  will-change: transform;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--gold);
  transform: rotate(45deg);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.section-block,
.newsletter-block,
.site-footer {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.section-block {
  padding: clamp(64px, 10vw, 128px) 0;
}

.section-block.compact {
  padding-top: clamp(58px, 8vw, 100px);
}

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

.section-heading h2 {
  color: #fff;
  font-size: clamp(42px, 8vw, 92px);
}

.small-link {
  color: #77746c;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.small-link::after {
  content: ">";
  margin-left: 12px;
  color: var(--gold);
}

.small-link:hover {
  color: var(--gold);
}

.product-grid {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.product-image {
  position: relative;
  min-height: 320px;
  aspect-ratio: 4 / 5.35;
  background: var(--panel-soft) center / cover no-repeat;
  background-image: var(--img);
  overflow: hidden;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, .18));
}

.product-image.square {
  aspect-ratio: 1 / 1.18;
  min-height: 0;
}

.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 12px;
  background: var(--gold);
  color: #11100d;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
}

.product-meta > div {
  flex: 1 1 auto;
  min-width: 0;
}

.product-meta h3 {
  margin: 0 0 6px;
  color: #fff;
  font-family: var(--title);
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: .6px;
  line-height: 1;
  text-transform: uppercase;
}

.product-meta p {
  display: none;
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.product-meta strong {
  align-self: flex-start;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.add-cart {
  width: 100%;
  min-height: 45px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #11100d;
  padding: 0 14px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.add-cart:hover {
  border-color: #d9ba4e;
  background: #d9ba4e;
  color: #11100d;
}

.mobile-purchase {
  display: none;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 12px 0 8px;
}

.size-options button {
  min-height: 30px;
  border: 1px solid #34332f;
  background: transparent;
  color: #aaa69a;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.size-options button:focus,
.size-options button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.manifesto-band {
  position: relative;
  min-height: clamp(380px, 48vw, 570px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #191916;
}

.manifesto-bg {
  background-image:
    linear-gradient(90deg, rgba(8, 9, 8, .92) 0%, rgba(8, 9, 8, .65) 39%, rgba(8, 9, 8, .1) 100%),
    url("/assets/products/hog-shorts.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(.8) contrast(.96);
}

.manifesto-content {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.manifesto-content h2,
.newsletter-copy h2 {
  max-width: 680px;
  font-size: clamp(54px, 10vw, 125px);
}

.manifesto-content p:not(.section-kicker),
.newsletter-copy p {
  max-width: 520px;
  margin: 24px 0;
  color: #8e8a80;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.gold-link {
  color: var(--gold);
}

.newsletter-block {
  padding: clamp(70px, 11vw, 135px) 0;
  background: #111211;
}

.newsletter-copy {
  max-width: 680px;
}

.signup-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  max-width: 1180px;
  margin-top: 42px;
}

.signup-form input {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #262624;
  color: #fff;
  padding: 0 22px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  outline: none;
}

.signup-form input:focus {
  border-color: var(--gold);
}

.fine-print {
  margin: 18px 0 0;
  color: #77746c;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.site-footer {
  padding: clamp(62px, 8vw, 100px) 0 34px;
  background: #101110;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.5fr) repeat(3, minmax(120px, 1fr));
  gap: clamp(34px, 7vw, 100px);
}

.footer-brand p {
  max-width: 280px;
  margin: 24px 0;
  color: #8b887f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  color: #aaa69a;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.footer-grid h4 {
  margin: 0 0 24px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-grid div:not(.footer-brand):not(.socials) a {
  display: block;
  margin-bottom: 13px;
  color: #858279;
  font-size: 12px;
  font-weight: 700;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(60px, 9vw, 115px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: #69665f;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.product-page {
  background: #090a09;
}

.product-header {
  position: sticky;
  top: 0;
  background: rgba(10, 11, 10, .96);
  border-bottom: 1px solid var(--line);
  mix-blend-mode: normal;
  padding: 19px 0 16px;
}

.product-main {
  border-top: 1px solid #151513;
}

.breadcrumb-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  color: #615f58;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.breadcrumb-row strong {
  color: var(--gold);
  font-weight: 700;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding-top: 48px;
  padding-bottom: 0;
}

.product-gallery {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
}

.thumb-list {
  display: grid;
  align-content: start;
  gap: 14px;
}

.thumb {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  border: 1px solid transparent;
  background: var(--panel-soft) center / cover no-repeat;
  background-image: var(--img);
  padding: 0;
}

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

.main-product-image {
  min-height: 620px;
  position: relative;
  background: var(--panel-soft) center / cover no-repeat;
  background-image: var(--img);
}

.product-info-panel {
  max-width: 100%;
  padding: 50px 0 0;
}

.product-category,
.product-price,
.bag-count-label {
  margin: 0;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.product-info-panel h1 {
  max-width: 900px;
  margin: 20px 0 22px;
  color: #fff;
  font-family: var(--title);
  font-size: clamp(46px, 8vw, 78px);
  line-height: .94;
  text-transform: uppercase;
}

.product-price {
  margin-bottom: 15px;
  font-size: 25px;
  letter-spacing: 1px;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.rating-line b {
  color: #858279;
  font-size: 10px;
  letter-spacing: 3px;
}

.product-description {
  max-width: 1120px;
  margin: 0 0 34px;
  color: #858279;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.product-fulfillment-note {
  display: grid;
  gap: 8px;
  margin: -12px 0 34px;
  padding: 18px;
  border: 1px solid rgba(210, 173, 62, 0.34);
  background: rgba(210, 173, 62, 0.08);
}

.product-fulfillment-note p {
  margin: 0;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1.8;
  text-transform: uppercase;
}

.purchase-form {
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
}

.size-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.size-row a {
  color: #7e7b73;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.product-size-options button {
  min-width: 54px;
  min-height: 42px;
  border: 1px solid #34332f;
  background: transparent;
  color: #aaa69a;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-size-options button.is-selected,
.product-size-options button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.buy-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
}

.qty-stepper {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: #0c0d0c;
}

.qty-stepper button,
.qty-stepper span {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #aaa69a;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.qty-stepper button:hover {
  color: var(--gold);
}

.product-add-bag {
  min-height: 58px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--line);
}

.service-grid div {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #77746c;
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-grid span,
.service-grid b {
  color: var(--gold);
}

.service-grid small {
  color: #77746c;
  font-size: 9px;
}

.product-tabs {
  padding-top: 28px;
  border-bottom: 1px solid var(--line);
}

.tab-labels {
  display: flex;
  gap: 34px;
  border-bottom: 1px solid var(--line);
}

.tab-labels button {
  position: relative;
  border: 0;
  background: transparent;
  color: #77746c;
  padding: 0 0 19px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.tab-labels button.is-active {
  color: var(--gold);
}

.tab-labels button.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--gold);
}

.tab-panel {
  display: none;
  padding: 30px 0 50px;
}

.tab-panel.is-active {
  display: block;
}

.tab-panel ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #858279;
  font-size: 15px;
  font-weight: 700;
}

.tab-panel li::before {
  content: "";
  width: 18px;
  height: 2px;
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--gold);
}

.related-products {
  border-top: 0;
}

.related-products h2 {
  margin: 0 0 34px;
  color: #fff;
  font-family: var(--title);
  font-size: clamp(40px, 7vw, 70px);
  line-height: .94;
  text-transform: uppercase;
}

.related-grid {
  max-width: 390px;
}

.product-cart-head {
  align-items: flex-start;
}

.product-cart-head h2 {
  font-size: 22px;
  letter-spacing: 1px;
}

.bag-count-label {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 2px;
}

.empty-bag-state {
  min-height: 330px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: #858279;
  text-align: center;
  font-weight: 700;
}

.empty-bag-state svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #858279;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.empty-bag-state p {
  margin: 0;
  color: #858279;
}

.empty-bag-state a {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.catalog-main,
.lookbook-page main {
  background: #0d0e0d;
}

.catalog-hero {
  min-height: 300px;
  display: grid;
  align-content: end;
  padding-top: 110px;
  padding-bottom: 78px;
  border-bottom: 1px solid var(--line);
  background: #111211;
}

.catalog-hero h1,
.lookbook-title h1 {
  margin: 0;
  color: #fff;
  font-family: var(--title);
  font-size: clamp(66px, 11vw, 120px);
  line-height: .9;
  text-transform: uppercase;
}

.catalog-hero > p:last-child {
  margin: 22px 0 0;
  color: #77746c;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.catalog-section {
  padding-top: 48px;
  padding-bottom: 74px;
}

.catalog-tools {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 390px);
  gap: 28px;
  align-items: center;
  margin-bottom: 40px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tabs button,
.catalog-search button,
.load-row button,
.season-tabs button {
  min-height: 45px;
  border: 1px solid var(--line);
  background: transparent;
  color: #858279;
  padding: 0 20px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.filter-tabs button.is-active,
.filter-tabs button:hover,
.season-tabs button.is-active {
  border-color: var(--gold);
  color: var(--gold);
}

.catalog-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.catalog-search input {
  min-height: 45px;
  border: 1px solid var(--line);
  background: #232321;
  color: #fff;
  padding: 0 14px;
  outline: 0;
}

.catalog-search button::before {
  content: "â‰¡";
  margin-right: 8px;
  color: #aaa69a;
}

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

.catalog-grid .product-card.is-hidden {
  display: none;
}

.catalog-grid .product-meta p {
  display: block;
  letter-spacing: 1px;
}

.product-meta strong span {
  display: block;
  margin-top: 4px;
  color: #77746c;
  font-size: 10px;
  text-decoration: line-through;
}

.sale-tag {
  background: #e64d36;
  color: #100f0d;
}

.load-row {
  display: flex;
  justify-content: center;
  margin-top: 68px;
}

.load-row button {
  min-width: 210px;
}

.lookbook-title {
  padding-top: 115px;
  padding-bottom: 64px;
  background: #111211;
  border-bottom: 1px solid var(--line);
}

.lookbook-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.season-tabs {
  display: flex;
  gap: 14px;
  padding-bottom: 5px;
}

.lookbook-hero {
  min-height: 530px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.lookbook-hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 8, .05) 0%, rgba(8, 9, 8, .72) 100%),
    url("/assets/products/gianni-track-jacket.jpg") center / cover no-repeat;
  filter: saturate(.83) contrast(.95);
}

.lookbook-hero-copy {
  position: relative;
  padding-bottom: 58px;
}

.lookbook-hero-copy p {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
}

.lookbook-hero-copy h2,
.collection-notes h2 {
  margin: 0;
  color: #fff;
  font-family: var(--title);
  font-size: clamp(36px, 6vw, 58px);
  line-height: .95;
  text-transform: uppercase;
}

.collection-notes {
  padding-top: 74px;
  padding-bottom: 95px;
  border-bottom: 1px solid var(--line);
}

.collection-notes p:not(.section-kicker) {
  max-width: 1030px;
  margin: 34px 0 0;
  color: #858279;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.75;
}

.lookbook-cta {
  width: min(100%, 1080px);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  background: var(--gold);
  color: #11100d;
  padding: 0 36px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.lookbook-grid-section {
  padding-top: 90px;
  padding-bottom: 90px;
  border-bottom: 1px solid var(--line);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr;
  grid-auto-rows: 360px;
  gap: 12px;
  margin-top: 44px;
}

.lookbook-tile {
  min-height: 0;
  background: var(--panel-soft) center / cover no-repeat;
  background-image: var(--img);
}

.lookbook-tile.large {
  grid-row: span 2;
}

.credits-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  padding-top: 58px;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line);
}

.credits-row h3 {
  margin: 0 0 22px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.credits-row p {
  margin: 0;
  color: #77746c;
  font-size: 15px;
  font-weight: 700;
}

.info-main,
.about-main {
  background: #0d0e0d;
}

.info-hero,
.about-hero {
  padding-top: 120px;
  padding-bottom: 76px;
  background: #111211;
  border-bottom: 1px solid var(--line);
}

.info-hero h1,
.about-hero h1 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-family: var(--title);
  font-size: clamp(52px, 9vw, 98px);
  line-height: .92;
  text-transform: uppercase;
}

.about-hero h1 span {
  display: block;
  color: var(--gold);
}

.about-hero p {
  max-width: 850px;
  margin: 44px 0 0;
  color: #858279;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.about-hero p + p {
  max-width: 1180px;
  margin-top: 34px;
  font-size: 14px;
}

.shipping-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.shipping-stats div {
  display: grid;
  gap: 5px;
}

.shipping-stats span,
.service-grid span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.shipping-stats b {
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.shipping-stats p {
  margin: 0;
  color: #77746c;
  font-size: 11px;
  font-weight: 700;
}

.info-section {
  padding-top: 74px;
  padding-bottom: 74px;
  border-bottom: 1px solid var(--line);
}

.info-section h2,
.collab-section h2,
.about-shop-cta h2 {
  margin: 0 0 34px;
  color: #fff;
  font-family: var(--title);
  font-size: clamp(38px, 7vw, 72px);
  line-height: .94;
  text-transform: uppercase;
}

.rate-table {
  display: grid;
  border-top: 1px solid var(--line);
}

.rate-table > div {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1.2fr .7fr 1.2fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: #858279;
  font-size: 12px;
  font-weight: 700;
}

.rate-table .rate-head {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.rate-table span:first-child {
  color: #fff;
}

.info-note,
.info-copy {
  max-width: 760px;
  margin: 22px 0 0;
  color: #77746c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.return-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.return-grid article,
.eligibility-grid,
.collab-grid article,
.more-links a {
  border: 1px solid var(--line);
  background: #111211;
}

.return-grid article {
  min-height: 160px;
  padding: 28px;
}

.return-grid strong {
  color: var(--gold);
  font-family: var(--title);
  font-size: 30px;
}

.return-grid h3,
.collab-grid h3,
.more-links b {
  margin: 14px 0 12px;
  color: #fff;
  font-family: var(--title);
  font-size: 19px;
  line-height: 1;
  text-transform: uppercase;
}

.return-grid p,
.collab-grid p,
.more-links span {
  margin: 0;
  color: #858279;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  margin-top: 34px;
  padding: 28px;
}

.eligibility-grid h3 {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.eligibility-grid p {
  margin: 0 0 10px;
  color: #858279;
  font-size: 13px;
  font-weight: 700;
}

.track-form {
  width: min(100%, 420px);
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.track-form label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.track-form input {
  min-height: 48px;
  border: 1px solid var(--line);
  background: #262624;
  color: #fff;
  padding: 0 16px;
  outline: 0;
}

.info-cta,
.about-shop-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.info-cta p {
  margin: 0;
  color: #858279;
  font-weight: 700;
}

.about-wide-image {
  min-height: 330px;
  background:
    linear-gradient(90deg, rgba(8, 9, 8, .08), rgba(8, 9, 8, .28)),
    url("/assets/products/hog-shorts.jpg") center / cover no-repeat;
}

.manifesto-text,
.collab-section,
.more-links {
  padding-top: 78px;
  padding-bottom: 78px;
  border-bottom: 1px solid var(--line);
}

.manifesto-text p:not(.section-kicker) {
  max-width: 1120px;
  margin: 0 0 25px;
  color: #fff;
  font-family: var(--title);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.25;
}

.manifesto-text span {
  color: var(--gold);
}

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

.collab-grid article {
  padding-bottom: 28px;
}

.collab-grid article > div {
  min-height: 330px;
  margin-bottom: 24px;
  background: var(--panel-soft) center / cover no-repeat;
  background-image: var(--img);
}

.collab-grid h3,
.collab-grid b,
.collab-grid p {
  margin-left: 22px;
  margin-right: 22px;
}

.collab-grid b {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
}

.more-links > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.more-links a {
  min-height: 130px;
  display: grid;
  align-content: center;
  padding: 24px;
}

.more-links i {
  margin-top: 18px;
  color: var(--gold);
  font-style: normal;
}

.about-shop-cta h2 {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .hero-bg {
    background-position: 58% center;
  }

  .two-col,
  .three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-gallery {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .main-product-image {
    min-height: 520px;
  }

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

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

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

  .lookbook-tile.large {
    grid-column: span 1;
  }

  .credits-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shipping-stats,
  .collab-grid,
  .more-links > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rate-table {
    overflow-x: auto;
  }

  .rate-table > div {
    min-width: 850px;
  }
}

@media (max-width: 767.98px) {
  .site-header {
    padding-top: 14px;
  }

  .brand-mark {
    letter-spacing: 3px;
  }

  .brand-mark small {
    letter-spacing: 4px;
  }

  .nav-actions {
    gap: 9px;
  }

  .nav-drawer,
  .cart-drawer {
    width: min(100vw, 282px);
  }

  .drawer-top,
  .cart-head {
    min-height: 48px;
    padding: 15px 22px 14px 10px;
  }

  .drawer-logo {
    font-size: 16px;
    letter-spacing: 5px;
  }

  .drawer-nav {
    gap: 24px;
    padding: 39px 10px;
  }

  .drawer-nav a {
    font-size: 28px;
    letter-spacing: 4px;
    text-shadow: 2px 0 0 var(--gold), 4px 0 0 #1b61a7;
  }

  .drawer-socials {
    gap: 19px;
    padding: 0 10px 34px;
  }

  .cart-items,
  .cart-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 34px;
  }

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

  .hero-title {
    font-size: clamp(72px, 22vw, 112px);
  }

  .hero-copy {
    font-size: 13px;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 28px;
  }

  .btn {
    min-height: 50px;
    padding: 0 18px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero-stats {
    padding-top: 32px;
  }

  .stat-block {
    min-width: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .two-col,
  .three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-image {
    min-height: 0;
    aspect-ratio: 4 / 4.85;
  }

  .product-meta {
    gap: 10px;
    padding-top: 13px;
  }

  .product-meta > div {
    flex: 1 1 auto;
  }

  .product-meta h3 {
    margin-bottom: 4px;
    font-size: clamp(16px, 5vw, 20px);
    line-height: .95;
  }

  .product-meta strong {
    align-self: flex-start;
    padding-top: 1px;
    font-size: 11px;
  }

  .manifesto-band {
    min-height: 460px;
  }

  .manifesto-bg {
    background-image:
      linear-gradient(90deg, rgba(8, 9, 8, .94) 0%, rgba(8, 9, 8, .62) 100%),
      url("/assets/products/hog-shorts.jpg");
    background-position: 62% center;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .signup-form .btn {
    width: 100%;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom div {
    justify-content: flex-start;
  }

  .product-header {
    padding: 14px 0 12px;
  }

  .breadcrumb-row {
    min-height: 58px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .product-detail {
    padding-top: 22px;
  }

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

  .thumb-list {
    order: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .main-product-image {
    min-height: 0;
    aspect-ratio: 4 / 4.85;
  }

  .product-info-panel {
    padding-top: 36px;
  }

  .product-info-panel h1 {
    font-size: clamp(44px, 13vw, 66px);
  }

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

  .tab-labels {
    gap: 20px;
    overflow-x: auto;
  }

  .related-grid {
    max-width: none;
  }

  .catalog-hero,
  .lookbook-title {
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .catalog-hero h1,
  .lookbook-title h1 {
    font-size: clamp(54px, 18vw, 84px);
  }

  .catalog-section {
    padding-top: 32px;
  }

  .filter-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-tabs button,
  .catalog-search button,
  .season-tabs button {
    padding: 0 10px;
    letter-spacing: 1px;
  }

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

  .lookbook-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .lookbook-hero {
    min-height: 430px;
  }

  .collection-notes,
  .lookbook-grid-section {
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .lookbook-cta {
    padding: 0 20px;
    letter-spacing: 2px;
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
  }

  .lookbook-tile.large {
    grid-row: span 1;
  }

  .credits-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .info-hero,
  .about-hero {
    padding-top: 92px;
    padding-bottom: 54px;
  }

  .shipping-stats,
  .return-grid,
  .eligibility-grid,
  .collab-grid,
  .more-links > div {
    grid-template-columns: 1fr;
  }

  .info-section,
  .manifesto-text,
  .collab-section,
  .more-links {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .info-cta,
  .about-shop-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-wide-image {
    min-height: 260px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(62px, 21vw, 88px);
  }

  .section-kicker,
  .ticker,
  .small-link {
    letter-spacing: 3px;
  }

  .ticker-track {
    animation-duration: 18s;
  }

  .section-heading h2,
  .manifesto-content h2,
  .newsletter-copy h2 {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 340px) {
  .two-col,
  .three-col {
    grid-template-columns: 1fr;
  }
}

.utility-main {
  padding-top: clamp(96px, 12vw, 160px);
  padding-bottom: clamp(64px, 9vw, 120px);
  background: #0b0b0b;
  min-height: 72vh;
}

.utility-hero {
  padding-bottom: clamp(32px, 6vw, 72px);
}

.utility-hero h1 {
  margin: 0;
  max-width: 780px;
  color: #f4f1e8;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.utility-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(244, 241, 232, 0.45);
  font-size: clamp(0.95rem, 1.7vw, 1.15rem);
}

.cart-page-layout,
.checkout-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.cart-page-items,
.checkout-form,
.contact-card,
.order-summary {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.cart-page-items {
  min-height: 280px;
  padding: clamp(14px, 2.2vw, 24px);
}

.cart-page-line {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-page-line:first-child {
  padding-top: 0;
}

.cart-page-line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cart-page-line img {
  width: 104px;
  aspect-ratio: 1;
  object-fit: cover;
}

.cart-page-line h3,
.checkout-form h2,
.contact-card h2,
.order-summary h2 {
  margin: 0;
  color: #f4f1e8;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
}

.cart-page-line h3 {
  font-size: 1.2rem;
}

.cart-page-line p,
.cart-page-line span,
.empty-cart,
.form-note,
.form-status,
.contact-card p,
.order-summary p {
  margin: 4px 0 0;
  color: rgba(244, 241, 232, 0.45);
  font-size: 0.83rem;
}

.cart-page-line strong,
.checkout-line strong,
.order-summary strong {
  color: #d1ad45;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0;
}

.cart-page-line button,
.cart-line button {
  border: 0;
  background: transparent;
  color: rgba(244, 241, 232, 0.45);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promo-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.promo-code-section {
  padding-top: 0 !important;
}

.promo-toggle {
  border: 0;
  background: transparent;
  color: #d1ad45;
  padding: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.promo-code-panel {
  margin-top: 22px;
}

.promo-code-row .btn {
  min-height: 54px;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.16);
  color: #f4f1e8;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.promo-status {
  min-height: 18px;
}

.newsletter-status {
  min-height: 18px;
  margin-top: 12px;
}

.newsletter-popup {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 80;
  width: min(420px, calc(100vw - 28px));
  padding: 28px;
  border: 1px solid rgba(210, 173, 62, 0.28);
  background: #10100f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.newsletter-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.newsletter-popup h2 {
  margin: 8px 0 12px;
  color: #f4f1e8;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.4rem, 9vw, 4.8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.newsletter-popup p:not(.section-kicker) {
  color: rgba(244, 241, 232, 0.52);
  font-size: 0.86rem;
  line-height: 1.7;
}

.newsletter-popup form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 18px;
}

.newsletter-popup input {
  min-width: 0;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #20201e;
  color: #fff;
  padding: 0 14px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.newsletter-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
}

.newsletter-popup-close::before,
.newsletter-popup-close::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 5px;
  width: 18px;
  height: 2px;
  background: rgba(244, 241, 232, 0.68);
}

.newsletter-popup-close::before {
  transform: rotate(45deg);
}

.newsletter-popup-close::after {
  transform: rotate(-45deg);
}

.sizing-guide-grid {
  display: grid;
  gap: 18px;
  padding-bottom: clamp(70px, 10vw, 130px);
}

.sizing-card {
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: #111;
  padding: clamp(20px, 3vw, 34px);
  overflow-x: auto;
}

.sizing-card h2 {
  margin: 8px 0 22px;
  color: #f4f1e8;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 6vw, 4.4rem);
  text-transform: uppercase;
}

.size-table {
  display: grid;
  gap: 0;
}

.size-table > div {
  display: grid;
  grid-template-columns: 0.7fr repeat(3, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 241, 232, 0.58);
  font-size: 0.86rem;
}

.size-table b,
.size-table span:first-child,
.sizing-card li {
  color: #f4f1e8;
}

.sizing-card li {
  margin: 10px 0;
  color: rgba(244, 241, 232, 0.68);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: clamp(42px, 7vw, 90px);
}

.policy-card,
.policy-cta {
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: #111;
  padding: clamp(20px, 3vw, 34px);
}

.policy-card h2,
.policy-cta h2 {
  margin: 8px 0 18px;
  color: #f4f1e8;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
}

.policy-card p,
.policy-card li {
  color: rgba(244, 241, 232, 0.66);
  font-size: 0.95rem;
  line-height: 1.8;
}

.policy-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.policy-card li {
  margin: 10px 0;
}

.policy-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(70px, 10vw, 130px);
}

@media (max-width: 520px) {
  .newsletter-popup {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 22px;
  }

  .newsletter-popup form {
    grid-template-columns: 1fr;
  }

  .newsletter-popup .btn {
    width: 100%;
  }

  .size-table {
    min-width: 560px;
  }

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

  .policy-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

.admin-result {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0b;
  color: rgba(244, 241, 232, 0.72);
  padding: 14px;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.6;
}

.cart-line {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-line img {
  width: 58px;
  aspect-ratio: 1;
  object-fit: cover;
}

.cart-line button {
  grid-column: 2 / -1;
  justify-self: start;
  padding: 0;
}

.order-summary,
.contact-card {
  position: sticky;
  top: 92px;
  padding: clamp(20px, 3vw, 32px);
}

.order-summary h2,
.checkout-form h2,
.contact-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.order-summary > div,
.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 241, 232, 0.6);
  font-size: 0.82rem;
}

.order-summary .btn {
  width: 100%;
  margin-top: 22px;
}

.checkout-form {
  display: grid;
  gap: 28px;
  padding: clamp(20px, 3vw, 34px);
}

.checkout-form section {
  display: grid;
  gap: 16px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: #d1ad45;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: #1d1d1d;
  color: #f4f1e8;
  padding: 15px 16px;
  font: inherit;
  letter-spacing: 0;
}

.checkout-form textarea {
  min-height: 160px;
  resize: vertical;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: 1px solid #d1ad45;
  border-color: #d1ad45;
}

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

.checkout-items {
  display: grid;
  margin-top: 16px;
}

.contact-card {
  display: grid;
  gap: 12px;
}

.contact-card a {
  color: #d1ad45;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .cart-page-layout,
  .checkout-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .order-summary,
  .contact-card {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .utility-main {
    padding-top: 92px;
  }

  .cart-page-line {
    grid-template-columns: 82px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .cart-page-line img {
    width: 82px;
  }

  .cart-page-line button {
    grid-column: 2 / -1;
    justify-self: start;
  }

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

.admin-page {
  min-height: 100vh;
  background: #0b0b0b;
  color: #f4f1e8;
}

.admin-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 54px);
}

.admin-header,
.admin-panel-head,
.admin-card-main,
.admin-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-header {
  padding-bottom: clamp(32px, 5vw, 72px);
}

.admin-login {
  max-width: 560px;
  padding: clamp(24px, 4vw, 42px);
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-login h1,
.admin-panel-head h2,
.admin-card h3 {
  margin: 0;
  color: #f4f1e8;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  line-height: 0.92;
}

.admin-login h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.admin-login p,
.admin-card p,
.admin-panel-head span,
.admin-items span {
  color: rgba(244, 241, 232, 0.48);
}

.admin-login form,
.admin-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.admin-tabs button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(244, 241, 232, 0.55);
  padding: 12px 18px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-tabs button.is-active {
  border-color: #d1ad45;
  color: #d1ad45;
}

.admin-panel {
  display: none;
}

.admin-panel.is-active {
  display: block;
}

.admin-panel-head {
  padding: clamp(20px, 3vw, 32px);
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-panel-head h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.admin-card {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-card h3 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.admin-card strong {
  color: #d1ad45;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.25rem;
}

.admin-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-items span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 10px;
  font-size: 0.78rem;
}

.admin-login label,
.admin-actions label {
  display: grid;
  gap: 8px;
  color: #d1ad45;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-login input,
.admin-actions input,
.admin-actions select,
.admin-actions textarea {
  width: 100%;
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: #1d1d1d;
  color: #f4f1e8;
  padding: 13px 14px;
  font: inherit;
  letter-spacing: 0;
}

.admin-actions textarea {
  min-width: min(520px, 100%);
  font-family: Consolas, monospace;
  resize: vertical;
}

.admin-actions .admin-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
}

.admin-actions .admin-checkbox input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  padding: 0;
  accent-color: #d1ad45;
}

.product-actions {
  align-items: end;
}

@media (max-width: 900px) {
  .admin-header,
  .admin-panel-head,
  .admin-card-main,
  .admin-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-actions label,
  .admin-actions button {
    width: 100%;
  }
}
