/** Shopify CDN: Minification failed

Line 22:10 Expected identifier but found whitespace
Line 22:12 Unexpected "{"
Line 22:21 Expected ":"
Line 22:48 Unexpected "1rem"
Line 22:54 Unexpected "{"
Line 22:63 Expected ":"
Line 22:92 Expected ":"
Line 23:19 Expected identifier but found whitespace
Line 23:21 Unexpected "{"
Line 23:30 Expected ":"
... and 30 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-icons (INDEX:11) */
.collection-icons-section {
  padding: {{ section.settings.padding_top }}px 1rem {{ section.settings.padding_bottom }}px;
  background-color: {{ section.settings.background_color }};
}

.collection-icons-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: {{ section.settings.gap }}px;
  max-width: 1200px;
  margin: 0 auto;
}

.collection-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  width: {{ section.settings.icon_size | plus: 20 }}px;
}

.collection-icon-circle {
  width: {{ section.settings.icon_size }}px;
  height: {{ section.settings.icon_size }}px;
  border-radius: 50%;
  background-color: {{ section.settings.circle_color }};
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.collection-icon-circle:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.collection-icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-icon-placeholder {
  font-size: 2rem;
  font-weight: bold;
  color: {{ section.settings.label_color }};
  text-transform: uppercase;
}

.collection-icon-label {
  font-size: {{ section.settings.label_size }}px;
  font-weight: 700;
  color: {{ section.settings.label_color }} !important;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (max-width: 600px) {
  .collection-icons-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 12px;
  }

  .collection-icon-item {
    width: 100%;
  }

  .collection-icon-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto;
  }
}
/* END_SECTION:collection-icons */