.swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.ss-swiper {
  width: 100%;
  height: 100%;
  z-index: 0 !important;
}

.ss-swiper .swiper-slide {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 440 / 782; /* ≈ 0.56 / 1 (close to 9 / 16) */
}

.video-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.video-placeholder iframe {
  width: 100%;
  height: 100%;
}

#ss-form {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#ss-form label {
  font-size: 14px;
  font-weight: 600;
}

#ss-form input {
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
}

#ss-form select {
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  background: #fff;
  cursor: pointer;
}

.ss-button {
  margin-top: auto;
  background: #ff0000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: .75rem 1.25rem;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  transition: background .2s ease, transform .1s ease;
  line-height: 1.5;
  text-align: center;
  display: inline-flex;
  justify-content: center;
}

.ss-button:hover {
  background: #b91c1c;
  transform: translateY(-1px);
}

.ss-button:focus {
  outline: 2px solid #f87171;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  #ss-form {
    margin-top: 16px;
  }
}