/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 19:21 Expected identifier but found whitespace
Line 19:23 Unexpected "{"
Line 19:32 Expected ":"
Line 20:10 Expected identifier but found whitespace
Line 20:12 Unexpected "{"
Line 20:21 Expected ":"
Line 65:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  /* Banner Styles */
  .banner {
    background-color: {{ section.settings.banner_bg_color }};
    color: {{ section.settings.banner_text_color }};
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 30px;
  }

  /* Two-Column Layout */
  .two-column-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .left-column {
    flex: 1 1 30%;
  }

  .right-column {
    flex: 1 1 70%;
  }

  .block {
    margin-bottom: 20px;
  }

  .block img {
    max-width: 100%;
    height: auto;
  }

  .block a.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
  }

  /* Responsive Styles */
  @media (max-width: 767px) {
    .left-column,
    .right-column {
      flex: 1 1 100%;
    }
  }
</style>
/* A wrapper to provide top and bottom spacing for the whole section */
.product-info-blocks-wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.product-info-blocks-section {
  display: grid;
  gap: 1.5rem;
}

.product-info-blocks-section:not(.page-width) {
  padding-left: 2rem;
  padding-right: 2rem;
}

.info-block {
  padding: var(--block-padding-vertical) var(--block-padding-horizontal);
  border-radius: 8px;
}

.info-block--love-it {
  background-color: var(--love-it-bg);
}

.info-block--keep-in-mind {
  background-color: var(--keep-in-mind-bg);
}

.info-block__title {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.info-block__content.rte ul {
  list-style-position: outside;
  padding-left: 1.25rem;
  margin: 0;
}

.info-block__content.rte ul li {
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}

.info-block__content.rte ul li:last-child {
  margin-bottom: 0;
}

/* Desktop Styles */
@media screen and (min-width: 750px) {
  /* This is the original, working selector you confirmed */
  .product-info-blocks-section.layout-side-by-side {
    grid-template-columns: 1fr 1fr;
  }
  
  .product-info-blocks-section:not(.page-width) {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}