/* Explore products — horizontal left-to-right scroll */
[data-framer-name="Explore"].dp-carousel-ready > .framer-vbenn4,
[data-framer-name="Explore"].dp-carousel-ready > [data-framer-name="Row 2"] {
  display: none !important;
}

.dp-explore-carousel {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  position: relative;
  margin-top: 8px;
  padding: 4px 0 12px;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.dp-explore-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  animation: dp-explore-scroll-ltr 45s linear infinite;
  will-change: transform;
}

.dp-explore-carousel:hover .dp-explore-track {
  animation-play-state: paused;
}

.dp-explore-track .dp-explore-card {
  flex: 0 0 auto;
  width: 280px;
}

.dp-explore-track .dp-explore-card > * {
  width: 100% !important;
}

.dp-explore-track .dp-explore-card [data-framer-name="Desktop"] {
  width: 100% !important;
  max-height: 300px;
  overflow: hidden;
}

.dp-explore-track .dp-explore-card [data-framer-background-image-wrapper="true"] {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

/* Product photo area — keep vial images compact */
.dp-explore-track .dp-explore-card .framer-emcb88,
.dp-explore-track .dp-explore-card [class*="emcb88"] {
  position: relative;
  height: 130px !important;
  max-height: 130px !important;
  min-height: 0 !important;
  overflow: hidden;
}

.dp-explore-track .dp-explore-card [data-framer-background-image-wrapper="true"] img {
  max-height: 130px;
  width: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.dp-explore-track .dp-explore-card img {
  display: block;
  max-width: 100%;
}

@keyframes dp-explore-scroll-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 743px) {
  .dp-explore-track .dp-explore-card {
    width: 240px;
  }

  .dp-explore-track .dp-explore-card .framer-emcb88,
  .dp-explore-track .dp-explore-card [class*="emcb88"] {
    height: 110px !important;
    max-height: 110px !important;
  }

  .dp-explore-track .dp-explore-card [data-framer-background-image-wrapper="true"] img {
    max-height: 110px;
  }

  .dp-explore-track {
    gap: 16px;
    animation-duration: 35s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dp-explore-track {
    animation: none;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .dp-explore-carousel {
    overflow-x: auto;
    -webkit-mask: none;
    mask: none;
  }

  .dp-explore-track .dp-explore-card {
    scroll-snap-align: start;
  }
}
