.dt-product-gallery {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
}

.dt-product-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dt-product-gallery-thumb {
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 1px solid #ececec;
  border-radius: 16px;
  background: #fff;
}

.dt-product-gallery-thumb.is-active {
  border-color: var(--color-rausch);
  box-shadow: 0 0 0 2px rgba(255, 56, 92, 0.12);
}

.dt-product-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.dt-product-gallery-main {
  overflow: hidden;
  border: 1px solid #ececec;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.dt-product-gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dt-gallery-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  color: var(--color-text-sub);
}

@media (max-width: 900px) {
  .dt-product-gallery {
    grid-template-columns: 1fr;
  }

  .dt-product-gallery-thumbs {
    order: 2;
    flex-direction: row;
  }

  .dt-product-gallery-thumb {
    width: 84px;
    flex: 0 0 84px;
  }
}
