.product-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #2a3a5d;
  border-radius: 16px;
  background: #07101f;
  box-shadow: 0 35px 100px #0009, 0 0 0 1px #17c9dd12 inset;
  transform: perspective(1200px) rotateY(-1.5deg);
}

.product-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 45px #07101f42;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.product-shot figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  padding: 5px 9px;
  border: 1px solid #334667;
  border-radius: 7px;
  background: #07101fd9;
  color: #a9b8d2;
  font-size: 10px;
  backdrop-filter: blur(8px);
}

@media (max-width: 900px) {
  .product-shot { transform: none; }
}

@media (max-width: 600px) {
  .product-shot { border-radius: 10px; }
  .product-shot figcaption { display: none; }
}
