/** Shopify CDN: Minification failed

Line 84:3 Unexpected "("
Line 85:7 Expected ":"
Line 86:5 Unexpected "("
Line 87:8 Expected ":"
Line 88:9 Expected ":"
Line 89:7 Expected ":"
Line 90:7 Expected ":"
Line 91:8 Expected ":"
Line 92:7 Expected ":"

**/
.collection-products-text__wrapper--center {
  max-width: 1080px;
  margin: 0 auto;
}

.collection-products-text__wrapper--center:not(:last-child) {
  margin-bottom: 3rem;
}

.collection-products-text__column {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.collection-products-text .center {
  margin-top: 3rem;
}

.collection-products-text__wrapper--left:not(:last-child) {
  margin-bottom: 3rem;
}

@media screen and (min-width: 990px) {
  .collection-products-text__wrapper--center:not(:last-child) {
    margin-bottom: 7rem;
  }
  .collection-products-text__column {
    flex-direction: row;
  }
}
.collection-products-text__title {
  display: flex;
  flex: 1;
  margin-bottom: 0;
}

.collection-products-text__title .number {
  line-height: 0.9;
  letter-spacing: -0.075em;
  margin-right: 2.5rem;
  font-weight: 400;
}

.collection-products-text__title .number:empty {
  display: none;
}

@media screen and (max-width: 989px) {
  .collection-products-text__title .number {
    font-size: 5rem !important;
  }
}
.collection-products-text__information {
  flex: 1;
}

.collection-products-text__button:not(:first-child) {
  margin-top: 1.6rem;
}

.collection-products-text__text {
  margin: 0;
}

.collection-products-text__wrapper--center .collection-products-text__title {
  justify-content: center;
  text-align: center;
}

if (window.innerWidth <= 749) {
  const desc = document.querySelector('.product__description.rte');
  if (desc) {
    desc.classList.add('is-truncated');
    const btn = document.createElement('button');
    btn.classList.add('read-more-btn');
    btn.textContent = 'Read more';
    desc.insertAdjacentElement('afterend', btn);
    btn.addEventListener('click', () => {
      desc.classList.toggle('is-truncated');
      btn.textContent = desc.classList.contains('is-truncated') ? 'Read more' : 'Read less';
    });
  }
}