.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  border-radius: var(--r-pill);
  padding: 13px 26px;
  transition: transform 0.12s ease, background 0.16s ease, opacity 0.16s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.97);
}

.btn--green {
  background: var(--c-green);
  color: var(--c-white);
  box-shadow: 0 6px 16px rgba(0, 120, 45, 0.4);
}

.btn--green:hover {
  background: var(--c-green-bright);
}

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn--block {
  display: flex;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--c-white);
  background: var(--c-green);
  padding: 7px 12px;
  border-radius: var(--r-pill);
  box-shadow: 0 3px 10px rgba(0, 100, 40, 0.4);
}

.input-pill {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--r-pill);
  outline: none;
  transition: border-color 0.16s ease, background 0.16s ease;
}

.input-pill::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.input-pill:focus {
  border-color: var(--c-white);
  background: rgba(255, 255, 255, 0.16);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--c-white);
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
}

.icon-btn svg {
  width: 26px;
  height: 26px;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--c-white);
  background: rgba(20, 14, 45, 0.4);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  backdrop-filter: blur(2px);
  transition: background 0.16s ease;
}

.nav-arrow:hover {
  background: rgba(20, 14, 45, 0.7);
}

.nav-arrow--prev {
  left: 8px;
}

.nav-arrow--next {
  right: 8px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.18s ease, transform 0.18s ease;
}

.dot.is-active {
  background: var(--c-white);
  transform: scale(1.15);
}

.product-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.product-card__media {
  position: relative;
  border-radius: var(--r-img);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--c-purple-soft);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.product-card__add {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--c-white);
  background: var(--c-green);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 110, 42, 0.5);
  transition: transform 0.12s ease, background 0.16s ease;
}

.product-card__add:hover {
  background: var(--c-green-bright);
}

.product-card__add:active {
  transform: translateX(-50%) scale(0.92);
}

.product-card__add svg {
  width: 22px;
  height: 22px;
}

.product-card__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  margin-top: 16px;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.price-sale {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-green-bright);
}

.price-old {
  font-size: 14px;
  color: var(--c-price-old);
  text-decoration: line-through;
}

.product-card__installments {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-muted);
  margin-top: 4px;
}

.carousel {
  position: relative;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
}

.shelf {
  padding-block: 34px;
  overflow: hidden;
}

.shelf__head {
  padding-inline: var(--pad);
}

.shelf .carousel {
  margin-top: 6px;
}

.shelf .carousel__slide {
  flex: 0 0 82%;
  scroll-snap-align: center;
  padding-inline: 8px;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--r-pill);
  padding: 5px;
}

.qty-stepper__btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  background: var(--c-green);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  transition: background 0.16s ease, transform 0.12s ease;
}

.qty-stepper__btn:hover {
  background: var(--c-green-bright);
}

.qty-stepper__btn:active {
  transform: scale(0.92);
}

.qty-stepper__value {
  min-width: 46px;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
}

.breadcrumb {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.breadcrumb a {
  opacity: 0.85;
}

.breadcrumb__sep {
  margin-inline: 8px;
  opacity: 0.55;
}
