/** Shopify CDN: Minification failed

Line 28:8 Expected identifier but found whitespace
Line 28:10 Unexpected "{"
Line 28:19 Expected ":"
Line 129:0 Unexpected "<"
Line 179:0 Unexpected "<"
Line 229:0 Unexpected "<"
Line 233:14 Expected identifier but found whitespace
Line 233:16 Unexpected "{"
Line 233:25 Expected ":"
Line 234:13 Expected identifier but found whitespace
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
.banner {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: {{ section.settings.text_color }};
}

.banner-content {
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 10px;
  color:#fff;
}

.banner-heading {
  font-size: 3rem;
  margin-bottom: 1rem;
 color:#fff;
}

.banner-subheading {
  font-size: 1.5rem;
  margin-bottom: 2rem;
color:#fff;
}

.banner-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.banner-button:hover {
  background-color: #f0f0f0;
}
.two-column-section {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 50px 15px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.two-column-section__content {
  flex: 1;
  padding: 0 15px;
}

.two-column-section__image {
  flex: 1;
  max-width: 50%;
  padding: 0 15px;
}

.two-column-section__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.section-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.section-button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
  .two-column-section {
    flex-direction: column !important;
    padding: 30px 15px;
  }
  
  .two-column-section__content,
  .two-column-section__image {
    max-width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  
  .two-column-section__image {
    order: -1;
  }
}

/* Full width image option */
.two-column-section.full-width-image .two-column-section__image {
  max-width: 100%;
}
#instafeed a {width: 33%;}
#instafeed a {width: 33%;}
<style>
  .zigzag-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 50px 20px;
  }

  .zigzag-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
  }

  .zigzag-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .zigzag-image,
  .zigzag-text {
    flex: 1;
    min-width: 300px;
    font-size:18px;
  }

  .zigzag-image img {
    width: 80%;
    height: auto;
    border-radius: 10px;
  }

  .zigzag-text h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .zigzag-button {
    margin-top: 15px;
  }

  .zigzag-button a {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
  }
</style>
<style>
  .zigzag-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 50px 20px;
  }

  .zigzag-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
  }

  .zigzag-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .zigzag-image,
  .zigzag-text {
    flex: 1;
    min-width: 300px;
  }

  .zigzag-image img {
    width: 80%;
    height: auto;
    border-radius: 10px;
  }

  .zigzag-text h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .zigzag-button {
    margin-top: 15px;
  }

  .zigzag-button a {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
  }
</style>
.single-column-section {
  display: flex;
  flex-direction: column;
  align-items: {{ section.settings.title_alignment | default: 'center' }};
  text-align: {{ section.settings.title_alignment | default: 'center' }};
  padding: 50px 15px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.single-column-section__content {
  width: 100%;
  max-width: 100%;
}

.single-column-section__title {
  margin-bottom: 20px;
  line-height: 1.4;
}

.single-column-section__text {
  margin-bottom: 20px;
}

.section-button {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: bold;
  text-transform: uppercase;
}

.section-button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
  .single-column-section {
    padding: 30px 15px;
    text-align: center;
    align-items: center;
  }

  .single-column-section__title {
    font-size: 1.5rem;
  }

  .single-column-section__text {
    font-size: 0.95rem;
  }
}