/** Shopify CDN: Minification failed

Line 19:0 Unexpected "<"
Line 26:6 Expected identifier but found whitespace
Line 26:8 Unexpected "{"
Line 26:17 Expected ":"
Line 26:40 Expected ":"
Line 51:8 Expected identifier but found whitespace
Line 51:10 Unexpected "{"
Line 51:19 Expected ":"
Line 52:19 Expected identifier but found whitespace
Line 52:21 Unexpected "{"
... and 10 more hidden warnings

**/


/* CSS from section stylesheet tags */
<style>
.custom-category-grid-section {
  padding: 20px;
}
.custom-category-grid-section .category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: {{ section.settings.grid_gap }}px;
}
.custom-category-grid-section .category-item {
  position: relative;
  overflow: hidden;
}
.custom-category-grid-section .category-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.custom-category-grid-section .category-item:hover img {
  transform: scale(1.03);
}
.custom-category-grid-section .category-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 6px 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  transition: 0.3s ease;
  color: {{ section.settings.text_color }};
  background-color: {{ section.settings.text_background }};
}

/* Responsive layout for mobile */
@media screen and (max-width: 749px) {
  .custom-category-grid-section .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .custom-category-grid-section .category-text {
    font-size: {{ section.settings.font_size_mobile }}px;
  }
}
@media screen and (min-width: 750px) {
  .custom-category-grid-section .category-text {
    font-size: {{ section.settings.font_size_desktop }}px;
  }
}
</style>