/** Shopify CDN: Minification failed

Line 45:8 Expected identifier but found whitespace
Line 45:10 Unexpected "{"
Line 45:19 Expected ":"
Line 60:8 Expected identifier but found whitespace
Line 60:10 Unexpected "{"
Line 60:19 Expected ":"

**/


/* CSS from section stylesheet tags */
/* ——————————————————————————————————————————————————————
   HTML Sitemap: 3-column grid layout
   —————————————————————————————————————————————————————— */
.sitemap-columns {
  display: grid;
  /* Mobile: single column */
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 -1rem;
}

@media screen and (min-width: 768px) {
  .sitemap-columns {
    /* Desktop: fixed 3 columns */
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sitemap-column {
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.sitemap-column__heading {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.25rem;
}

.sitemap-column__heading a {
  color: {{ section.settings.link_color }};
  text-decoration: none;
}

.sitemap-column__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.sitemap-column__item {
  margin-bottom: 0.35rem;
}

.sitemap-column__item a {
  color: {{ section.settings.link_color }};
  text-decoration: none;
  font-size: 0.9375rem;
}

.sitemap-column__item a:hover {
  text-decoration: underline;
}