.product-gallery--commerce {
  --cl-accent: #21e6b5;
}

.product-gallery-dialog {
  margin: 0;
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  border: 0;
  color: white;
}

.product-gallery-dialog::backdrop {
  background: #000e;
}

.product-gallery--commerce {
  padding: 16px 16px 0;
}

.product-gallery--commerce .product-gallery-main {
  /* height:310px!important; */
}

.product-gallery--commerce>button {
  /* aspect-ratio:auto!important; */
}

.cl-formula-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(80px, 32%);
  align-items: center;
  gap: 16px;
  padding: clamp(18px, 2vw, 30px);
}

.cl-formula-card__copy {
  min-width: 0;
}

.cl-formula-card__image {
  width: 100%;
  height: 100%;
  /* max-height: 230px; */
  object-fit: cover;
  border-radius: 14px;
}

.cl-formula-card .cl-card__number {
  margin-bottom: 24px;
}

.cl-formula-card .cl-actions {
  margin-top: 24px;
}

.cl-formula-card .cl-button {
  padding: 12px 16px;
  font-size: .85rem;
}

.cl-film-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
}

.cl-film {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid #ffffff25;
  background: #000;
  max-width: 560px;
  width: 100%;
  justify-self: center;
}

.cl-film video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

@media(max-width:760px) {
  .cl-film-layout {
    grid-template-columns: 1fr;
  }

  .cl-film {
    max-width: 480px;
  }

  .cl-formula-card {
    grid-template-columns: minmax(0, 1fr) minmax(85px, 30%);
  }
}