.product-gallery-section {
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(9, 18, 32, .84);
  color: #f4f8ff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.product-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.product-gallery-kicker {
  margin: 0 0 10px;
  color: #4ed6ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-gallery-title {
  margin: 0;
  color: #f4f8ff;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: 0;
}

.product-gallery-lead {
  max-width: 720px;
  margin: 10px 0 0;
  color: #a9b8ca;
  line-height: 1.8;
}

.product-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-gallery-tab {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #d7e6f7;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.product-gallery-tab.is-active {
  border-color: rgba(78, 214, 255, .55);
  background: rgba(78, 214, 255, .16);
  color: #ffffff;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-shot-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
  text-decoration: none;
  color: inherit;
}

.product-shot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #07111f;
}

.product-shot-body {
  padding: 14px;
}

.product-shot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.product-shot-product {
  color: #4ed6ff;
  font-size: 12px;
  font-weight: 900;
}

.product-shot-title {
  color: #f4f8ff;
  font-size: 16px;
  font-weight: 900;
}

.product-shot-desc {
  margin: 8px 0 0;
  color: #a9b8ca;
  font-size: 13px;
  line-height: 1.65;
}

.product-gallery-empty {
  padding: 20px;
  color: #a9b8ca;
  border: 1px dashed rgba(255, 255, 255, .16);
  border-radius: 14px;
}

@media (max-width: 980px) {
  .product-gallery-head {
    align-items: stretch;
    flex-direction: column;
  }

  .product-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-gallery-section {
    padding: 18px;
  }

  .product-gallery-grid {
    grid-template-columns: 1fr;
  }
}
