/** Shopify CDN: Minification failed

Line 16:18 Unexpected "{"
Line 16:27 Expected ":"
Line 16:34 Unexpected "{"
Line 18:23 Expected identifier but found whitespace
Line 18:25 Unexpected "{"
Line 18:34 Expected ":"
Line 33:12 Expected identifier but found whitespace
Line 33:14 Unexpected "{"
Line 33:23 Expected ":"
Line 54:12 Expected identifier but found whitespace
... and 11 more hidden warnings

**/
 #shop-by-images-{{ section.id }} {
      padding: 40px 0;
      background-color: {{ section.settings.background_color }};
    } 
    .shop-by-images-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .full-width-container .shop-by-images-inner {
      max-width: 100%;
    }
    .shop-by-images-title {
      text-align: center;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 20px;
      color: {{ section.settings.title_color }};
      text-transform: uppercase;
      letter-spacing: 1px;
    }


    .shop-by-images-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }
    .shop-by-images-arrow {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: {{ section.settings.arrow_color }};
      transition: color 0.2s ease-in-out;
    }
    .shop-by-images-arrow:hover {
      color: {{ section.settings.arrow_hover_color }};
    }
    .shop-by-images-arrow--prev {
      margin-right: 10px;
    }
    .shop-by-images-arrow--next {
      margin-left: 10px;
    }

    .shop-by-images-list {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
    }
    .shop-by-images-list::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }

    .shop-by-images-item {
      flex: 0 0 auto;
      text-align: center;
      margin-right: 20px;
      max-width: 150px;
    }
    .shop-by-images-image-wrapper {
      width: 150px;
      height: 150px;
      border-radius: 8px;
      overflow: hidden;
      background-color: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      margin: 0 auto 8px;
    }
.shop-by-images-section.image-shape_rounded .shop-by-images-image-wrapper{
  border-radius: 50%;
  margin: 0 auto;
}
.shop-by-images-section.image-shape_rounded .shop-by-images-text {
    background: #f1f1f1;
    padding: 8px;
    border-radius: 50px;
    font-size: 14px;
    color: {{ section.settings.text_color}};
    line-height: 1.2;
    margin-top: -15px;
    position: relative;
    z-index: 9;
}
    .shop-by-images-image {
      /* max-width: 100%; */
      max-height: 100%;
      object-fit: cover;
    }
    .shop-by-images-text {
      font-size: 14px;
      color: {{ section.settings.text_color }};
      line-height: 1.2;
    }