/* Radio button — custom styled */
.payment-method__input {
  appearance: none;
  -webkit-appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 7px solid #181818;
  border-radius: 50%;
  background: #fff;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
/* Quantity pill — full pill shape at all screen sizes */
.option__quantity {
  border-radius: 100px;
}

/* === Hero Swiper — Mobile Only === */
.hero-swiper {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-swiper__track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.hero-swiper__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}

.hero-swiper__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-swiper__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(80, 80, 80, 0.72);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0;
  transition: opacity 0.2s;
}

.hero-swiper__btn--prev {
  left: 12px;
}

.hero-swiper__btn--next {
  right: 12px;
}

.hero-swiper__btn:disabled {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero-swiper {
    display: block;
  }

  .hero__desktop-image {
    display: none;
  }
}
