/** Shopify CDN: Minification failed

Line 19:10 Unexpected "{"
Line 19:19 Expected ":"
Line 23:14 Expected identifier but found whitespace
Line 23:16 Unexpected "{"
Line 23:25 Expected ":"
Line 23:51 Expected ":"
Line 24:17 Expected identifier but found whitespace
Line 24:19 Unexpected "{"
Line 24:28 Expected ":"
Line 24:57 Expected ":"
... and 20 more hidden warnings

**/


/* CSS from section stylesheet tags */
.section-{{ section.id }} .buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  padding-left: {{ section.settings.padding_sides }}px;
  padding-right: {{ section.settings.padding_sides }}px;
}

.section-{{ section.id }} .btn {
  flex: 1 1 30%;
  padding: 0.75em 1.25em;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

/* Tablet: 2 buttons per row */
@media (min-width: 601px) and (max-width: 900px) {
  .section-{{ section.id }} .btn {
    flex: 1 1 45%;
  }
}

/* Mobile: spacing and size adjustments for better layout */
@media (max-width: 600px) {
  .section-{{ section.id }} .buttons-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-{{ section.id }} .btn {
    flex: 1 1 100%;
    padding: 0.5em 1em;
    font-size: 0.9rem;
  }
}

/* Optional: Reset theme container padding if required */
#shopify-section-{{ section.id }} .container,
#shopify-section-{{ section.id }} .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.image-block__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0; /* No inner spacing */
  margin: 0; /* No outer spacing */
}

.image-block__container {
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.image-block__image {
  height: auto;
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

/* Size Classes */
.image-size--small img {
  width: 200px;
}

.image-size--medium img {
  width: 400px;
}

.image-size--large img {
  width: 800px;
}

.image-size--full img {
  width: 100vw;
  height: auto;
  object-fit: contain;
}