/** Shopify CDN: Minification failed

Line 88:14 Expected identifier but found whitespace
Line 88:16 Unexpected "{"
Line 88:25 Expected ":"
Line 88:55 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:icon-with-text (INDEX:29) */
.icon-blocks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--icon-spacing, 2rem);
  margin-top: 2rem;
}

.icon-block {
  text-align: center;
  max-width: 140px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: var(--icon-text-gap, 0.5rem);
}

.responsive-icon {
  height: var(--icon-size, 50px);
  width: auto;
  object-fit: contain;
  display: block;
}

.icon-description {
  text-align: center;
  line-height: 1.4;
  color: inherit;
}

@media screen and (max-width: 749px) {
  .icon-blocks {
    flex-direction: column;
    align-items: center;
    gap: var(--mobile-icon-spacing, 1.2rem);
  }

  .icon-block {
    max-width: none;
    width: auto;
  }

  .icon-image-wrapper {
    margin-bottom: var(--icon-text-gap-mobile, 0.5rem);
  }

  .responsive-icon {
    height: calc(var(--icon-size, 50px) * 0.85);
    width: auto;
  }
}
/* END_SECTION:icon-with-text */

/* START_SECTION:stockistpage (INDEX:94) */
#stockistpage .stockist-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

#stockistpage .stockist {
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: calc(100% * {{ section.settings.container_width | divided_by: 1200 }});
    max-width: {{ section.settings.container_width }}px;
    min-width: 300px;
}

#stockistpage .section-header {
    text-align: center;
    margin: 40px 0 20px;
}
/* END_SECTION:stockistpage */