/* Lookbook Grid */
.styled-looks-lookbook__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

@media (min-width: 900px) {
  .styled-looks-lookbook__grid {
    gap: 20px;
  }
}


.styled-looks-lookbook__image-wrap,
.styled-looks-product__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3; /* keeps all tiles 2:3 */
}

/* Images fill the box and crop nicely, no distortion */
.styled-looks-lookbook__image,
.styled-looks-product__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* Hotspot (+) button */
.styled-looks-lookbook__hotspot,
.styled-looks-product__hotspot {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.85;
}

/* Drawer */
.styled-look-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}

.styled-look-drawer[aria-hidden="false"] {
  display: block;
}

.styled-look-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.styled-look-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: #fff;
  overflow-y: auto;
  padding: 20px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.08);
}

.styled-look-drawer__close {
  font-size: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
}

.styled-looks__product-card + .styled-looks__product-card {
  margin-top: 12px;
}
