/* Product slider — purple/blue theme */
.dsc-products-section {
  background: linear-gradient(135deg, #f8f4fc 0%, #eef6fc 100%);
  padding: 3.25rem 1rem 3.5rem;
  border-bottom: 1px solid rgba(89, 44, 148, 0.08);
}

.dsc-products-inner {
  max-width: 960px;
  margin: 0 auto;
}

.dsc-products-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #592c94;
}

.dsc-products-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #2d2d2d;
}

.dsc-products-title span {
  color: #592c94;
}

.dsc-products-sub {
  margin: 0 0 1.75rem;
  color: #555;
  font-size: 1.05rem;
  max-width: 36rem;
}

.dsc-products-sub a {
  color: #592c94;
  font-weight: 600;
}

.dsc-prod-viewport {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(83, 0, 122, 0.12);
  background: linear-gradient(60deg, #53007a 0%, #6ebbe7 100%);
}

.dsc-prod-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.dsc-prod-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2rem 2.25rem;
  color: #fff;
  min-height: 220px;
}

.dsc-prod-slide__icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.dsc-prod-slide__body {
  flex: 1;
  min-width: 0;
}

.dsc-prod-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.dsc-prod-badge--soon {
  background: rgba(255, 193, 7, 0.95);
  color: #3d2e00;
}

.dsc-prod-badge--live {
  background: rgba(40, 167, 69, 0.95);
  color: #fff;
}

.dsc-prod-badge--free {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.dsc-prod-slide__title {
  margin: 0 0 0.4rem;
  font-size: 1.65rem;
  font-weight: 700;
}

.dsc-prod-slide__tagline {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.95;
  max-width: 36rem;
}

.dsc-prod-slide__cta {
  display: inline-block;
  background: #fff;
  color: #53007a !important;
  font-weight: 700;
  padding: 0.55rem 1.15rem;
  border-radius: 8px;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dsc-prod-slide__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #53007a !important;
}

.dsc-prod-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dsc-prod-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(89, 44, 148, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dsc-prod-dot.is-active {
  background: #592c94;
  transform: scale(1.15);
}

@media (max-width: 640px) {
  .dsc-prod-slide {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem 1.75rem;
    min-height: 0;
  }

  .dsc-prod-slide__icon {
    width: 56px;
    height: 56px;
    font-size: 1.35rem;
  }
}
