.fa-fps1-band {
  background: #ffffff;
  border-top: 1px solid rgba(229, 231, 235, 1);
  border-bottom: 1px solid rgba(229, 231, 235, 1);
}

.fa-fps1-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.fa-fps1-track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 1900ms cubic-bezier(.22, 1.16, .30, 1);
}

.fa-fps1-item {
  flex: 0 0 100%;
  width: 100%;
}

.fa-fps1-stage {
  width: 100%;
}

.fa-fps1-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
  gap: 2.5rem;
  width: 100%;
  min-height: 25rem;
  align-items: center;
}

.fa-fps1-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fa-fps1-copy-inner {
  min-width: 0;
  padding-bottom: 8.75rem;
}

.fa-fps1-right {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fa-fps1-image-shell {
  position: relative;
  width: 100%;
  height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
  background: #ffffff;
  border: 0;
  box-shadow: none;
}

.fa-fps1-image-shell img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.fa-fps1-kicker {
  letter-spacing: 0.22em;
}

.fa-fps1-lock {
  animation: fa-fps1-lock 760ms cubic-bezier(.22, 1.18, .32, 1) both;
}

@keyframes fa-fps1-lock {
  0% {
    opacity: 0.88;
    transform: translate3d(28px, 0, 0) scale(0.985);
  }
  55% {
    opacity: 1;
    transform: translate3d(-8px, 0, 0) scale(1.01);
  }
  78% {
    transform: translate3d(4px, 0, 0) scale(0.998);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.fa-fps1-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  z-index: 20;
  pointer-events: none;
}

.fa-fps1-overlay-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  pointer-events: auto;
}

.fa-fps1-price-box {
  display: inline-flex;
  align-items: center;
  min-height: 4.4rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(216, 180, 254, 0.78);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

.fa-fps1-price-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(107 114 128);
}

.fa-fps1-price-value {
  margin-top: 0.2rem;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 800;
  color: rgb(17 24 39);
  white-space: nowrap;
}

.fa-fps1-price-was {
  margin-top: 0.45rem;
  font-size: 1.4rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgb(239 68 68);
}

.fa-fps1-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.fa-fps1-nav {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
}

.fa-fps1-nav:hover {
  border-color: rgba(168, 85, 247, 0.40);
}

.fa-fps1-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(203, 213, 225, 0.7);
  transition: transform 180ms ease-out, background 180ms ease-out, box-shadow 180ms ease-out;
}

.fa-fps1-dot.is-active {
  background: rgba(168, 85, 247, 1);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.45);
  transform: scale(1.12);
}

@media (max-width: 1023px) {
  .fa-fps1-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0.85rem;
    align-items: start;
  }

  .fa-fps1-copy {
    justify-content: flex-start;
  }

  .fa-fps1-copy-inner {
    padding-bottom: 1rem;
  }

  .fa-fps1-right {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .fa-fps1-image-shell {
    height: auto;
    min-height: 14rem;
    padding: 0;
    align-items: flex-start;
    justify-content: center;
  }

  .fa-fps1-image-shell img {
    max-height: 14rem;
  }

  .fa-fps1-overlay {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0.75rem;
  }

  .fa-fps1-price-box {
    min-height: 3.9rem;
    padding: 0.75rem 0.95rem;
  }

  .fa-fps1-price-value {
    font-size: 1.55rem;
  }

  .fa-fps1-price-was {
    font-size: 1rem;
    line-height: 1.1;
  }

  .fa-fps1-overlay-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .fa-fps1-controls {
    width: 100%;
    row-gap: 0.9rem;
    column-gap: 0.75rem;
    padding-bottom: 0.45rem;
  }

  .fa-fps1-controls .fa-btn {
    flex: 0 0 auto;
  }
}