/* Discontinued-product notice shown at the bottom of every page */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.site-footer-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #666;
}

.site-footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer a:hover {
  color: #1b1b1b;
}

/* Pages with a dark background regardless of system theme */
.site-footer--dark {
  background: rgba(11, 11, 16, 0.94);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.site-footer--dark .site-footer-text {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer--dark a:hover {
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  .site-footer:not(.site-footer--dark) {
    background: rgba(11, 11, 16, 0.94);
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .site-footer:not(.site-footer--dark) .site-footer-text {
    color: rgba(255, 255, 255, 0.6);
  }

  .site-footer:not(.site-footer--dark) a:hover {
    color: #fff;
  }
}

/* Keep scrollable content clear of the fixed footer */
html:has(.site-footer) body {
  padding-bottom: calc(56px + env(safe-area-inset-bottom));
}

/* Home page: sit explore CTA above the footer */
html:has(.site-footer--dark) .home-cta {
  bottom: calc(52px + env(safe-area-inset-bottom));
}

/* Explore: sit back-to-top above the footer */
html:has(.site-footer) .back-to-top {
  bottom: calc(52px + env(safe-area-inset-bottom));
}
