/** Shopify CDN: Minification failed

Line 131:29 Expected ")" to end URL token
Line 136:29 Expected ")" to end URL token

**/


/* CSS from section stylesheet tags */
.retailer-links__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* This will make it responsive, similar to the Tailwind grid */
    gap: 1rem; /* Gap between grid items, similar to the Tailwind gap */
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    max-width:600px;
}

.retailer-links__link {
    display: flex;
    align-items: center;
    background-color: #161616; /* This is a color close to the grey from Tailwind */
    transition: background-color 0.3s;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
}



.retailer-links__img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 48px;
    margin-right: 3rem; /* Spacing to the right of the image, similar to the Tailwind class */
}

.retailer-links__name {
    font-weight: bold;
    text-transform: uppercase;
    font-size:16px;
    flex-grow: 1; /* This ensures the name takes up any remaining space in the link */
}
h1 {margin-bottom:50px!important;}
.color-scheme {
  --color-bg: var(--color-scheme-background);
  --color-text: var(--color-scheme-text);
}

.page-block-section {
  width: 100%;
  max-width: 100%;
  padding: 48px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
}
  &.bg-gold {
    background-color: #d19741;
    color: #000;
  }
  &.bg-warm {
    background-color: #3a2d26;
    color: #fff;
  }
  &.bg-sand {
    background-color: #f4e8d4;
    color: #000;
  }
.page-block-section.bg-light {
  background-color: #f9f9f9;
  color: #000;
}
.page-block-section.bg-dark {
  background-color: #000;
  color: #fff;
}
.page-block-section h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-description {
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1rem;
  color: #eaeaea;
  line-height: 1.6;
}
.page-block-section .divider-line {
  border-top: 1px solid #d19741;
  width: 60px;
  margin: 3rem auto 4rem;
}
.page-block {
  margin-bottom: 40px;
}
.page-block h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: inherit;
}
.page-block p {
  max-width: 500px;
  margin: 0 auto 16px;
  color: inherit;
}
.page-block a.button {
  display: inline-block;
  background-color: #d19741;
  color: #000;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.page-block a.button:hover {
  background-color: #e0a248;
}

@media screen and (min-width: 750px) {
  .page-block-section.has-bg-image {
    background-image: url({{ section.settings.bg_image | image_url }});
  }
}
@media screen and (max-width: 749px) {
  .page-block-section.has-bg-image {
    background-image: url({{ section.settings.bg_image_mobile | image_url }});
  }
}