/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 108:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
/* ===== Full-width Wrapper ===== */
.diamond-layout-wrapper {
  position: relative;
  width: 100%;
  max-width: 1600px;
  height: 1000px;
  margin: 100px auto;
}

/* ===== Diamond Shape ===== */
.diamond {
  position: absolute;
  transform: rotate(45deg);
  overflow: hidden;
}
.diamond a {
  position: absolute;
  inset: 0;
  display: block;
}
.diamond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}
.diamond:hover img {
  transform: scale(1.1) rotate(-45deg);
}

/* ===== Visually Distinct Sizes ===== */
.d-small {
  width: 200px;
  height: 200px;
  z-index: 2;
}
.d-large {
  width: 340px;
  height: 340px;
  z-index: 3;
}

/* ===== Recalculated Spacing ===== */
.d1 { top: 0px;     left: 360px; }
.d2 { top: 0px;     left: 600px; }
.d3 { top: 0px;     left: 840px; }

.d4 { top: 280px;   left: 500px; }
.d5 { top: 280px;   left: 740px; }

.d6 { top: 660px;   left: 360px; }
.d7 { top: 660px;   left: 600px; }
.d8 { top: 660px;   left: 840px; }

/* ===== Responsive Scale Down ===== */
@media (max-width: 1400px) {
  .diamond-layout-wrapper {
    transform: scale(0.85);
    transform-origin: top center;
  }
}
@media (max-width: 900px) {
  .diamond-layout-wrapper {
    transform: scale(0.7);
  }
}
@media (max-width: 600px) {
  .diamond-layout-wrapper {
    transform: scale(0.55);
  }
}

/* ===== Fallback for >8 Products ===== */
.extra-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
}
.extra-products a {
  display: block;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 6px;
}
.extra-products img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.extra-products a:hover img {
  transform: scale(1.08);
}
</style>