/** Shopify CDN: Minification failed

Line 46:7 Expected identifier but found whitespace
Line 46:8 Unexpected "0"
Line 46:13 Unexpected "{"
Line 46:22 Expected ":"
Line 46:60 Expected identifier but found "%"
Line 47:8 Expected identifier but found whitespace
Line 47:10 Unexpected "{"
Line 47:19 Expected ":"
Line 47:57 Expected identifier but found "%"
Line 48:12 Expected identifier but found whitespace
... and 3 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:mun-footer (INDEX:109) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.custom-footer {
  background-color: var(--footer-bg, #3d3520);
  color: var(--footer-text, #c8b99a);
  width: 100%;
}

/* ── Main inner: brand left (fixed narrow) + columns right (fill rest) ── */
.footer-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--footer-padding-top, 60px) 48px var(--footer-padding-bottom, 60px);
  gap: 0;
}

/* ── Brand block: fixed width, stays narrow like original ── */
.footer-brand {
  flex: 0 0 {{ section.settings.brand_width | default: 35 }}%;
  width: {{ section.settings.brand_width | default: 35 }}%;
  max-width: {{ section.settings.brand_width | default: 35 }}%;
  padding-right: 40px;
}

/* ── Columns wrapper: takes remaining space, evenly distributes columns ── */
.footer-columns {
  flex: 1 1 0;
  display: grid;
  grid-template-columns: repeat(var(--desktop-columns, 3), 1fr);
  gap: 0;
}

/* ── Brand text ── */
.footer-shop-name {
  display: block;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--footer-heading, #e8dcc8);
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-logo {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 12px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-style: italic;
  font-size: 12.5px;
  color: var(--footer-heading, #e8dcc8);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}

.footer-description {
  font-size: 12px;
  line-height: 1.8;
  color: var(--footer-text, #c8b99a);
  margin: 0;
  opacity: 0.82;
}

/* ── Single column ── */
.footer-column {
  padding-right: 20px;
}

.footer-column__heading {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--footer-heading, #e8dcc8);
  margin: 0 0 20px;
}

.footer-column__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-column__link {
  font-size: 12.5px;
  color: var(--footer-text, #c8b99a);
  text-decoration: none;
  letter-spacing: 0.01em;
  opacity: 0.85;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-column__link:hover {
  color: var(--footer-link-hover, #ffffff);
  opacity: 1;
}

/* ── Bottom bar ── */
.footer-bottom {
  border-top: 1px solid var(--footer-border, rgba(200,185,154,0.18));
}

.footer-bottom__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom__copy,
.footer-bottom__trademark {
  font-size: 11px;
  color: var(--footer-text, #c8b99a);
  margin: 0;
  opacity: 0.6;
  letter-spacing: 0.03em;
}

/* ── Tablet 768–1024px ── */
@media screen and (max-width: 1024px) {
  .footer-inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .footer-brand {
    flex: 0 0 32%;
    width: 32%;
    max-width: 32%;
  }

  .footer-bottom__inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* ── Mobile ── */
@media screen and (max-width: 749px) {
  .footer-inner {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    gap: 36px;
  }

  .footer-brand {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .footer-columns {
    width: 100%;
    grid-template-columns: repeat(var(--mobile-columns, 2), 1fr);
    gap: 28px 16px;
  }

  .footer-bottom__inner {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
/* END_SECTION:mun-footer */