/** Shopify CDN: Minification failed

Line 149:16 Expected identifier but found whitespace
Line 149:18 Unexpected "{"
Line 149:27 Expected ":"
Line 149:53 Expected ":"
Line 150:19 Expected identifier but found whitespace
Line 150:21 Unexpected "{"
Line 150:30 Expected ":"
Line 150:59 Expected ":"

**/


/* CSS from section stylesheet tags */
/* Styles statiques seulement */
  .collection-description-section {
    width: 100%;
  }

  .collection-description-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .collection-description-content .rte {
    font-family: 'Karla', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #5c4a3d;
  }

  .collection-description-content .rte h2,
  .collection-description-content .rte h3 {
    font-family: 'Petrona', serif;
    font-style: italic;
    color: #3d3128;
    margin-bottom: 20px;
  }

  .collection-description-content .rte h2 {
    font-size: 32px;
    font-weight: 400;
  }

  .collection-description-content .rte h3 {
    font-size: 24px;
    font-weight: 400;
  }

  .collection-description-content .rte p {
    margin-bottom: 15px;
  }

  .collection-description-content .rte ul,
  .collection-description-content .rte ol {
    margin: 20px 0;
    padding-left: 30px;
  }

  .collection-description-content .rte li {
    margin-bottom: 10px;
    line-height: 1.7;
  }

  .collection-description-content .rte a {
    color: #d4a574;
    text-decoration: underline;
  }

  .collection-description-content .rte a:hover {
    color: #3d3128;
  }

  /* Style multicolonne dans la description */
  .collection-description-content .rte .columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 30px 0;
  }

.collection-description-content .rte .column {
  background: #f5ede4;  /* ✅ Fond beige comme la section multicolonne */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(61, 49, 40, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-description-content .rte .column:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(61, 49, 40, 0.12);
}

  .collection-description-content .rte .column h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
  }

  .collection-description-content .rte .column p {
    margin-bottom: 0;
  }

  /* Lead paragraph style */
  .collection-description-content .rte .lead {
    font-size: 18px;
    font-weight: 400;
    color: #5c4a3d;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .collection-description-content .rte .collection-intro {
    margin-bottom: 40px;
    text-align: center;
  }

  @media screen and (max-width: 749px) {
    .collection-description-content .rte h2 {
      font-size: 24px;
    }

    .collection-description-content .rte h3 {
      font-size: 20px;
    }

    .collection-description-content .rte {
      font-size: 14px;
    }

    .collection-description-content .rte .lead {
      font-size: 16px;
    }

    .collection-description-content .rte .columns {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .collection-description-content .rte .column {
      padding: 20px;
    }
  }
.product-full-description-section {
    background: #faf7f2;
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .product-full-description-section .page-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  @media screen and (max-width: 749px) {
    .product-full-description-section {
      padding-top: calc({{ section.settings.padding_top }}px * 0.7);
      padding-bottom: calc({{ section.settings.padding_bottom }}px * 0.7);
    }
  }