:root {
  --green: #009739;
  --yellow: #fedd00;
  --blue: #002776;
  --ink: #111827;
  --muted: #667085;
  --line: #e4e7ec;
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body[data-product] {
  padding-bottom: 82px;
}

button,
input,
select {
  font: inherit;
}

.brand-logo {
  display: block;
  height: 54px;
  object-fit: contain;
  width: 54px;
}

.brand-link {
  min-width: 0;
}

.footer-logo {
  background: #fff;
  border-radius: 6px;
  display: block;
  height: 48px;
  object-fit: contain;
  padding: 3px;
  width: 48px;
}

.page-shell {
  background:
    linear-gradient(90deg, rgba(0, 151, 57, .045), transparent 26%),
    linear-gradient(270deg, rgba(0, 39, 118, .045), transparent 28%),
    #f7f8fa;
}

.product-card.is-active,
.size-btn.is-active,
.thumb.is-active,
.payment-card.is-active {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 39, 118, .08);
}

.product-buy-panel {
  border-top: 4px solid var(--green);
}

.mobile-product-snapshot {
  max-height: 112px;
}

.mobile-buy-bar {
  align-items: center;
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid var(--line);
  bottom: 0;
  box-shadow: 0 -16px 40px rgba(17, 24, 39, .12);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  left: 0;
  padding: 12px 16px;
  position: fixed;
  right: 0;
  z-index: 35;
}

.mobile-buy-bar button {
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  height: 48px;
  min-width: 148px;
  padding: 0 18px;
}

.mobile-buy-bar strong {
  color: var(--blue);
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.tracking-code {
  background: #fff;
  border: 1px solid rgba(0, 151, 57, .28);
  color: var(--blue);
  display: inline-block;
  letter-spacing: .04em;
  padding: 3px 7px;
}

.tracking-step {
  align-items: center;
  background: #f7f8fa;
  border: 1px solid var(--line);
  display: flex;
  gap: 10px;
  min-height: 58px;
  padding: 12px;
}

.tracking-step span {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: #667085;
  display: inline-flex;
  flex: 0 0 30px;
  font-size: 13px;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.tracking-step strong {
  color: #475467;
  font-size: 13px;
  line-height: 1.25;
}

.tracking-step.is-done {
  background: rgba(0, 151, 57, .08);
  border-color: rgba(0, 151, 57, .24);
}

.tracking-step.is-done span {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.tracking-step.is-done strong {
  color: var(--ink);
}

.drawer,
.modal-panel {
  visibility: hidden;
  pointer-events: none;
  transition: transform .22s ease, opacity .2s ease, visibility 0s linear .22s;
}

.drawer {
  transform: translateX(102%);
}

.drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition: transform .22s ease;
}

.modal-panel {
  opacity: 0;
  transform: translateY(14px) scale(.98);
}

.modal-panel.is-open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: transform .22s ease, opacity .2s ease;
}

.page-mask {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, visibility 0s linear .2s;
}

.page-mask.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .2s ease;
}

.shirt-print {
  color: #103f86;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: .9;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255,255,255,.55), 0 8px 20px rgba(0,39,118,.18);
  -webkit-text-stroke: 1px rgba(255,255,255,.55);
}

.combo-pair-line {
  background: linear-gradient(90deg, transparent, rgba(17,24,39,.18), transparent);
}

.prose-store p {
  line-height: 1.75;
}

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

@media (min-width: 1024px) {
  body[data-product] {
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    height: 46px;
    width: 46px;
  }

  .brand-link span span:first-child {
    font-size: 17px;
  }

  .product-buy-panel {
    margin-left: -1px;
    margin-right: -1px;
  }

  .shirt-print {
    -webkit-text-stroke-width: .6px;
  }
}
