/* The two pieces of storefront chrome the game's own stylesheet does not cover:
   a skip link for keyboard users and a way back to the product page. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: #0a0d0b;
  color: #d8f5df;
  font: 600 0.9rem/1 system-ui, sans-serif;
}
.skip-link:focus { left: 0; }

.back-to-store {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 60;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 13, 11, 0.82);
  color: #d8f5df;
  font: 600 0.82rem/1 system-ui, sans-serif;
  text-decoration: none;
  border: 1px solid rgba(216, 245, 223, 0.28);
}
.back-to-store:hover,
.back-to-store:focus { background: rgba(10, 13, 11, 0.96); }
