/** Shopify CDN: Minification failed

Line 26:12 Expected identifier but found whitespace
Line 26:14 Unexpected "{"
Line 26:23 Expected ":"
Line 26:71 Expected identifier but found "?"
Line 35:2 Unexpected "{"
Line 35:3 Expected identifier but found "%"
Line 37:2 Unexpected "{"
Line 37:3 Expected identifier but found "%"
Line 54:8 Expected identifier but found whitespace
Line 54:10 Unexpected "{"
... and 6 more hidden warnings

**/


/* CSS from section stylesheet tags */
.collection-grid-wrapper {
 padding: 0 170px 30px 170px;
}
.collection-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: {{ section.settings.full_width | default: false | json }} ? 100% : 1200px;
  margin: 0 auto;
}
.collection-block {
   
  text-align: center;
  transition: transform 0.3s ease;
}
.collection-block:hover {
  {% if section.settings.hover_effect %}
    transform: scale(1.03);
  {% endif %}
}
.collection-title {
    background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;

}
.collection-title img {
  margin-left: 8px;
  height: 44px;
  width: 44px;
}
.collection-image {
  width: {{ section.settings.image_width }}px !important;
  height: {{ section.settings.image_height }}px !important;
  object-fit: cover;
 
}

@media screen and (max-width: 768px) {
  .collection-title {
    font-size: 1em;
  }
  .collection-image {
    width: 100%;
    height: auto;
  }
  .collection-grid-wrapper {
 padding: 20px;
}
}