/* Product explorer: the photograph and its numbered controls share one coordinate space. */
.sock-explorer {
  display: grid;
  grid-template-columns: 1.17fr 1fr;
  gap: 64px;
  align-items: start;
}
.explorer-figure {
  position: relative;
  background: #efefea;
  border: 1px solid #e0e2db;
  overflow: hidden;
}
.explorer-kicker {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 23px 26px 0;
  font-size: 8px;
  letter-spacing: 1.1px;
}
.sock-stage {
  width: 83%;
  margin: 30px auto 22px;
  position: relative;
  aspect-ratio: 1186/1327;
}
.sock-stage > img {
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.sock-hotspots {
  display: none;
}
.explorer-ready .sock-hotspots {
  display: block;
}
.sock-hotspot {
  position: absolute;
  left: var(--point-x);
  top: var(--point-y);
  transform: translate(-50%, -50%);
  border: 1px solid #fff8;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fffc;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 0 0 6px #ffffff26;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.sock-hotspot[aria-pressed="true"] {
  background: var(--red);
  color: white;
  box-shadow: 0 0 0 6px #c9292730;
}
.sock-hotspot:hover {
  box-shadow: 0 0 0 9px #c9292728;
}
.sock-hotspot:focus-visible {
  outline-color: var(--ink);
  outline-offset: 7px;
}
.explorer-figure figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #d8dbd1;
  padding: 15px 24px;
  color: var(--muted);
  font-size: 9px;
}
.interactive-hint {
  visibility: hidden;
}
.explorer-ready .interactive-hint {
  visibility: visible;
  color: var(--ink);
  font-size: 10px;
}
.interactive-hint > span {
  color: var(--red);
  font-size: 17px;
  vertical-align: middle;
  margin-right: 5px;
}
.explorer-intro {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 18px 0 22px;
  max-width: 420px;
}
.zone-choices {
  display: none;
  border-top: 1px solid var(--line);
}
.explorer-ready .zone-choices {
  display: block;
}
.zone-choice {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: white;
  text-align: left;
  color: var(--ink);
  transition: background 0.18s;
}
.zone-choice:hover {
  background: var(--paper);
}
.zone-choice[aria-pressed="true"] {
  background: #f5f5f0;
  box-shadow: inset 3px 0 var(--red);
}
.zone-number {
  font-size: 10px;
  color: var(--red);
  font-weight: 600;
  align-self: flex-start;
  margin-top: 2px;
}
.zone-choice strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}
.zone-choice > span:nth-child(2) > span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  margin-top: 3px;
}
.zone-arrow {
  margin-left: auto;
  font-size: 20px;
  color: var(--muted);
}
.zone-choice[aria-pressed="true"] .zone-arrow {
  color: var(--red);
}
.zone-panel {
  margin-top: 24px;
  scroll-margin-top: 16px;
}
.zone-panel[hidden] {
  display: none;
}
.zone-select-label {
  margin-bottom: 17px;
}
.detail-crop {
  height: 196px;
  position: relative;
  background-color: var(--paper);
  background-image: url("assets/gripsokken-studio.webp");
  background-repeat: no-repeat;
  background-size: 230% auto;
  overflow: hidden;
  border: 1px solid var(--line);
}
.detail-crop-grip {
  background-position: 100% 88%;
}
.detail-crop-breisel {
  background-position: 24% 66%;
}
.detail-crop-boord {
  background-position: 0 18%;
}
.crop-location {
  position: absolute;
  left: 12px;
  top: 12px;
  background: #fffffff2;
  padding: 6px 9px;
  font-size: 8px;
  letter-spacing: 1px;
}
.detail-zoom {
  display: none;
  position: absolute;
  right: 12px;
  bottom: 12px;
  border: 1px solid #d1d5c9;
  background: #fffffff2;
  padding: 8px 12px;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  min-height: 40px;
}
.explorer-ready .detail-zoom {
  display: flex;
}
.detail-zoom > span {
  font-size: 19px;
}
.detail-zoom:hover {
  background: var(--ink);
  color: white;
}
.zone-description {
  padding-top: 19px;
}
.zone-description h3 {
  font-size: 19px;
  letter-spacing: -0.5px;
}
.zone-description p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 10px;
}
.explorer-page-link {
  margin-top: 20px;
  font-size: 12px;
}
.explorer-select-label {
  margin-bottom: 18px;
}
.sock-explorer-compact {
  grid-template-columns: 1.12fr 1fr;
  gap: 70px;
  align-items: center;
}
.sock-explorer-compact .sock-stage {
  margin-block: 35px 30px;
}
.sock-explorer-compact .zone-choice {
  padding-block: 13px;
}
.sock-explorer-compact .zone-choice > span:nth-child(2) > span {
  display: none;
}
.sock-explorer-compact .detail-crop {
  height: 160px;
}
.sock-explorer-compact .zone-panel {
  margin-top: 20px;
}
.sock-explorer-compact .zone-description h3 {
  font-size: 18px;
}
.sock-explorer-compact .zone-description p {
  font-size: 12px;
}
.detail-dialog {
  width: min(940px, calc(100% - 36px));
  max-height: 90dvh;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 20px 90px #0004;
  color: var(--ink);
}
.detail-dialog::backdrop {
  background: #101410b8;
  backdrop-filter: blur(4px);
}
.dialog-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 23px;
}
.dialog-heading .eyebrow {
  font-size: 9px;
  color: var(--muted);
  margin-bottom: 7px;
}
.dialog-heading h2 {
  font-size: 30px;
  letter-spacing: -1px;
}
.dialog-close {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 28px;
  line-height: 1;
}
.dialog-crop {
  width: 100%;
  height: min(52vh, 480px);
  min-height: 200px;
  background-image: url("assets/gripsokken-studio.webp");
  background-repeat: no-repeat;
  background-color: var(--paper);
  border: 1px solid var(--line);
}
.dialog-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
}
.dialog-tools > p {
  max-width: 350px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.dialog-tools label {
  display: grid;
  grid-template-columns: auto minmax(100px, 160px) 30px;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 11px;
  white-space: nowrap;
}
.dialog-tools input {
  padding: 0;
  accent-color: var(--red);
  height: 30px;
  width: 100%;
  cursor: pointer;
}
.dialog-tools output {
  text-align: right;
  font-size: 11px;
}
.dialog-image-note {
  margin-top: 14px;
  font-size: 9px;
  color: var(--muted);
}
.nav-links [aria-current="page"] {
  color: var(--red);
}
.product-page-intro {
  padding: 30px 0 48px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 42px;
}
.breadcrumbs a:hover {
  color: var(--red);
}
.breadcrumbs [aria-current] {
  color: var(--ink);
}
.product-title-grid {
  display: grid;
  grid-template-columns: 1.17fr 1fr;
  gap: 64px;
  align-items: end;
}
.product-title-grid .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  margin-bottom: 22px;
}
.product-title-grid h1 {
  font-size: clamp(52px, 5.3vw, 74px);
  letter-spacing: -3px;
  line-height: 0.98;
}
.product-page-lead > p:first-child {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 440px;
}
.explorer-instruction {
  font-size: 11px;
  margin-top: 25px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.explorer-instruction > span {
  color: var(--red);
  font-size: 21px;
}
.product-experience {
  padding-bottom: 65px;
}
.sock-specs {
  background: var(--paper);
  border-block: 1px solid var(--line);
  padding-block: 30px;
}
.sock-specs .eyebrow {
  font-size: 9px;
  color: var(--muted);
  margin-bottom: 18px;
}
.sock-specs dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.sock-specs dl > div {
  border-right: 1px solid var(--line);
  padding-inline: 27px;
}
.sock-specs dl > div:first-child {
  padding-left: 0;
}
.sock-specs dl > div:last-child {
  border: 0;
}
.sock-specs dt {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 3px;
}
.sock-specs dd {
  font-size: 14px;
  font-weight: 500;
}
.product-routes .section-heading {
  align-items: end;
  margin-bottom: 35px;
}
.product-routes .eyebrow {
  margin-bottom: 20px;
}
.product-routes .section-heading > p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}
.purchase-routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.purchase-routes article {
  padding: 38px 40px;
}
.purchase-club {
  background: var(--ink);
  color: white;
}
.purchase-player {
  background: var(--paper);
  border: 1px solid var(--line);
}
.purchase-routes .eyebrow {
  font-size: 9px;
  margin-bottom: 27px;
}
.purchase-club .eyebrow {
  color: #c2c7bd;
}
.purchase-routes h3 {
  font-size: 30px;
  letter-spacing: -1px;
}
.purchase-routes article > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin: 18px 0 27px;
  max-width: 390px;
}
.purchase-routes .purchase-club > p:not(.eyebrow) {
  color: #c2c7bd;
}
.route-secondary {
  display: block;
  font-size: 11px;
  margin-top: 17px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 1100px) {
  .sock-explorer,
  .sock-explorer-compact,
  .product-title-grid {
    gap: 38px;
  }
  .explorer-kicker {
    padding-inline: 20px;
    font-size: 7px;
  }
  .sock-stage {
    width: 86%;
  }
  .explorer-figure figcaption {
    padding-inline: 17px;
    font-size: 8px;
  }
  .explorer-ready .interactive-hint {
    font-size: 9px;
  }
  .explorer-content h2 {
    font-size: 35px;
  }
  .sock-explorer-compact .detail-crop {
    height: 150px;
  }
  .purchase-routes article {
    padding: 30px;
  }
  .dialog-tools {
    gap: 20px;
  }
}
@media (max-width: 800px) {
  .sock-explorer,
  .sock-explorer-compact {
    gap: 28px;
    grid-template-columns: 1fr 1fr;
  }
  .product-title-grid {
    gap: 28px;
  }
  .explorer-kicker {
    padding-inline: 15px;
    font-size: 6px;
  }
  .explorer-content h2 {
    font-size: 29px;
  }
  .explorer-intro {
    font-size: 12px;
    margin-block: 14px 18px;
  }
  .sock-stage {
    width: 90%;
    margin-block: 25px 20px;
  }
  .sock-hotspot {
    width: 44px;
    height: 44px;
    font-size: 11px;
  }
  .zone-choice {
    gap: 12px;
    padding: 14px 10px;
  }
  .zone-choice strong {
    font-size: 13px;
  }
  .zone-choice > span:nth-child(2) > span {
    font-size: 10px;
  }
  .zone-description h3,
  .sock-explorer-compact .zone-description h3 {
    font-size: 17px;
  }
  .zone-description p {
    font-size: 12px;
  }
  .explorer-page-link {
    font-size: 10px;
    gap: 12px;
  }
  .explorer-figure figcaption {
    display: block;
  }
  .interactive-hint {
    display: block;
    margin-top: 4px;
  }
  .sock-explorer-compact .detail-crop {
    height: 135px;
  }
  .crop-location {
    font-size: 7px;
    left: 8px;
    top: 8px;
    padding: 4px 6px;
  }
  .detail-zoom {
    right: 8px;
    bottom: 8px;
    padding: 5px 8px;
    font-size: 9px;
    min-height: 36px;
  }
  .product-title-grid h1 {
    font-size: 53px;
  }
  .product-page-lead > p:first-child {
    font-size: 14px;
  }
  .product-title-grid .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .explorer-instruction {
    font-size: 10px;
  }
  .sock-specs dl > div {
    padding-inline: 15px;
  }
  .sock-specs dd {
    font-size: 12px;
  }
  .purchase-routes article {
    padding: 26px;
  }
  .purchase-routes h3 {
    font-size: 25px;
  }
  .purchase-routes .button {
    font-size: 11px;
    gap: 15px;
    padding-inline: 14px;
  }
  .product-routes .section-heading > p {
    font-size: 11px;
  }
  .dialog-tools {
    display: block;
  }
  .dialog-tools label {
    margin-top: 18px;
    grid-template-columns: auto 1fr 30px;
  }
  .dialog-tools > p {
    max-width: none;
  }
}
@media (max-width: 600px) {
  .sock-explorer,
  .sock-explorer-compact {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .sock-explorer-compact {
    align-items: start;
  }
  .explorer-kicker {
    padding: 17px 18px 0;
    font-size: 7px;
  }
  .sock-stage,
  .sock-explorer-compact .sock-stage {
    width: 80%;
    margin: 23px auto 18px;
  }
  .explorer-figure figcaption {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 17px;
    font-size: 8px;
  }
  .interactive-hint {
    margin: 0;
  }
  .explorer-ready .interactive-hint {
    font-size: 9px;
  }
  .explorer-content h2 {
    font-size: 32px;
  }
  .explorer-intro {
    font-size: 13px;
  }
  .zone-choice,
  .sock-explorer-compact .zone-choice {
    padding: 15px 12px;
    gap: 17px;
  }
  .zone-choice strong {
    font-size: 14px;
  }
  .zone-choice > span:nth-child(2) > span {
    font-size: 11px;
  }
  .zone-arrow {
    font-size: 19px;
  }
  .detail-crop,
  .sock-explorer-compact .detail-crop {
    height: 200px;
  }
  .crop-location {
    top: 12px;
    left: 12px;
    font-size: 8px;
    padding: 6px 9px;
  }
  .detail-zoom {
    min-height: 44px;
    padding: 8px 13px;
    font-size: 11px;
    bottom: 12px;
    right: 12px;
  }
  .zone-description h3,
  .sock-explorer-compact .zone-description h3 {
    font-size: 19px;
  }
  .zone-description p,
  .sock-explorer-compact .zone-description p {
    font-size: 13px;
  }
  .explorer-page-link {
    font-size: 12px;
  }
  .product-page-intro {
    padding-top: 22px;
    padding-bottom: 30px;
  }
  .breadcrumbs {
    margin-bottom: 30px;
  }
  .product-title-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .product-title-grid h1 {
    font-size: clamp(46px, 12vw, 66px);
    letter-spacing: -2px;
  }
  .product-title-grid .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .product-page-lead > p:first-child {
    font-size: 14px;
  }
  .explorer-instruction {
    margin-top: 16px;
    font-size: 10px;
  }
  .product-experience {
    padding-bottom: 45px;
  }
  .explorer-select-label {
    font-size: 9px;
    margin-bottom: 17px;
  }
  .sock-specs {
    padding-block: 25px;
  }
  .sock-specs dl {
    grid-template-columns: 1fr 1fr;
    gap: 22px 0;
  }
  .sock-specs dl > div {
    padding-inline: 17px;
  }
  .sock-specs dl > div:nth-child(odd) {
    padding-left: 0;
  }
  .sock-specs dl > div:nth-child(even) {
    border: 0;
  }
  .sock-specs dd {
    font-size: 13px;
  }
  .product-routes .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .product-routes .section-heading > p {
    margin-top: 20px;
    font-size: 12px;
  }
  .purchase-routes {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .purchase-routes article {
    padding: 27px 24px;
  }
  .purchase-routes h3 {
    font-size: 27px;
  }
  .purchase-routes .button {
    font-size: 12px;
    gap: 15px;
  }
  .purchase-routes .eyebrow {
    margin-bottom: 22px;
  }
  .detail-dialog {
    width: calc(100% - 24px);
    padding: 18px;
    max-height: 92dvh;
  }
  .dialog-heading {
    gap: 10px;
    margin-bottom: 17px;
  }
  .dialog-heading h2 {
    font-size: 23px;
  }
  .dialog-heading .eyebrow {
    font-size: 8px;
  }
  .dialog-close {
    width: 44px;
    height: 44px;
  }
  .dialog-crop {
    height: 36dvh;
    min-height: 180px;
  }
  .dialog-tools > p {
    font-size: 11px;
  }
  .dialog-tools label {
    font-size: 10px;
    gap: 10px;
  }
  .dialog-image-note {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sock-hotspot,
  .zone-choice {
    transition: none;
  }
}
.back-to-sock {
  display: none;
}
@media (max-width: 600px) {
  .back-to-sock {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    min-height: 44px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 11px;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .explorer-figure {
    scroll-margin-top: 16px;
  }
}
