/** Shopify CDN: Minification failed

Line 36:9 Expected identifier but found whitespace
Line 36:11 Unexpected "{"
Line 36:20 Expected ":"
Line 36:49 Expected ":"
Line 41:9 Expected identifier but found whitespace
Line 41:11 Unexpected "{"
Line 41:20 Expected ":"
Line 41:62 Expected ":"
Line 110:11 Expected identifier but found whitespace
Line 110:13 Unexpected "{"
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
.collections-mosaic {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.mosaic-row {
  display: flex;
  width: 100%;
}

.top-row .mosaic-item {
  flex: 1;
  height: {{ section.settings.desktop_height }}px;
}

.bottom-row .mosaic-item {
  flex: 1;
  height: {{ section.settings.desktop_height | times: 1.5 }}px;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
}

.mosaic-image {
  width: 100%;
  height: 100%;
}

.mosaic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.center-images .mosaic-image img {
  object-position: center;
}

.mosaic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.mosaic-overlay h3 {
  margin: 0 0 10px 0;
  font-size: 1.5em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.shop-now-btn {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.shop-now-btn:hover {
  background-color: #f0f0f0;
}

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

@media screen and (max-width: 768px) {
  .mosaic-row {
    flex-direction: column;
  }
  
  .top-row .mosaic-item,
  .bottom-row .mosaic-item {
    height: {{ section.settings.mobile_height }}px;
  }

  .mosaic-overlay h3 {
    font-size: 1.2em;
  }

  .shop-now-btn {
    padding: 8px 16px;
    font-size: 0.9em;
  }
}