/* Site-wide responsive safety nets */
img,
svg {
  max-width: 100%;
}

table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

/* ---------------------------------------------------------------- */
/* Global site footer                                                */
/* This footer ships with Shopify's own BEM classes (.site-footer*)  */
/* but that CSS bundle isn't included on this saved page, so it was  */
/* rendering completely unstyled. Rebuilt here as a compact,         */
/* responsive dark footer for phone / tablet / desktop.              */
/* ---------------------------------------------------------------- */

.site-footer {
  background: #1a1a1a;
  color: #d9d9d9;
  font-size: 0.875rem;
  line-height: 1.5;
}

.site-footer a {
  color: #d9d9d9;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.site-footer__brand svg {
  width: 2rem;
  height: auto;
  color: #ffffff;
}

.site-footer__columns {
  display: grid;
  flex: 1 1 auto;
  gap: 2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-footer__group h3 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-footer__group ul {
  display: grid;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 1.5rem;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.site-footer__locale {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__locale svg {
  width: 1.125rem;
  height: 1.125rem;
}

.site-footer__divider {
  opacity: 0.5;
}

.site-footer__language {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.site-footer__language svg {
  width: 0.875rem;
  height: 0.875rem;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.site-footer__privacy {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__social svg {
  width: 1.375rem;
  height: 1.375rem;
  color: #d9d9d9;
  transition: color 150ms ease;
}

.site-footer__social a:hover svg {
  color: #ffffff;
}

/* Tablet */
@media (max-width: 900px) {
  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Phone */
@media (max-width: 640px) {
  .site-footer__inner {
    padding: 2rem 1.25rem 1.5rem;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 1.75rem;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
}
