/* ГЛОБАЛЬНЫЕ СБРОСЫ */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overscroll-behavior: none;
  background-color: #f4f7f6;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  color: #333;
  display: block;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Анимация появления контента из video.js */
.fade-in-content {
  animation: fadeInOrder 1.5s ease-in-out forwards;
}

@keyframes fadeInOrder {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Хедер и строка */
.header {
  background-color: #ffffff;
  text-align: center;
  padding: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  max-width: 150px;
  height: auto;
}

.ticker-wrap {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  display: flex;
}

.ticker-text {
  display: inline-block;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
  flex-shrink: 0;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Контейнер и Заголовок */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  /* padding: 20px 15px; */
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1400px;
}

.main-title {
  text-align: center;
  font-size: 26px;
  color: #222;
  margin: 15px 0 25px;
  line-height: 1.3;
}

.video-wrapper {
  margin-bottom: 35px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  width: 100%;
}

/* Форма заказа */
.form-container {
  display: flex;
  flex-direction: row;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #eaeaea;
  margin-bottom: 40px;
  width: 100%;
  overflow: hidden;
}

.form-left,
.form-right {
  width: 50%;
  flex: 0 0 50%;
}

.form-left {
  background: #fdfdfd;
  padding: 30px;
  text-align: center;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-right {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timer-block {
  margin-bottom: 15px;
}

.timer-block span {
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  font-weight: bold;
}

.countdown-timer {
  font-size: 30px;
  font-weight: 900;
  color: #d92525;
  background: #ffeeee;
  padding: 5px 15px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 5px;
}

.product-image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  max-height: 180px;
  object-fit: contain;
}

.price-block {
  line-height: 1.2;
}

.discount-badge {
  background: #d92525;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.old-price {
  font-size: 16px;
  color: #888;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.new-price {
  font-size: 32px;
  font-weight: 900;
  color: #0044cc;
}

.form-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #333;
  font-weight: bold;
}

.input-group {
  margin-bottom: 15px;
  width: 100%;
}

.input-group input {
  width: 100%;
  padding: 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
  margin: 0px;
}

.input-group input:focus {
  border-color: #ff7b00;
  box-shadow: 0 0 6px rgba(255, 123, 0, 0.2);
}

.submit-btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #ff9100 0%, #ff6200 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 98, 0, 0.35);
  margin-top: 5px;
}

.pulse-btn {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 98, 0, 0.7);
  }

  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 12px rgba(255, 98, 0, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 98, 0, 0);
  }
}

.security-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 15px;
  color: #666;
  font-size: 12px;
  text-align: center;
}

.security-notice svg {
  width: 14px;
  height: 14px;
  color: #2ea043;
  flex-shrink: 0;
}

/* СЕКЦИЯ О ПРОДУКТЕ (Карусель 1) */
.product-info-section {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  width: 100%;
}

.info-title {
  text-align: center;
  font-size: 24px;
  color: #0044cc;
  margin-bottom: 15px;
  line-height: 1.3;
}

.info-subtitle {
  text-align: left;
  font-size: 18px;
  color: #333;
  font-weight: bold;
  margin-bottom: 25px;
  border-left: 4px solid #ff7b00;
  padding-left: 10px;
}

.benefits-list {
  list-style: none;
  margin-bottom: 40px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  background: #fdfdfd;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}

.check-icon {
  width: 35px;
  height: 35px;
  background: #2ea043;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.check-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.benefit-text {
  display: flex;
  flex-direction: column;
}

.benefit-text strong {
  font-size: 16px;
  color: #222;
}

.benefit-text span {
  font-size: 14px;
  color: #777;
  margin-top: 2px;
}

.complications-title {
  text-align: center;
  font-size: 20px;
  color: #d92525;
  margin-bottom: 25px;
}

.carousel-container {
  position: relative;
  width: 100%;
  padding: 0 50px;
}

.carousel-track {
  display: flex;
  gap: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
  padding-bottom: 10px;
}

.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 15px;
}

.carousel-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 3px solid #fff;
  margin-bottom: 15px;
}

.carousel-text {
  font-size: 18px;
  color: #444;
  line-height: 1.4;
  font-weight: bold;
}

.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: 0.3s;
}

.carousel-btn:hover {
  background: #f0f0f0;
}

.carousel-btn.prev {
  left: 0px;
}

.carousel-btn.next {
  right: 0px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #00a2ff;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dot.active {
  background-color: #00a2ff;
  border-color: #00a2ff;
  box-shadow: 0 0 0 4px #dcf0fd;
}

/* СИНЯЯ СЕКЦИЯ */
.blue-comprehensive {
  width: 100%;
  background: linear-gradient(135deg, #184b7a 0%, #206da8 50%, #154573 100%);
  color: #fff;
  padding: 60px 15px;
  margin-bottom: 20px;
}

.blue-container {
  max-width: 1100px;
  margin: 0 auto;
}

.comp-title {
  text-align: center;
  color: #ffb700;
  font-size: 34px;
  margin-bottom: 10px;
}

.comp-subtitle {
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.comp-subtitle .highlight {
  color: #ffb700;
  font-weight: bold;
}

.comp-bold-text {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #fff;
}

.comp-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comp-col {
  flex: 1;
}

.comp-left,
.comp-right {
  flex: 0 0 35%;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 35px;
}

.comp-check {
  width: 22px;
  height: 22px;
  color: #ffb700;
  flex-shrink: 0;
  margin-top: 0px;
}

.comp-text h4 {
  font-size: 17px;
  margin: 0 0 6px 0;
  line-height: 1.2;
  color: #fff;
}

.comp-text p {
  font-size: 14px;
  color: #d0e8fc;
  line-height: 1.4;
  margin: 0;
}

.comp-center {
  flex: 0 0 30%;
  display: flex;
  justify-content: center;
  position: relative;
}

.circle-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.circle-bg::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  right: -40px;
  bottom: -40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.circle-bg::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.comp-center img {
  position: relative;
  z-index: 1;
  max-height: 350px;
  object-fit: contain;
}

/* ВИДЫ ГЕМОРРОЯ */
.types-section {
  width: 100%;
  background-color: #f4f7f6;
  padding: 20px 15px 40px;
}

.types-container {
  max-width: 1100px;
  margin: 0 auto;
}

.types-main-title {
  text-align: center;
  font-size: 32px;
  color: #111;
  margin-bottom: 40px;
  line-height: 1.2;
}

.types-main-title strong {
  font-weight: 900;
}

.types-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.type-card {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.type-header {
  background: linear-gradient(135deg, #377eb8 0%, #205c93 100%);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
}

.type-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.type-img {
  max-width: 150px;
  height: 300px;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.type-subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
  text-align: center;
}

.type-pre-list {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
  text-align: left;
  width: 100%;
}

.type-list {
  list-style: none;
  width: 100%;
}

.type-list li {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #222;
  line-height: 1.4;
}

.type-list li:last-child {
  border-bottom: none;
}

.type-check {
  width: 18px;
  height: 18px;
  color: #ffb700;
  flex-shrink: 0;
  margin-right: 12px;
  margin-top: 1px;
}

/* СПОСОБ ПРИМЕНЕНИЯ */
.usage-section {
  width: 100%;
  background-color: #f2fbff;
  padding: 60px 15px;
}

.usage-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.usage-title {
  font-size: 32px;
  color: #000;
  font-weight: 900;
  margin-bottom: 50px;
}

.usage-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

.usage-item {
  flex: 1;
  max-width: 300px;
}

.usage-item img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 20px;
}

.usage-item h3 {
  font-size: 18px;
  color: #000;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}

.usage-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* РЕЗУЛЬТАТЫ */
.results-section {
  width: 100%;
  background-color: #ffffff;
  padding: 60px 15px 40px;
}

.results-container {
  max-width: 900px;
  margin: 0 auto;
}

.results-title {
  text-align: center;
  font-size: 32px;
  color: #000;
  font-weight: 900;
  margin-bottom: 50px;
}

.results-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 40px;
}

.results-item {
  flex: 1;
  text-align: center;
  padding: 0 25px;
}

.results-item.line-right {
  border-right: 1px dashed #ccc;
}

.result-number {
  font-size: 70px;
  font-weight: 900;
  color: #ffcc4d;
  line-height: 1;
  margin-bottom: 20px;
}

.result-text {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  line-height: 1.4;
}

.btn-wrapper {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

/* МНЕНИЯ ЭКСПЕРТОВ (ВИДЕО) */
.expert-reviews-section {
  width: 100%;
  background: linear-gradient(135deg, #1a5c9c 0%, #154573 100%);
  padding: 70px 15px;
  color: #fff;
}

.expert-container {
  max-width: 1100px;
  margin: 0 auto;
}

.expert-main-title {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 60px;
}

.expert-main-title span {
  color: #ffb700;
}

.expert-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
}

.expert-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.expert-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 15px;
}

.expert-item.has-divider::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -15px;
  height: 80%;
  border-right: 1px dashed rgba(255, 255, 255, 0.3);
}

@media (min-width: 790px) {
  .expert-grid {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .expert-name {
    padding-left: 0px;
  }
}

/* Кастомный плеер для круглого видео */
.expert-video-wrapper {
  width: 265px;
  height: 265px;
  margin: 0 auto 30px;
  border-radius: 50%;
  padding: 12px;
  background: rgba(0, 162, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(0, 162, 255, 0.4);
}

.custom-player {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #00a2ff;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  cursor: pointer;
}

.custom-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #000;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 10;
}

.play-btn::after {
  content: "";
  display: block;
  margin-left: 6px;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #fff;
}

.custom-player.playing .play-btn {
  background-color: transparent;
}

.custom-player.playing .play-btn::after {
  display: none;
}

.custom-player.playing:hover .play-btn {
  background-color: rgba(0, 0, 0, 0.4);
}

.custom-player.playing:hover .play-btn::after {
  content: "";
  display: block;
  margin: 0;
  border: none;
  width: 16px;
  height: 22px;
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
}

.expert-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
}

.expert-desc {
  font-size: 16px;
  color: #d0e8fc;
  font-style: italic;
  line-height: 1.5;
}

.expert-btn {
  display: none;
}

/* ОТЗЫВЫ ПОЛЬЗОВАТЕЛЕЙ */
.user-reviews-section {
  width: 100%;
  background-color: #f9fbfd;
  padding: 70px 15px;
}

.user-container {
  max-width: 1100px;
  margin: 0 auto;
}

.user-main-title {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #000;
}

.user-main-title span {
  color: #f6a828;
}

.user-subtitle {
  text-align: center;
  font-size: 18px;
  color: #333;
  margin-bottom: 50px;
}

.user-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
}

.user-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}

.user-card {
  flex: 1;
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 162, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.user-video-wrapper {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 5px solid #f6a828;
  padding: 6px;
  background: #fff;
  margin: 0 auto 25px;
}

.user-video-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  position: relative;
  cursor: pointer;
}

.user-video-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #000;
}

.user-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.user-highlight {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.user-text {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

.user-btn {
  display: none;
}

/* ЭТАПЫ ЗАКАЗА */
.order-steps-section {
  width: 100%;
  background: #fff;
  padding: 70px 15px;
}

.order-steps-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.steps-title {
  font-size: 36px;
  font-weight: 900;
  color: #000;
  margin-bottom: 60px;
  line-height: 1.2;
}

.steps-title span {
  font-weight: normal;
}

.steps-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-img-wrapper {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  padding: 10px;
  background: rgba(0, 162, 255, 0.1);
  border: 2px solid #bce2fc;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.step-text {
  font-size: 18px;
  line-height: 1.4;
  color: #000;
}

.step-divider {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}

.step-dot {
  width: 8px;
  height: 8px;
  background: #e0e0e0;
  border-radius: 50%;
}

.step-dot.yellow {
  background: #ffcc4d;
}

.steps-footer-text {
  font-size: 15px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* КОММЕНТАРИИ */
.comments-section {
  margin-bottom: 40px;
  width: 100%;
  animation: fadeIn 1s ease;
  margin-top: 40px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.comment-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInComment 0.6s forwards;
}

@keyframes fadeInComment {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover !important;
  margin-right: 15px;
  background-color: #eee;
}

.comment-info {
  display: flex;
  flex-direction: column;
}

.comment-name {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}

.comment-time {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.comment-text {
  font-size: 15px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 15px;
}

.reactions-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid #f5f5f5;
  padding-top: 12px;
}

.reaction-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f4f7f6;
  border: 1px solid #e0e0e0;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  user-select: none;
}

.reaction-btn.user-liked {
  background: #e3f2fd;
  border-color: #90caf9;
  color: #1565c0;
}

.reaction-count {
  font-weight: bold;
  display: inline-block;
}

.reaction-count.animate-pop {
  animation: countPop 0.3s ease-out;
}

@keyframes countPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
    color: #ff6200;
  }

  100% {
    transform: scale(1);
  }
}

/* ФУТЕР */
.footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  margin-top: 40px;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  filter: invert(1);
  /* 1 - это 100% инверсия цвета */
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
}

/* =========================================
   АДАПТИВ (МОБИЛЬНЫЕ УСТРОЙСТВА)
   ========================================= */
@media (max-width: 768px) {
  .container {
    padding: 10px;
    width: 100%;
    overflow: hidden;
  }

  .main-title {
    font-size: 20px;
    word-wrap: break-word;
  }

  .form-container {
    width: 100%;
    margin: 0 0 25px 0;
    flex-direction: column;
  }

  .form-left,
  .form-right {
    width: 100%;
    max-width: 100%;
    padding: 15px 5px !important;
    overflow: hidden;
  }

  .form-title {
    font-size: 14px;
    margin-bottom: 10px;
    word-wrap: break-word;
  }

  .countdown-timer {
    font-size: 16px;
    padding: 2px 5px;
  }

  .product-image img {
    max-height: 90px;
  }

  .new-price {
    font-size: 18px;
  }

  .old-price {
    font-size: 12px;
  }

  .discount-badge {
    font-size: 9px;
    padding: 2px;
  }

  .input-group input {
    padding: 10px 5px;
    font-size: 13px;
  }

  .submit-btn {
    padding: 12px 5px;
    font-size: 12px;
    word-wrap: break-word;
    white-space: normal;
  }

  .security-notice span {
    font-size: 9px;
    line-height: 1.1;
  }

  .product-info-section {
    padding: 20px 10px;
    width: 100%;
  }

  .info-title {
    font-size: 18px;
  }

  .info-subtitle {
    font-size: 15px;
  }

  .benefit-text strong {
    font-size: 14px;
  }

  .benefit-text span {
    font-size: 12px;
  }

  .complications-title {
    font-size: 16px;
  }

  .carousel-container {
    padding: 0;
    width: 100%;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-track {
    gap: 0;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .carousel-slide {
    width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding: 0 10px;
  }

  .carousel-img {
    width: 180px;
    height: 180px;
  }

  .carousel-text {
    font-size: 16px;
  }

  .carousel-dots {
    gap: 12px;
    margin-top: 15px;
  }

  .dot {
    width: 12px;
    height: 12px;
  }

  .blue-comprehensive {
    padding: 40px 15px;
  }

  .comp-title {
    font-size: 26px;
  }

  .comp-subtitle {
    font-size: 17px;
  }

  .comp-bold-text {
    font-size: 17px;
    margin-bottom: 30px;
  }

  .comp-grid {
    flex-direction: column;
    gap: 40px;
  }

  .comp-center {
    order: -1;
    margin-bottom: 20px;
  }

  .circle-bg {
    width: 200px;
    height: 200px;
  }

  .comp-center img {
    max-height: 250px;
  }

  .comp-item {
    margin-bottom: 25px;
  }

  .comp-text h4 {
    font-size: 16px;
  }

  .comp-text p {
    font-size: 13px;
  }

  .types-main-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .types-grid {
    flex-direction: column;
    gap: 25px;
  }

  .type-card {
    width: 100%;
  }

  .usage-section {
    padding: 40px 15px;
  }

  .usage-title {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .usage-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .usage-item {
    max-width: 100%;
  }

  .usage-item img {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
  }

  .results-section {
    padding: 40px 15px 30px;
  }

  .results-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .results-grid {
    flex-direction: column;
    gap: 0;
  }

  .results-item {
    padding: 25px 10px;
  }

  .results-item.line-right {
    border-right: none;
    border-bottom: 1px dashed #ccc;
  }

  .result-number {
    font-size: 50px;
    margin-bottom: 15px;
  }

  .result-text {
    font-size: 16px;
  }

  .expert-reviews-section {
    padding: 50px 15px;
  }

  .expert-main-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .expert-carousel-wrapper {
    padding: 0 30px;
  }

  .expert-grid {
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .expert-grid::-webkit-scrollbar {
    display: none;
  }

  .expert-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding: 0px;
  }

  .expert-item.has-divider::after {
    display: none;
  }

  .expert-video-wrapper {
    width: 220px;
    height: 220px;
    margin-bottom: 20px;
    padding: 0px;
  }

  .expert-name {
    font-size: 20px;
  }

  .expert-btn {
    display: flex;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
  }

  .expert-btn.prev {
    left: 0;
  }

  .expert-btn.next {
    right: 0;
  }

  .user-reviews-section {
    padding: 50px 15px;
  }

  .user-main-title {
    font-size: 26px;
  }

  .user-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .user-carousel-wrapper {
    padding: 0 40px;
  }

  .user-grid {
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 10px;
  }

  .user-grid::-webkit-scrollbar {
    display: none;
  }

  .user-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    margin: 0 10px;
    padding: 25px 15px;
  }

  .user-video-wrapper {
    width: 180px;
    height: 180px;
  }

  .user-btn {
    display: flex;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .user-btn.prev {
    left: 0;
  }

  .user-btn.next {
    right: 0;
  }

  .order-steps-section {
    padding: 40px 15px;
  }

  .steps-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .steps-flex {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }

  .step-img-wrapper {
    width: 160px;
    height: 160px;
    margin-bottom: 15px;
  }

  .step-text {
    font-size: 16px;
  }

  .step-divider {
    flex-direction: column;
    margin: 15px 0;
  }

  .steps-footer-text {
    font-size: 14px;
  }

  .comment-card {
    padding: 15px;
    width: 100%;
  }

  .comment-text {
    font-size: 14px;
    word-wrap: break-word;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }
}

.resume-overlay {
  position: absolute;
  inset: 0;
  z-index: 100;
  background: #f3ef00;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resume-overlay.hidden {
  display: none;
}

.resume-box {
  text-align: center;
  color: #fff;
  max-width: 300px;
}

.resume-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #000;
}

.resume-btn {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 14px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

.resume-btn.outline {
  background: transparent;
  border: 1px solid #000;
  color: #000;
}

.resume-btn:not(.outline) {
  background: #fff;
  color: #c23b7a;
}
