.review-hero-new {
	background: transparent;
	overflow-x: hidden;
	position: relative;
	overflow: visible;
	padding-top: calc(var(--header-height) + 2rem);
	padding-bottom: 3rem;
}

.hero-media {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(5px);
}

.hero-main-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: top center;
	transition: opacity 0.45s ease-in-out;
	opacity: 1;
	will-change: opacity
}

.hero-main-img.loading {
	opacity: 0
}

.hero-video-wrapper {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: none
}

.hero-video-iframe {
  width: 100%;
  height: calc(100% - 40px); /* отступ 40px снизу */
  position: absolute;
  top: 0;
  left: 0;
}

.hero-thumbs {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	gap: 10px;
	padding: 6px 0px 8px 20px;
	overflow-x: auto;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 100%);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border-radius: 0 0 12px 12px;
	z-index: 5;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	box-sizing: border-box;
}

.hero-thumbs::after {
  content: '';
  flex: 0 0 12px; /* невидимый отступ справа */
}

.hero-thumbs::-webkit-scrollbar {
	display: none
}

.thumb {
	flex: 0 0 56px;
	aspect-ratio: 1;
	border-radius: 10px;
	overflow: hidden;
	border: 2px solid transparent;
	position: relative;
	cursor: pointer;
	transition: all 0.2s ease;
	scroll-snap-align: start
}

.thumb.active {
	border-color: #e313bf;
	transform: scale(1.08);
	box-shadow: 0 0 0 3px rgba(227, 19, 191, 0.3)
}

.thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.video-play {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	color: white;
	font-size: 2.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-text {
	padding: 16px 12px 40px;
    background: transparent;
	text-align: center;
}

.hero-text .rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 12px;
	color: #666;
}

.hero-text .stars {
	color: #f59e0b;
	font-size: 1.45rem;
	letter-spacing: 1px
}

.hero-text h1 {
	font-size: 2rem;
	line-height: 1.15;
	margin: 0 0 0px;
	padding: 0 8px;
	font-weight: 700;
	color: #000;
}

.hero-text .teaser {
	font-size: 1.1rem;
	line-height: 1.5;
	color: #64748b;
	margin: 0 0 1px;
	padding: 0 12px;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto
}

.hero-text .full-review {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #334155;
	margin: 0 0 32px;
	padding: 0 12px;
	text-align: left;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto
}

.hero-text .full-review p {
	margin-bottom: 1.5em
}

.hero-text .full-review h2,
.hero-text .full-review h3 {
	margin: 2em 0 1em;
	font-weight: 600
}

.hero-text .btn-wb {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 32px;
	background: linear-gradient(135deg, #e313bf, #c40fa5);
	color: white;
	font-weight: 600;
	font-size: 1.1rem;
	border-radius: 12px;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(227, 19, 191, 0.25);
	transition: all 0.2s ease


}

.hero-text .btn-wb:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(227, 19, 191, 0.35)
}

@media (max-width:480px) {
	.hero-text {
		padding: 12px 8px 32px
	}

	.hero-text h1 {
		font-size: clamp(1.8rem, 6vw, 2.3rem)
	}

	.hero-text .teaser {
		font-size: 1rem
	}
}

.photo-modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	overflow: hidden
}

.photo-modal.active {
	display: flex
}

.photo-modal-content {
	position: relative;
	width: 90vw;
	max-width: 1200px;
	height: 90vh;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5)
}


.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e313bf 0%, #667eea 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 2rem;
  line-height: 44px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(227, 19, 191, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.modal-close:hover {
  background: linear-gradient(135deg, #667eea 0%, #e313bf 100%);
  box-shadow: 0 0 30px rgba(227, 19, 191, 0.8), 0 0 50px rgba(102, 126, 234, 0.5);
  transform: scale(1.1) rotate(90deg);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(227, 19, 191, 0.5); }
  50% { box-shadow: 0 0 40px rgba(227, 19, 191, 0.8); }
}

.modal-main-image {
  position: relative;
  width: 100%;
  height: calc(100% - 80px); /* вычитаем высоту миниатюр */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden; /* если еще нет */
  box-sizing: border-box; /* ← КЛЮЧЕВОЕ */
}

#modal-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #000;
	transition: opacity 0.4s ease;
	opacity: 1;
	transform: translateX(0);
	display: block;
}

#modal-img.loading {
	opacity: 0
}

/* Фотографии покупателей - отображаем полностью */
#user-modal-img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	background: transparent;
	transition: opacity 0.4s ease;
	opacity: 1;
	display: block;
}

.modal-video-iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none
}

.modal-thumbs {
	display: flex;
	gap: 8px;
	padding: 12px;
	overflow-x: auto;
	background: transparent;
	flex-shrink: 0;
}

.modal-thumbs .thumb {
	flex: 0 0 60px;
	aspect-ratio: 1;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid transparent;
	cursor: pointer
}

.modal-thumbs .thumb.active {
	border-color: #e313bf
}

@media (max-width:767px) {

	#recommended h2 {
		font-size: clamp(1.85rem, 6.5vw, 2.25rem) !important;
		line-height: 1.18
	}

	#recommended .carousel-wrapper,
	#recommended .carousel-track {
		max-width: 100vw;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none
	}

	#recommended .carousel-track::-webkit-scrollbar {
		display: none
	}

	#recommended .review-card,
	#recommended .card {
		max-width: calc(100vw - 32px);
		flex: 0 0 auto
	}

	.infinite-feed-section .container {
		text-align: center;
		margin-bottom: 3rem
	}

	.subtitle {
		color: var(--gray);
		font-size: 1.15rem;
		max-width: 680px;
		margin: 1rem auto 0
	}
}

@media (min-width:768px) {
	.review-hero-new {
		max-width: 1200px;
		margin: 0 auto;
		padding: 2rem 0 1rem;
	}

	.hero-media,
	.hero-thumbs,
	.hero-text {
		padding-left: 24px;
		padding-right: 24px
	}
}

/* CSS - добавь в review.css */

.author-quote {
  margin: 2.5rem 0;
  padding: 1.75rem;
  background: #f8fafc;
  border-left: 4px solid #e313bf;
  border-radius: 12px;
}

.author-avatar {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  object-fit: cover;
  float: left !important;
  margin-right: 1.25rem !important;
  margin-bottom: 0.75rem;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quote-content {
  overflow: hidden; /* чтобы текст обтекал */
}

.author-signature {
  margin-bottom: 0.75rem; /* отступ перед текстом */
}

.author-name {
  display: block;
  font-weight: 600;
  color: #0f172a;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.author-role {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
}

.quote-text {
  font-size: 0,75rem;
  line-height: 1.7;
  color: #334155;
  margin: 0;
  font-style: italic;
  clear: none; /* текст обтекает аватарку */
}

@media (min-width: 768px) and (max-width: 1023px) {
  .review-body-container {
    padding: 0 !important;
  }

  .review-text-col {
    width: 100%;
    max-width: 100%;
  }

  .review-text-content {
    padding: 0 1rem;
  }

    /* Отступы для verdict card */
  .review-verdict-col {
    padding: 0 1rem;
  }

  /* Или отступы у самой карточки */
  .verdict-card {
    margin: 0 1rem;
  }
}

@media (max-width: 767px) {
  .quote-text {
    font-size: 1.05rem; /* как в основном тексте */
    line-height: 1.8;
    font-style: normal; /* убрать курсив на мобилке */
  }
}

/* ============================================================================
   CSS ДЛЯ БЛОКА АВТОРА С "ЧИТАТЬ ДАЛЕЕ"
   Добавь в review.css
   ============================================================================ */

.author-quote {
  margin: 0;
  padding: 1.25rem;
  background: #f8fafc;
  border-left: 4px solid #475569;
  border-radius: 12px;
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  float: left;
  margin-right: 1.25rem;
  margin-bottom: 0.75rem;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(90deg, #e313bf 0%, #667eea 50%, #a855f7 100%) border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



.quote-content {
  /* overflow: hidden убрали */
}

.author-signature {
  margin-bottom: 0.5rem;
}

.author-name {
  display: block;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.3;
}

.author-role {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.3;
}

.quote-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
  margin: 0.5rem !important;
  font-style: italic;
}

.quote-full {
  display: none;
}

.quote-toggle {
  background: none;
  border: none;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.2s;
}

.quote-toggle:hover {
  opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════════
   ТАБЫ: Аналитика + FAQ
   ═══════════════════════════════════════════════════════════════ */

.tabs-container {
  margin: 2rem 0 0 0;
}

.tabs-header {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
}

.tab-button {
  padding: 0.875rem 1.5rem;
  background: #f8fafc;
  border: none; /* ← Убрали border */
  font-size: 0.95rem;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  position: relative;
  transition: all 0.15s ease;
  font-family: inherit;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}

.tab-button:hover {
  color: #475569;
  background: #f8fafc;
}

.tab-button.active {
  color: #0f172a;
  background: #fff;
  font-weight: 600;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1); /* ← Только сверху */
  z-index: 1;
  transition: none;
}

/* Убираем разделители между табами */
.tab-button::after {
  display: none;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
  animation: none;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Блок аналитики в табе */
.tabs-container .author-quote {
  border-radius: 0 12px 12px 12px;
  background: #fff;
  border: none; /* ← Убрали */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* ← Лёгкая тень */
}

/* FAQ контент */
.faq-content {
  padding: 1.25rem;
  background: #fff;
  border-left: 4px solid #475569;
  border-radius: 0 0 12px 12px;
  border: none; /* ← Убрали */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* ← Лёгкая тень */
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-item {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.faq-answer {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
}


/* Мобильная версия */
@media (max-width: 767px) {
  .author-quote {
    padding: 1rem;
  }

  .author-avatar {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
  }

  .quote-text {
    font-size: 1.05rem; /* как в основном тексте */
    line-height: 1.8;
    font-style: normal; /* убираем курсив на мобилке */
  }

  .author-signature {
    margin-bottom: 0.75rem;
  }
}

.review-body-text {
  background: #ffffff;
  color: #1a1a1a;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.review-body-text p {
  color: #1a1a1a;
  line-height: 1.7;
  margin-bottom: 1em;
}

.review-body-text p:last-child {
  margin-bottom: 0;
}

/* Блок автора обзора */
.review-author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.review-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  filter: saturate(0.6) brightness(1.1);
  position: relative;
  overflow: hidden;
}

.review-author-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(0,0,0,0.1) 100%);
  border-radius: 50%;
}

.review-author-info {
  flex: 1;
}

.review-author-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.review-author-date {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Мобильная версия */
@media (max-width: 768px) {
  .review-author-box {
    padding: 1rem;
    gap: 0.75rem;
  }

  .review-author-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .review-author-name {
    font-size: 1rem;
  }

  .review-author-date {
    font-size: 0.85rem;
  }
}

@media (min-width: 1024px) {
  .hero-thumbs {
    height: 530px;
    overflow-y: scroll;
    overflow-x: hidden;

    /* Прячем скроллбар полностью */
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE */
  }

  /* Прячем скроллбар Chrome/Safari */
  .hero-thumbs::-webkit-scrollbar {
    display: none;
  }
}

/* ============================================
   Стили для секции #popular (перенесены из main.css)
   ============================================ */

/* Базовые стили контейнера */
#popular .container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  background: transparent;
}

#popular {
  background: transparent;
  margin-top: 60px;
}


/* Стили заголовка с glass-эффектом */
#popular h2, #infinite-feed h2 {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 100%;
  padding: 12px 28px;
  background: linear-gradient(90deg, #e313bf 0%, #667eea 100%); /* Градиент для текста */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgb(71, 85, 105);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)); /* Тень для градиентного текста */
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Градиентная рамка как у hero */
#popular h2::before, #infinite-feed h2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(90deg, #e313bf 0%, #667eea 50%, #a855f7 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

#infinite-feed {
  padding-top: 0;
}

#infinite-feed .container {
  margin-bottom: 0;
}

#infinite-feed .card-body,
#popular .card-body {
  background: rgba(255, 255, 255, 1);
  border: none;
}

/* Градиентная рамка БЕЗ ВЕРХА */
#infinite-feed .card-body::before,
#popular .card-body::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(100% - 2px); /* Не доходит до верха */
  border-radius: 0 0 12px 12px; /* Закругление только снизу */
  padding: 0 2px 2px 2px; /* Отступ слева, справа, снизу */
  background: linear-gradient(90deg, #e313bf 0%, #667eea 50%, #a855f7 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

/* Заголовок карточки чёрным */
#infinite-feed .card-title,
#popular .card-title,
#infinite-feed .card-body h3,
#popular .card-body h3 {
  color: #1a1a1a;
}

/* Текст тизера темнее */
#infinite-feed .card-text,
#popular .card-text,
#infinite-feed .card-body .teaser,
#popular .card-body .teaser {
  color: #1e293b !important;
  font-weight: 500;
}

/* Градиентная рамка для изображения БЕЗ НИЗА */
#infinite-feed .card-img-top,
#popular .card-img-top {
  position: relative;
}

#infinite-feed .card-img-top::before,
#popular .card-img-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 2px; /* Не доходит до низа */
  border-radius: 12px 12px 0 0; /* Закругление только сверху */
  padding: 2px 2px 0 2px; /* Отступ сверху, слева, справа */
  background: linear-gradient(90deg, #e313bf 0%, #667eea 50%, #a855f7 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

#infinite-feed .card-body,
#popular .card-body {
  position: relative;
}

/* Hover - фон остаётся белым */
#infinite-feed .card:hover .card-body,
#popular .card:hover .card-body {
  background: rgba(255, 255, 255, 1) !important;
}

#infinite-feed .card,
#popular .card {
  background: #ffffff;
}

/* Обёртка заголовка для центрирования */
.section-heading-wrap {
  text-align: center;
  margin-bottom: 1rem;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

#infinite-feed .card,
#popular .card {
  box-shadow: none !important;
}

/* Подсказка "Slide" со стрелочкой */
.swipe-hint {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 0px 0px 16px 0px;
  margin-left: auto;
  margin-right: 20px;
  width: fit-content;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e313bf;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow:
    0 0 10px #e313bf,
    0 0 20px #e313bf,
    0 0 40px #667eea,
    0 0 80px #a855f7;
  animation: swipeHintPulse 2s ease-in-out infinite;
}

.neon-bg,
.neon-line {
  display: none;
}

.swipe-hint--blue {
  color: #667eea;
  text-shadow:
    0 0 10px #667eea,
    0 0 20px #667eea,
    0 0 40px #a855f7;
}

.swipe-hint svg {
  animation: swipeArrow 1.5s ease-in-out infinite;
}

@keyframes swipeHintPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes swipeArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* Показывать только на мобильных */
@media (max-width: 768px) {
  .swipe-hint {
    display: flex;
  }
}

/* ============================================
   Тёмный фон с градиентом и grid-сеткой
   ============================================ */

html {
  background: #0f0f1e; /* фон на случай bounce */
}

.site-wrapper {
  overflow-x: hidden;
}

.site-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  /* Градиент */
  background: #ffffff;
}

/* Grid-сетка в стиле Apple Vision */
.site-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

@media (max-width: 768px) {
    header, .header, .site-header, .navbar {
        background: rgba(255, 255, 255, 0.95) !important; /* Белый полупрозрачный */
        backdrop-filter: blur(15px) !important;
        padding: 0px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

/* Кнопки "Нет в наличии" - серые с цветным бордером */
.btn-wb-disabled,
.verdict-btn-disabled {
  background: #f3f4f6 !important;
  color: #6b7280 !important;
  border: 2px solid #e313bf !important;
  cursor: not-allowed !important;
  pointer-events: none !important;

  /* Отключаем все анимации и эффекты */
  animation: none !important;
  transition: none !important;
}

.btn-wb-disabled:hover,
.btn-wb-disabled:active,
.btn-wb-disabled:focus,
.verdict-btn-disabled:hover,
.verdict-btn-disabled:active,
.verdict-btn-disabled:focus {
  background: #f3f4f6 !important;
  color: #6b7280 !important;
  transform: none !important;
  box-shadow: none !important;
}