/* Starting page product carousel.
   Replaces starting-hard-v8.css, which hid the Vue carousel so an injected
   vanilla-JS one (ea-hard-v5.js) could take its place. Vue now owns this DOM. */

/* Swiper markup is no longer rendered, but the original build's classes may
   still appear in cached chunks. */
.starting .swiper,
.starting .swiper-scrollbar,
.starting .swiper-pagination {
  display: none !important;
}

.starting .ea-carousel {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 400px;
  overflow: hidden;
  padding-bottom: 8px;
}

.starting .ea-slide {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  opacity: 0.45;
  transform: scale(0.66);
  transform-origin: center bottom;
}

/* 30 + 40 + 30 keeps the three slides inside the column with no clipping */
.starting .ea-slide.is-active {
  flex-basis: 40%;
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  animation: ea-slide-in 0.45s ease;
}

@keyframes ea-slide-in {
  from {
    opacity: 0.4;
    transform: scale(0.82);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Products read as floating objects, not cards: drop the panel chrome that the
   Vue template inherits from the original task-card markup. */
.starting .ea-slide .current {
  margin: 0 !important;
}

.starting .ea-slide .img-box {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.starting .ea-pic {
  display: block;
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.starting .ea-slide.is-active .ea-pic {
  width: 200px;
  height: 200px;
}

.starting .ea-meta {
  display: none;
}

.starting .ea-slide.is-active .ea-meta {
  display: block;
  max-width: 220px;
  margin-top: 10px;
  text-align: center;
}

.starting .bg-\[\#0A0A0B\] {
  margin-top: 0 !important;
  padding-top: 10px !important;
  padding-bottom: 16px !important;
}
