:root {
  color-scheme: light;
  --ink: #15201b;
  --muted: #657069;
  --line: #dde5de;
  --paper: #f7f8f4;
  --bone: #f7f1e5;
  --white: #ffffff;
  --green: #156000;
  --green-2: #287a12;
  --coral: #d96752;
  --gold: #caa24a;
  --blue: #315f86;
  --shadow: 0 18px 50px rgba(25, 39, 31, 0.13);
  --font-body: "Tiempos Text", Tiempos, "Libre Baskerville", Georgia, serif;
  --font-display: Copperplate, "Copperplate Gothic Light", "Copperplate Gothic Bold", "Times New Roman", serif;
  --font-fashion: Didot, "Bodoni 72", "Bodoni 72 Smallcaps", "Libre Baskerville", Georgia, serif;
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
.login-header,
.site-header,
.brand-row,
.eyebrow,
.product-kicker {
  font-family: var(--font-display);
}

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

button,
input {
  font: inherit;
}

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

.login-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(21, 96, 0, 0.72), rgba(21, 96, 0, 0.08)),
    url("/assets/images/sawgrass.jpg") center / cover;
}

.login-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 12px clamp(18px, 5vw, 56px);
  background: var(--bone);
  color: var(--green);
  box-shadow: 0 10px 28px rgba(21, 96, 0, 0.12);
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 48px;
  min-height: 100vh;
  align-items: center;
  padding: clamp(24px, 6vw, 80px);
}

.login-hero {
  color: var(--white);
  max-width: 720px;
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 104px;
  height: 46px;
  object-fit: contain;
}

.login-hero h1 {
  max-width: 820px;
  margin: 62px 0 18px;
  font-size: clamp(2.7rem, 7vw, 6.7rem);
  line-height: 0.96;
}

.login-hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  line-height: 1.6;
}

.login-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.login-panel label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.password-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.password-row input {
  min-width: 0;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
}

.password-row button,
.cart-button {
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.password-row button {
  padding: 0 18px;
}

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 42px);
  border-bottom: 1px solid rgba(21, 96, 0, 0.18);
  background: var(--bone);
  color: var(--green);
  box-shadow: 0 8px 20px rgba(21, 96, 0, 0.08);
}

.header-logo {
  grid-column: 2;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 142px;
}

.header-logo img {
  width: 142px;
  height: 54px;
  object-fit: contain;
}

.header-cart {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: min(360px, 100vw);
  padding: 18px clamp(18px, 4vw, 42px) 24px;
  border-right: 1px solid rgba(21, 96, 0, 0.14);
  border-bottom: 1px solid rgba(21, 96, 0, 0.14);
  background: var(--bone);
  box-shadow: 0 20px 34px rgba(21, 96, 0, 0.12);
}

.site-nav.is-open {
  display: grid;
  gap: 0;
}

.nav-left,
.nav-right {
  display: grid;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(21, 96, 0, 0.12);
}

.nav-toggle {
  grid-column: 1;
  grid-row: 1;
  display: inline-grid;
  gap: 7px;
  justify-self: start;
  width: 44px;
  height: 38px;
  padding: 6px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--ink);
}

main {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 56px) 64px;
}

.carousel-page {
  width: 100%;
  max-width: none;
  padding: 0;
}

.hero-carousel {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background: #e8e1d2;
}

.carousel-track {
  display: flex;
  min-height: calc(100vh - 72px);
  transition: transform 850ms cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.carousel-slide {
  display: grid;
  position: relative;
  flex: 0 0 100%;
  min-height: calc(100vh - 72px);
  color: var(--white);
  isolation: isolate;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.62)),
    linear-gradient(90deg, rgba(21, 96, 0, 0.22), transparent 50%);
}

.slide-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #e6decf;
}

.slide-art img {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 72px);
  object-fit: cover;
}

.slide-player {
  object-position: center top;
}

.slide-product {
  object-position: center;
}

.slide-copy {
  align-self: end;
  width: min(760px, calc(100% - 40px));
  padding: 0 0 clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.slide-copy p,
.slide-copy h1,
.slide-copy span {
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.slide-copy p {
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.slide-copy h1 {
  margin-top: 8px;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.9;
}

.slide-copy span {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  font-weight: 800;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 64px;
  border: 0;
  background: rgba(0, 0, 0, 0.16);
  color: var(--white);
  cursor: pointer;
  font-size: 3rem;
  line-height: 1;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 5;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--white);
}

.players-page {
  width: 100%;
  max-width: none;
  padding: 0;
  background: var(--green);
}

.collections-page {
  width: 100%;
  max-width: none;
  padding: 0;
  background: var(--green);
}

.players-hero {
  display: grid;
  gap: 8px;
  padding: clamp(30px, 5vw, 58px) clamp(18px, 4vw, 42px) 24px;
  color: var(--bone);
}

.players-hero .eyebrow {
  color: var(--bone);
}

.players-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 6rem);
  line-height: 0.95;
}

.players-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, calc((100vh - 260px) / 2));
  padding: 0 clamp(18px, 4vw, 42px) 42px;
  background: var(--green);
}

.directory-player {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  border: 4px solid var(--white);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, #d8d2c3, #a8b49c 50%, #4b6f3f);
  color: var(--white);
  cursor: pointer;
}

.directory-player::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 999px 999px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.1)),
    var(--green);
  opacity: 0.42;
  transform: translateY(8%) scale(0.86);
  transition:
    opacity 300ms ease,
    transform 420ms ease;
}

.directory-player::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 250ms ease;
}

.player-placeholder {
  position: absolute;
  top: 14px;
  left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 900;
}

.directory-player-name {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  opacity: 0;
  color: var(--white);
  font-size: clamp(1.2rem, 2.2vw, 2.3rem);
  font-weight: 900;
  line-height: 0.96;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  transform: translateY(14px);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}

.directory-player:hover::before,
.directory-player.is-revealed::before {
  opacity: 0.72;
  transform: translateY(0) scale(1.02);
}

.directory-player:hover::after,
.directory-player.is-revealed::after,
.directory-player:hover .directory-player-name,
.directory-player.is-revealed .directory-player-name {
  opacity: 1;
}

.directory-player:hover .directory-player-name,
.directory-player.is-revealed .directory-player-name {
  transform: translateY(0);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(280px, calc((100vh - 260px) / 2));
  padding: 0 clamp(18px, 4vw, 42px) 42px;
  background: var(--green);
}

.collection-tile {
  position: relative;
  display: grid;
  place-items: end start;
  overflow: hidden;
  min-width: 0;
  border: 4px solid var(--white);
  padding: clamp(18px, 3vw, 38px);
  color: var(--white);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.36), transparent 25%),
    linear-gradient(135deg, #d8d2c3, #9db48f 52%, #315f22);
  isolation: isolate;
}

.collection-tile::before {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: -1;
  opacity: 0.55;
  transform: scale(0.9);
  transition:
    opacity 300ms ease,
    transform 420ms ease;
}

.collection-headwear::before {
  border-radius: 999px 999px 16px 16px;
  background: var(--green);
}

.collection-outerwear::before {
  border-radius: 24px 24px 8px 8px;
  background: linear-gradient(180deg, var(--green), #2f7a18);
}

.collection-polos::before {
  clip-path: polygon(26% 14%, 50% 28%, 74% 14%, 92% 40%, 76% 50%, 76% 88%, 24% 88%, 24% 50%, 8% 40%);
  background: var(--green);
}

.collection-other::before {
  border-radius: 50%;
  background: var(--green);
}

.collection-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(0, 0, 0, 0.62));
  transition: opacity 240ms ease;
}

.collection-tile span {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.collection-tile:hover::before,
.collection-tile:focus-visible::before {
  opacity: 0.8;
  transform: scale(1.05);
}

.collection-tile:hover::after,
.collection-tile:focus-visible::after {
  opacity: 1;
}

.collection-tile:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.7);
  outline-offset: -8px;
}

.player-detail-page {
  width: 100%;
  max-width: none;
  padding: clamp(18px, 4vw, 42px);
}

.player-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  min-height: calc(100vh - 156px);
}

.player-feature-image {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 620px;
  border: 4px solid var(--white);
  background:
    radial-gradient(circle at 42% 24%, rgba(255, 255, 255, 0.34), transparent 22%),
    linear-gradient(135deg, #d8d2c3, #a8b49c 50%, #4b6f3f);
}

.player-feature-image::before {
  content: "";
  position: absolute;
  inset: 13%;
  border-radius: 999px 999px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.1)),
    var(--green);
  opacity: 0.5;
}

.not-member-ribbon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 150%;
  padding: 16px 28px;
  background: rgba(95, 95, 95, 0.92);
  color: var(--white);
  font-size: clamp(0.86rem, 1.8vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(-28deg);
}

.player-feature-placeholder {
  z-index: 1;
  width: min(80%, 620px);
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
}

.player-request-panel {
  align-self: center;
}

.player-request-panel h1 {
  margin: 8px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  line-height: 0.92;
}

.player-request-panel p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.6vw, 1.45rem);
  line-height: 1.6;
}

.interest-modal {
  width: min(92vw, 520px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--bone);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.interest-modal::backdrop {
  background: rgba(0, 0, 0, 0.55);
}

.interest-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 30px;
}

.interest-form h2 {
  margin: 0 0 4px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.interest-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.interest-form input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 13px;
  background: var(--white);
  color: var(--ink);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
}

.shop-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.6fr);
  gap: 30px;
  align-items: end;
  padding: 54px 0 26px;
}

.eyebrow,
.product-kicker {
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fashion-label {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 7px 12px;
  border: 1px solid #d8d8d8;
  background: #eeeeee;
  color: var(--green);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.fashion-action {
  width: min(100%, 360px);
  min-height: 52px;
  justify-self: center;
  border: 2px solid var(--green);
  border-radius: 0;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(21, 96, 0, 0.18);
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.fashion-action::after {
  content: "  →";
}

.fashion-action:hover,
.fashion-action:focus-visible {
  background: var(--white);
  color: var(--green);
  box-shadow: 0 16px 30px rgba(21, 96, 0, 0.26);
  transform: translateY(-2px);
}

.fashion-action:focus-visible {
  outline: 3px solid rgba(21, 96, 0, 0.25);
  outline-offset: 3px;
}

.shop-intro h1 {
  max-width: 860px;
  margin: 8px 0 0;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 0.98;
}

.shop-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.players-wrap,
.merch-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
}

.section-heading span {
  color: var(--muted);
  text-align: right;
}

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

.player-card {
  display: grid;
  grid-template-rows: minmax(220px, 1fr) auto;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(20, 40, 30, 0.06);
}

.player-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  background: #dbe7de;
}

.player-card span {
  display: grid;
  gap: 3px;
  padding: 14px;
}

.player-card small {
  color: var(--muted);
}

.player-card.is-active {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 118, 87, 0.2);
}

.product-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 310px);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--green-2) transparent;
}

.product-card {
  display: grid;
  grid-template-rows: 260px auto auto auto;
  gap: 7px;
  scroll-snap-align: start;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding-bottom: 14px;
  box-shadow: 0 8px 24px rgba(20, 40, 30, 0.06);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(20, 40, 30, 0.12);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #edf1ed;
}

.product-card span,
.product-card strong {
  margin: 0 14px;
}

.product-card strong {
  font-size: 1.06rem;
}

.product-page {
  padding-top: 32px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: 26px 0 46px;
}

.product-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-info {
  display: grid;
  gap: 18px;
  padding-top: 10px;
}

.product-info h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-info .price {
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
}

.option-group {
  display: grid;
  gap: 9px;
}

.option-group > span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.option-button,
.size-grid button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.option-button {
  justify-self: start;
  padding: 0 16px;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 64px));
  gap: 8px;
}

.option-button.is-selected,
.size-grid .is-selected {
  border-color: var(--green);
  background: rgba(45, 118, 87, 0.08);
}

.cart-button {
  min-height: 54px;
  width: min(100%, 440px);
  font-size: 1rem;
}

.cart-button.is-added {
  background: var(--green-2);
}

.product-details {
  display: grid;
  gap: 0;
  width: min(100%, 520px);
  margin: 10px 0 0;
  border-top: 1px solid var(--line);
}

.product-details div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.product-details dt {
  color: var(--muted);
  font-weight: 800;
}

.product-details dd {
  margin: 0;
}

.related-section {
  padding-bottom: 20px;
}

.simple-page {
  display: grid;
  align-content: center;
  min-height: calc(100vh - 76px);
  max-width: 840px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.simple-page h1 {
  margin: 8px 0 16px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1;
}

.simple-page p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .login-shell,
  .shop-intro,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .login-hero h1 {
    margin-top: 52px;
  }

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

@media (max-width: 640px) {
  .login-shell {
    gap: 28px;
    align-content: center;
  }

  .password-row {
    grid-template-columns: 1fr;
  }

  .password-row button {
    min-height: 48px;
  }

  .site-header {
    position: sticky;
    min-height: 68px;
    padding: 8px 16px;
  }

  .header-logo {
    width: 104px;
  }

  .header-logo img {
    width: 104px;
    height: 46px;
  }

  .site-nav {
    width: 100%;
    padding: 14px 16px 18px;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(21, 96, 0, 0.12);
  }

  .header-cart {
    font-size: 0.8rem;
  }

  .nav-toggle {
    width: 40px;
  }

  .nav-toggle span {
    width: 34px;
  }

  .hero-carousel,
  .carousel-track,
  .carousel-slide {
    min-height: calc(100vh - 68px);
  }

  .slide-art {
    grid-template-columns: 1fr;
  }

  .slide-product {
    display: none;
  }

  .slide-art img {
    min-height: calc(100vh - 68px);
  }

  .slide-copy {
    width: min(100% - 28px, 620px);
    padding: 0 0 72px 20px;
  }

  .carousel-control {
    display: none;
  }

  .players-hero {
    padding: 24px 16px 18px;
  }

  .players-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(190px, calc((100vh - 210px) / 2));
    padding: 0 16px 28px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(180px, 22vh);
    padding: 0 16px 28px;
  }

  .collection-tile {
    border-width: 3px;
  }

  .directory-player {
    border-width: 3px;
  }

  .directory-player-name {
    font-size: clamp(1.05rem, 7vw, 1.75rem);
  }

  .player-detail-page {
    padding: 16px;
  }

  .player-detail-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .player-feature-image {
    min-height: 430px;
  }

  .player-request-panel {
    align-self: auto;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .section-heading span {
    text-align: left;
  }

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

  .product-scroller {
    grid-auto-columns: minmax(220px, 78vw);
  }

  .product-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transition: none;
  }
}
