:root {
  --font-family-primary: HelveticaLTPro-Roman, Arial, sans-serif;
  --font-size-xs: 10px;
  --font-size-sm: 12px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 26px;
  --line-height-base: 19.6px;
  --color-surface-base: #000000;
  --color-text-secondary: #ffffff;
  --color-text-primary: #000001;
  --color-surface-raised: #222222;
  --color-surface-strong: #7c9e82;
  --color-page: #eeeeee;
  --color-card: #ffffff;
  --color-navy: #26384b;
  --color-navy-soft: #33475c;
  --color-border: #d9d9d9;
  --color-muted: #666666;
  --space-1: 2px;
  --space-2: 6px;
  --space-3: 9.5px;
  --space-4: 10px;
  --space-5: 11px;
  --space-6: 12px;
  --space-7: 13px;
  --space-8: 14px;
  --radius-xs: 2px;
  --radius-sm: 3px;
  --radius-md: 8px;
  --radius-lg: 24px;
  --radius-xl: 50px;
  --shadow-1: rgba(50, 50, 50, 0.25) 0 1px 3px -1px;
  --motion-duration-instant: 500ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--font-family-primary);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-page);
  color: var(--color-text-primary);
  font-size: var(--font-size-md);
  line-height: var(--line-height-base);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--color-surface-strong);
  outline-offset: 2px;
}

.coach-page {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--color-card);
}

.utility-strip {
  display: grid;
  height: 28px;
  place-items: center;
  background: #f7f7f7;
  color: #26384b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.store-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 42px;
  border-top: 1px solid #e3e7ea;
  border-bottom: 1px solid #d7dde2;
  background: #f2f4f5;
}

.store-switch a {
  display: grid;
  place-items: center;
  text-decoration: none;
}

.store-switch a.active {
  background: #ffffff;
  box-shadow: inset 0 -2px 0 #33475c;
}

.store-switch a:not(.active) {
  background: #eef1f3;
}

.store-switch img {
  display: block;
  width: 108px;
  height: 40px;
  object-fit: contain;
}

.store-switch a:nth-child(2) img {
  width: 150px;
}

.coach-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 78px 1fr 78px;
  align-items: center;
  height: 54px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
  transition: box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.coach-header.is-scrolled {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.icon-button,
.search-button,
.profile-button,
.close-menu {
  border: 0;
  background: transparent;
  color: var(--color-surface-base);
}

.menu-button {
  display: grid;
  width: 36px;
  height: 36px;
  align-content: center;
  gap: 6px;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  background: #242424;
}

.coach-logo {
  display: grid;
  justify-self: center;
  width: 124px;
  height: 24px;
  place-items: center;
}

.coach-logo img {
  display: block;
  width: 116px;
  height: auto;
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 11px;
}

.search-button,
.profile-button {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  padding: 0;
}

.search-button img {
  width: 18px;
  height: 18px;
}

.profile-button img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.category-nav {
  position: sticky;
  top: 54px;
  z-index: 35;
  display: flex;
  height: 42px;
  align-items: center;
  gap: 21px;
  overflow-x: auto;
  padding: 0 16px;
  border-bottom: 1px solid #e4e4e4;
  background: rgba(255, 255, 255, 0.98);
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-nav a {
  flex: 0 0 auto;
  color: #1d1d1d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.feature,
.image-link,
.image-only {
  position: relative;
  overflow: hidden;
  background: #efefef;
}

.feature img,
.image-link img,
.image-only img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.hero {
  height: 388px;
}

.hero img {
  object-position: center center;
}

.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.24);
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.08;
}

.hero-copy a {
  display: inline-flex;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.day-copy {
  display: grid;
  min-height: 82px;
  place-items: center;
  background: #ffffff;
}

.day-copy p {
  margin: 0;
  color: #243448;
  font-size: 18px;
  font-weight: 800;
}

.spacer-block {
  height: 44px;
  background: #ffffff;
}

.spacer-block.compact {
  height: 44px;
}

.image-link {
  height: 430px;
}

.image-link a {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 42px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.84);
  color: #33475c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.accessories-shot img {
  object-position: center 76%;
}

.shoulder-shot img {
  object-position: center 58%;
}

.shoulder-shot {
  height: 360px;
}

.womens-shot img {
  object-position: center 47%;
}

.image-only {
  height: 398px;
}

.image-only img {
  object-position: center center;
}

.image-only.portrait {
  height: 430px;
}

.campaign-copy {
  padding: 28px 22px 34px;
  background: #ffffff;
  color: #2d4054;
  text-align: center;
}

.campaign-copy h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.campaign-copy p {
  margin: 0 auto 16px;
  max-width: 320px;
  color: #3f566e;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.campaign-copy a {
  color: #2f465e;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.story-card {
  padding: 18px 14px 31px;
  background: #ffffff;
}

.story-card a {
  display: inline-flex;
  margin-bottom: 11px;
  color: #33475c;
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
}

.story-card h2 {
  margin: 0 0 12px;
  color: #2d4054;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.14;
}

.story-card p {
  margin: 0 0 12px;
  color: #33475c;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.story-card p:last-child {
  margin-bottom: 0;
}

.top-picks {
  position: relative;
  padding: 30px 0 36px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  text-align: center;
}

.top-picks h2 {
  margin: 0 0 18px;
  color: #2b3f54;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.08;
}

.picks-shell {
  position: relative;
}

.picks-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: visible;
  padding: 0;
}

.picks-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 318px;
  overflow: hidden;
  border-right: 1px solid rgba(51, 71, 92, 0.12);
  border-bottom: 1px solid rgba(51, 71, 92, 0.12);
  background: #ffffff;
  text-align: left;
  text-decoration: none;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.product-card:nth-child(2n) {
  border-right: 0;
}

.product-card:active {
  transform: scale(0.985);
}

.product-media {
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  background: #f7f7f7;
  text-decoration: none;
}

.product-media img {
  display: block;
  width: var(--product-image-scale, 92%);
  height: var(--product-image-scale, 92%);
  object-fit: contain;
  object-position: center;
  transform: translate(var(--product-image-shift-x, 0), var(--product-image-shift-y, 0)) scale(var(--product-image-zoom, 1));
  transition: transform 280ms var(--ease);
}

.product-card:hover .product-media img,
.product-card:focus-within .product-media img {
  transform: translate(var(--product-image-shift-x, 0), var(--product-image-shift-y, 0)) scale(calc(var(--product-image-zoom, 1) * 1.035));
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 12px 10px 14px;
}

.product-card h3 {
  min-height: 42px;
  margin: 0 0 8px;
  color: #1f2933;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.32;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card h3 a {
  text-decoration: none;
}

.product-price {
  display: flex;
  min-height: 21px;
  align-items: baseline;
  gap: 6px;
  margin: 0;
  color: #a1261d;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
}

.product-price del {
  color: #79858f;
  font-size: 11px;
  font-weight: 600;
}

.product-cta {
  display: grid;
  min-height: 38px;
  margin-top: auto;
  place-items: center;
  background: #26384b;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 200ms var(--ease);
}

.product-cta:hover,
.product-cta:focus-visible {
  background: #1f3349;
}

.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  max-width: calc(100% - 16px);
  padding: 4px 7px;
  overflow: hidden;
  background: #b03024;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card.is-loading {
  min-height: 180px;
  align-content: center;
  color: #38536a;
  font-size: 11px;
  font-weight: 800;
}

.pick-arrow {
  display: none;
}

.service-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-top: 28px;
  border-bottom: 1px solid #d9e0e6;
  background: #ffffff;
}

.service-strip > h2 {
  grid-column: 1 / -1;
  margin: 0 0 22px;
  color: #2d4054;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
}

.service-strip article {
  min-height: 148px;
  padding: 18px 13px 16px;
  border-top: 1px solid #d9e0e6;
  color: #30475d;
  text-align: center;
}

.service-strip article:nth-of-type(odd) {
  border-right: 1px solid #d9e0e6;
}

.service-strip img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.service-strip h3 {
  margin: 0 0 5px;
  color: #2d4054;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-strip p {
  margin: 0;
  color: #53697c;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.36;
}

.coach-footer {
  background: #f5f5f5;
  color: #32475c;
}

.coach-footer details {
  border-top: 1px solid #d9e0e6;
  background: #edf1f4;
}

.coach-footer details:last-of-type {
  border-bottom: 1px solid #d9e0e6;
}

.coach-footer summary {
  position: relative;
  display: flex;
  min-height: 32px;
  align-items: center;
  padding: 0 16px;
  color: #31465b;
  font-size: 10px;
  font-weight: 800;
  list-style: none;
}

.coach-footer summary::-webkit-details-marker {
  display: none;
}

.coach-footer summary::after {
  content: "+";
  position: absolute;
  right: 15px;
  color: #50687e;
  font-size: 12px;
  font-weight: 700;
}

.coach-footer details[open] summary::after {
  content: "-";
}

.coach-footer details p {
  margin: 0;
  padding: 0 16px 12px;
  color: #52687c;
  font-size: 10px;
  line-height: 1.4;
}

.footer-list {
  display: grid;
  gap: 8px;
  padding: 22px 16px 18px;
  background: #ffffff;
}

.footer-list h2,
.newsletter h2 {
  margin: 0 0 7px;
  color: #32475c;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-list a {
  color: #425a70;
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
}

.newsletter {
  padding: 20px 16px 16px;
  background: #ffffff;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr 87px;
  gap: 0;
  margin-bottom: 12px;
}

.newsletter input {
  width: 100%;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #c3cbd2;
  border-right: 0;
  color: #1d1d1d;
  font-size: 10px;
  outline: none;
}

.newsletter button {
  min-height: 32px;
  border: 0;
  background: #2f4a63;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

.newsletter p {
  margin: 0;
  color: #5b6e80;
  font-size: 9px;
  line-height: 1.45;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 16px 24px;
  background: #ffffff;
}

.social-row a {
  display: inline-flex;
  color: #1b1b1b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  justify-items: center;
  visibility: hidden;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease), visibility 220ms var(--ease), background 220ms var(--ease);
}

.menu-panel.is-open {
  visibility: visible;
  background: rgba(0, 0, 0, 0.36);
  opacity: 1;
  pointer-events: auto;
}

.menu-sheet {
  position: relative;
  width: min(100%, 430px);
  min-height: 100vh;
  padding: 26px 20px;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 320ms var(--ease);
}

.menu-panel.is-open .menu-sheet {
  transform: translateX(0);
}

.close-menu {
  position: absolute;
  top: 21px;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
}

.close-menu img {
  width: 14px;
  height: 14px;
}

.menu-logo {
  display: block;
  width: 94px;
  margin: 10px 0 32px;
}

.menu-sheet nav {
  display: grid;
  border-top: 1px solid var(--color-border);
}

.menu-sheet nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  color: #1f1f1f;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.is-visible {
  animation: revealUp 560ms var(--ease) both;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
