/** Shopify CDN: Minification failed

Line 18:0 Unexpected "<"
Line 21:21 Expected identifier but found whitespace
Line 21:23 Unexpected "{"
Line 21:32 Expected ":"
Line 22:10 Expected identifier but found whitespace
Line 22:12 Unexpected "{"
Line 22:21 Expected ":"
Line 67:0 Unexpected "<"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-page (INDEX:27) */
<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>
/* END_SECTION:custom-page */

/* START_SECTION:product-info-blocks (INDEX:94) */
/* 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: 0;
}

.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;
}

/* Forces all text inside the blocks to be normal weight */
.info-block__content.rte,
.info-block__content.rte p,
.info-block__content.rte li,
.info-block__content.rte strong,
.info-block__content.rte b {
  font-weight: normal !important;
}

/* 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;
  }
}
/* END_SECTION:product-info-blocks */