.feedback-section {
  padding-top: 96px;
  padding-bottom: 110px;
  overflow: hidden;
}

.feedback-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.feedback-head h2 {
  margin: 13px 0 10px;
  color: var(--petrol);
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.08;
  letter-spacing: -2px;
}

.feedback-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.feedback-controls {
  display: flex;
  align-items: center;
  gap: 11px;
  direction: ltr;
}

.feedback-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 42, 49, .16);
  border-radius: 50%;
  background: #fff;
  color: var(--petrol);
  font: 700 21px/1 inherit;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(16, 42, 49, .08);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.feedback-arrow:hover,
.feedback-arrow:focus-visible {
  transform: translateY(-2px);
  background: var(--petrol);
  color: #fff;
  outline: none;
}

.feedback-count {
  min-width: 82px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  color: #7c898f;
  font-size: 13px;
}

.feedback-count b { color: var(--pink); font-size: 22px; }
.feedback-count i { font-style: normal; opacity: .45; }

.feedback-shell {
  position: relative;
  padding: 28px 0 22px;
  border: 1px solid rgba(16, 42, 49, .12);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 5%, rgba(236, 25, 112, .12), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(232, 239, 241, .92));
  box-shadow: 0 28px 80px rgba(16, 42, 49, .1);
}

.feedback-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px max(28px, calc((100% - 820px) / 2)) 22px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(28px, calc((100% - 820px) / 2));
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.feedback-track::-webkit-scrollbar { display: none; }

.feedback-card {
  flex: 0 0 min(820px, 82vw);
  min-height: 310px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 16px;
  scroll-snap-align: center;
  border: 1px solid rgba(16, 42, 49, .12);
  border-radius: 24px;
  background: #050607;
  box-shadow: 0 18px 44px rgba(16, 42, 49, .14);
}

.feedback-card img {
  width: 100%;
  max-height: 390px;
  display: block;
  object-fit: contain;
  border-radius: 15px;
}

.feedback-footer {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 26px;
}

.feedback-swipe {
  display: none;
  color: #6a777d;
  font-size: 12px;
}

.feedback-swipe b { color: var(--pink); font-size: 17px; }

.feedback-dots {
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  direction: ltr;
}

.feedback-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 42, 49, .18);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.feedback-dot.active {
  width: 22px;
  background: var(--pink);
}

@media (max-width: 700px) {
  .feedback-section { padding-top: 72px; padding-bottom: 86px; }
  .feedback-head { align-items: center; margin-bottom: 25px; }
  .feedback-head h2 { font-size: 38px; letter-spacing: -1.5px; }
  .feedback-head p { font-size: 14px; }
  .feedback-controls { display: none; }
  .feedback-shell { margin-inline: -5px; padding-top: 19px; border-radius: 25px; }
  .feedback-track {
    gap: 13px;
    padding: 5px 18px 18px;
    scroll-padding-inline: 18px;
  }
  .feedback-card {
    flex-basis: 88vw;
    min-height: 245px;
    padding: 10px;
    border-radius: 19px;
  }
  .feedback-card img { max-height: 330px; border-radius: 11px; }
  .feedback-footer { justify-content: space-between; padding-inline: 18px; }
  .feedback-swipe { display: inline-flex; align-items: center; gap: 7px; }
  .feedback-dots { max-width: 170px; gap: 4px; overflow: hidden; }
  .feedback-dot { width: 5px; height: 5px; }
  .feedback-dot.active { width: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .feedback-track { scroll-behavior: auto; }
  .feedback-arrow,
  .feedback-dot { transition: none; }
}
