body.product-page {
  overflow: auto;
  overflow-x: hidden;
}

.product-page .corner-link {
  right: auto;
  left: clamp(24px, 6vw, 80px);
  background: rgba(9, 10, 12, 0.75);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  margin: -6px -10px;
  border-radius: 4px;
}

.product-page .corner-link-arrow {
  margin-right: 2px;
}

.product-page .corner-link:hover .corner-link-arrow,
.product-page .corner-link:focus-visible .corner-link-arrow {
  transform: translateX(-3px);
}

.product {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(90px, 14vh, 140px) clamp(24px, 6vw, 80px) clamp(60px, 10vh, 100px);
}

.product-head {
  margin-bottom: 20px;
}

.product-eyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent, var(--magenta));
  font-weight: 500;
}

.product-name {
  margin: 4px 0 0;
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(32px, 5.4vw, 52px);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.product-copy {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.product-copy p {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 15.5px);
  line-height: 1.7;
  color: #c7ccca;
}

.product-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(32px, 6vh, 52px);
  list-style: none;
  padding: 0;
}

.chip {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid #23272b;
  border-radius: 999px;
  padding: 6px 12px;
  white-space: nowrap;
}

.shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shots img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #1b1e22;
  background: var(--bg-raised);
}

.shots .shot-featured {
  grid-column: 1 / -1;
}

.product-footer {
  margin-top: clamp(56px, 10vh, 96px);
  padding-top: 24px;
  border-top: 1px solid #1b1e22;
}

.product-footer a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid var(--muted);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.product-footer a:hover,
.product-footer a:focus-visible {
  color: var(--cyan);
  border-color: var(--cyan);
}

@media (max-width: 640px) {
  .shots {
    grid-template-columns: 1fr;
  }
}
