.product.has-product-photo {
  min-height: 375px;
  overflow: hidden;
  position: relative;
}

.product-photo-wrap {
  position: relative;
  display: block;
  width: calc(100% + 24px);
  aspect-ratio: 1.24 / 1;
  margin: -12px -12px 20px;
  border-radius: 11px;
  overflow: hidden;
  background: #faf8f3;
  box-shadow: 0 8px 24px #24362b0d;
}

.product-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-badges {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  max-width: calc(100% - 20px);
  pointer-events: none;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 10px;
  border: 1px solid #ffffffa8;
  border-radius: 999px;
  box-shadow: 0 5px 18px #172c201c;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .25px;
}

.product-badge--sweet {
  color: #243128;
  background: #fffdf4dc;
}

.product-badge--hit {
  color: #fff;
  background: #214635eb;
  border-color: #476f5ce0;
}

@media (max-width: 650px) {
  .product.has-product-photo { min-height: 330px; }
  .product-photo-wrap {
    width: calc(100% + 14px);
    margin: -13px -7px 16px;
    border-radius: 9px;
  }
  .product-badges {
    right: 7px;
    bottom: 7px;
    gap: 5px;
    max-width: calc(100% - 14px);
  }
  .product-badge {
    min-height: 24px;
    padding: 4px 8px;
    font-size: 9px;
  }
}

@media (max-width: 350px) {
  .product.has-product-photo { min-height: 360px; }
}
