/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 95:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .custom-product-grid {
    padding: 20px 0;
  }

  .custom-product-grid h2 {
    text-align: center;
    margin-bottom: 30px;
    margin-top:50px;
    background-color: #FB4D95;
    color: #000;
    padding: 20px;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 90px;
    grid-row-gap: 30px;
    padding: 0 90px;
  }

  @media (max-width: 767px) {
    .product-grid {
      grid-template-columns: 1fr;
      grid-column-gap: 0;
      grid-row-gap: 30px;
      padding: 0 20px;
    }
  }

  .product-card {
    text-align: center;
  }

  .image-wrapper {
    width: 100%;
    height: 250px;
    border: 1px solid #00000099;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #fff;
  }

  .image-wrapper img {
    max-width: none;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;

  }

  .product-title {
    margin-top: 10px;
    font-weight: 600;
  }

  .p-title-wraper {
    text-decoration: unset;
  }

  .custom-title {
    color: #000 !important;
    font-size: 20px !important;
    font-family: 'Crimson Text';
    text-transform:uppercase;
    font-weight: 500;
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 40px;
      grid-row-gap: 20px;
      padding: 0 30px;
    }

    .custom-title {
      color: 000 !important;
      font-size: 18px !important;
    }
  }
</style>