/** Shopify CDN: Minification failed

Line 76:22 Unexpected "{"
Line 76:31 Expected ":"

**/
.product-materials {
   background-color: #F5F4F0;
   padding: 3.5rem 0;
 }
 @media (min-width: 768px) {
   .product-materials { padding: 5rem 0; }
 }
 .product-materials__container {
   margin: 0 auto;
 }
 @media (min-width: 768px) {
   .product-materials__container { padding: 0 1.5rem; }
 }
 .product-materials__header { text-align: center; margin-bottom: 3rem; }
 .product-materials__eyebrow {
   font-family: 'Montserrat', sans-serif;
   font-size: 0.875rem;
   font-weight: 500;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   color: rgba(10, 10, 10, 0.6);
   margin: 0 0 0.75rem 0;
 }
 .product-materials__title {
   font-family: 'Montserrat', sans-serif;
   font-size: 1.875rem;
   font-weight: 700;
   letter-spacing: -0.025em;
   color: #0A0A0A;
   margin: 0;
 }
 @media (min-width: 768px) {
   .product-materials__title { font-size: 2.25rem; }
 }
 @media (min-width: 1024px) {
   .product-materials__title { font-size: 3rem; }
 }
 .product-materials__grid {
   display: grid;
   grid-template-columns: 1fr;
   gap: 1.5rem;
 }
 @media (min-width: 1024px) {
   .product-materials__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
 }
 .product-materials__card {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
   background-color: #ffffff;
   border: 1px solid rgba(10, 10, 10, 0.1);
   padding: 1.5rem;
 }

  .product-materials__card .image-side {
    flex: 0 0 35%;
  }
  .product-materials__card .image-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .product-materials__card .info-side {
    flex: 0 0 calc(65% - 25px);
  }
  .product-materials__card .product-materials__props {
    flex: 0 0 100%;
  }
  .product-materials-{{ section.id }} .product-materials__prop-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
 @media (min-width: 768px) {
   .product-materials__card { padding: 2rem; }
 }
 @media (max-width: 639px) {
   .product-materials__card .image-side,
   .product-materials__card .info-side {
     flex: 0 0 100%;
   }
 }
 .product-materials__card-title {
   font-family: 'Montserrat', sans-serif;
   font-size: 1.25rem;
   font-weight: 700;
   color: #0A0A0A;
   margin: 0 0 0.75rem 0;
 }
 .product-materials__card-desc {
   font-family: 'Montserrat', sans-serif;
   font-size: 0.875rem;
   line-height: 1.6;
   color: rgba(10, 10, 10, 0.6);
   margin: 0 0 1.5rem 0;
 }
 .product-materials__props { 
   display: grid; 
   grid-template-columns: repeat(3, 1fr); 
   gap: 1rem; 
 }
 .product-materials__prop { text-align: center; }
 .product-materials__prop-icon {
   width: 3rem;
   height: 3rem;
   margin: 0 auto 0.5rem;
   background-color: #F5F4F0;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
 }
 .product-materials__prop-icon svg { width: 1.5rem; height: 1.5rem; }
 .product-materials__prop-label {
   font-family: 'Montserrat', sans-serif;
   font-size: 0.6875rem;
   color: rgba(10, 10, 10, 0.5);
   margin: 0 0 0.25rem 0;
 }
 .product-materials__prop-value {
   font-family: 'Montserrat', sans-serif;
   font-size: 0.8125rem;
   font-weight: 600;
   color: #0A0A0A;
   margin: 0;
 }
 .product-materials__note {
   font-family: 'Montserrat', sans-serif;
   font-size: 0.875rem;
   color: rgba(10, 10, 10, 0.6);
   text-align: center;
   max-width: 40rem;
   margin: 2rem auto 0 !important;
 }