/** Shopify CDN: Minification failed

Line 348:24 Expected identifier but found whitespace
Line 348:26 Unexpected "{"
Line 348:35 Expected ":"
Line 348:61 Expected ":"
Line 349:27 Expected identifier but found whitespace
Line 349:29 Unexpected "{"
Line 349:38 Expected ":"
Line 349:67 Expected ":"
Line 350:29 Expected identifier but found whitespace
Line 350:31 Unexpected "{"
... and 7 more hidden warnings

**/
.fabric-comparison-section {
  padding: var(--section-padding-top, 60px) 0 var(--section-padding-bottom, 60px);
  background-color: #F5F5F5;
  color: var(--section-text-color, #000000);
  font-family: 'ProximaNova Regular';
}

.fabric-comparison-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.fabric-comparison-content {
  width: 100%;
}

.fabric-comparison-title {
  text-align: center;
  margin-bottom: 20px;
}

.fabric-comparison-heading {
  font-size: 30px;
  line-height: normal;
  font-family: 'ProximaNova Regular';
  margin: 0;
  color: inherit;
}

.fabric-comparison-grid {
  display: grid;
  grid-template-columns: 8% 23% 23% 23% 23%;
  gap: 10px;
  width: 100%;
  margin-bottom: 10px;
}

.compare-title-cell {
  background-color: #D9D9D9;
  padding: 20px 15px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  position: sticky;
  left: 0;
  z-index: 10;
}

.compare-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 10px 0;
  text-align: left;
  color: inherit;
}

.product-cell {
  padding: 20px 15px 0 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  justify-content: center;
}

.product-cell:last-child {
  border-right: none;
}

.product-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 15px 0;
  letter-spacing: 0;
  color: inherit;
  text-align: center;
}

.fabric-comparison-grid.three-products {
  grid-template-columns: 8% 30.67% 30.67% 30.67%;
}

.product-image {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.product-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-image img:hover {
  transform: scale(1.05);
}

.product-image-link {
  display: block;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-image-link:hover {
  text-decoration: none;
}

.product-image-link img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-image-link:hover img {
  transform: scale(1.05);
  cursor: pointer;
}

.text-cell {
  padding: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.text-cell:nth-of-type(odd) {
  background-color: #D9D9D9;
}

.text-cell:last-child {
  border-right: none;
}

.information-text {
  font-size: 1.4rem;
  line-height: normal;
  margin: 0;
  color: inherit;
  text-align: center;
}

.title-mobile {
  display: none;
}

@media screen and (max-width: 990px) {
  .fabric-comparison-container {
    overflow-x: auto;
    padding: 10px 0;
  }

  .title-mobile {
    display: block;
  }

  .title-desktop {
    display: none;
  }
  
  .fabric-comparison-content {
    min-width: 800px;
  }
  
  .fabric-comparison-grid {
    grid-template-columns: 8% 23% 23% 23% 23%;
    gap: 10px;
    min-width: 800px;
  }
  
  .fabric-comparison-heading {
    font-size: 2.4rem;
  }
  
  .product-title {
    font-size: 1.4rem;
  }
  
  .information-text {
    font-size: 1.2rem;
  }

  .fabric-comparison-section {
    padding: 20px;
  }
}

@media screen and (max-width: 750px) {
  .title-mobile {
    display: block;
  }

  .title-desktop {
    display: none;
  }

  .fabric-comparison-container {
    overflow-x: auto;
    padding: 0;
  }
  
  .fabric-comparison-content {
    min-width: 700px;
  }
  
  .fabric-comparison-title {
    margin-bottom: 20px;
    padding: 0 20px;
  }
  
  .fabric-comparison-heading {
    font-size: 2rem;
  }
  
  .fabric-comparison-grid {
    grid-template-columns: 14% 22% 22% 22% 22%;
    gap: 8px;
    min-width: 600px;
  }
  
   .compare-title-cell {
     padding: 6px;
     position: sticky;
     left: 0;
     z-index: 10;
   }
  
  .compare-title {
    font-size: 1.2rem;
  }
  
  .product-cell,
  .text-cell {
    padding: 12px 8px;
  }
  
  .product-cell {
    padding-bottom: 0;
  }
  
  .product-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  
  .information-text {
    font-size: 1.1rem;
  }

  .fabric-comparison-section {
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .title-mobile {
    display: block;
  }

  .title-desktop {
    display: none;
  }

  .fabric-comparison-section {
    padding: 20px;
  }
  
  .fabric-comparison-container {
    overflow-x: auto;
    padding: 0;
  }
  
  .fabric-comparison-content {
    min-width: 600px;
  }
  
  .fabric-comparison-title {
    margin-bottom: 20px;
    padding: 0 15px;
  }
  
  .fabric-comparison-heading {
    font-size: 1.8rem;
  }
  
  .fabric-comparison-grid {
    grid-template-columns: 14% 20% 20% 20% 20%;
    gap: 6px; 
    margin-bottom: 4px;
  }
  
   .compare-title-cell {
     padding: 8px;
     position: sticky;
     align-items: center;
     left: 0;
     z-index: 10;
   }
  
  .compare-title {
    font-size: 1rem;
    margin: 0;
    text-align: center;
  }
  
  .product-cell,
  .text-cell {
    padding: 8px 6px;
  }
  
  .product-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  
  .information-text {
    font-size: 1rem;
  }
}

.fabric-comparison-section {
  --section-padding-top: {{ section.settings.padding_top }}px;
  --section-padding-bottom: {{ section.settings.padding_bottom }}px;
  --section-background-color: {{ section.settings.background_color }};
  --section-text-color: {{ section.settings.text_color }};
  --separator-color: {{ section.settings.separator_color }};
}
