/* Основные стили для отзывов Яндекс.Карт */

/* Контейнер отзывов */
.ya-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

/* Фиксированные колонки */
.ya-reviews.ya-columns-1 {
  grid-template-columns: 1fr;
}

.ya-reviews.ya-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.ya-reviews.ya-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ya-reviews.ya-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Карточка отзыва */
.ya-card {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.ya-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Шапка отзыва */
.ya-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

/* Ссылка-шапка отзыва */
.ya-head-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 6px;
  padding: 4px;
  margin: -4px;
}

.ya-head-link:hover {
  opacity: 0.8;
  transform: translateY(-1px);
  text-decoration: none;
  color: inherit;
}

.ya-head-link:focus {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}

/* Аватар */
.ya-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #f5f5f5;
  display: block;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Имя автора */
.ya-name {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  color: #333;
  margin-bottom: 2px;
}

/* Дата отзыва */
.ya-date {
  font-size: 12px;
  color: #777;
}

/* Звезды рейтинга */
.ya-stars {
  font-size: 14px;
  color: #ffa500;
  margin: 8px 0;
  letter-spacing: 1px;
  line-height: 1;
}

/* Текст отзыва */
.ya-text {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

/* Кнопка раскрытия текста */
.ya-toggle {
  background: none;
  border: none;
  color: #0073aa;
  cursor: pointer;
  font-size: 13px;
  padding: 0;
  margin-left: 6px;
  text-decoration: underline;
}

.ya-toggle:hover {
  color: #005a87;
  text-decoration: none;
}

.ya-toggle:focus {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}

/* Бейдж организации */
.ya-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e1e1e1;
}

.ya-score {
  font-weight: 700;
  font-size: 32px;
  color: #ffa500;
  line-height: 1;
  flex-shrink: 0;
}

.ya-badge-info {
  flex: 1;
}

.ya-badge-info strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: #333;
}

.ya-badge a {
  font-size: 14px;
  color: #0073aa;
  text-decoration: none;
}

.ya-badge a:hover {
  text-decoration: underline;
}

/* Слайдер */
.ya-slider-wrap {
  position: relative;
  max-width: 100%;
  margin: 20px 0;
  overflow: hidden;
  border-radius: 8px;
}

.ya-slider {
  display: flex;
  transition: transform 0.3s ease;
}

.ya-slide {
  display: none;
  gap: 16px;
  width: 100%;
  flex-shrink: 0;
}

.ya-slide.active {
  display: flex;
}

.ya-slide .ya-card {
  flex: 1;
  min-width: 0;
}

/* Кнопки навигации слайдера */
.ya-slider-prev,
.ya-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
  font-weight: bold;
  line-height: 1;
}

.ya-slider-prev:hover,
.ya-slider-next:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #0073aa;
}

.ya-slider-prev:focus,
.ya-slider-next:focus {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}

.ya-slider-prev {
  left: -20px;
}

.ya-slider-next {
  right: -20px;
}

/* Сообщения об ошибках и пустом результате */
.ya-reviews-error {
  padding: 15px;
  background: #ffe6e6;
  border: 1px solid #ff9999;
  border-radius: 4px;
  color: #cc0000;
  margin: 20px 0;
}

.ya-reviews-empty {
  padding: 15px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #666;
  text-align: center;
  margin: 20px 0;
}

/* Адаптивные стили */
@media (max-width: 1024px) {
  .ya-reviews.ya-columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ya-reviews {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
  }

  .ya-reviews.ya-columns-2,
  .ya-reviews.ya-columns-3,
  .ya-reviews.ya-columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ya-slide {
    flex-direction: column;
  }

  .ya-card {
    padding: 12px;
  }

  .ya-badge {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .ya-slider-prev,
  .ya-slider-next {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .ya-slider-prev {
    left: -18px;
  }

  .ya-slider-next {
    right: -18px;
  }
}

@media (max-width: 480px) {
  .ya-reviews {
    grid-template-columns: 1fr;
  }

  .ya-reviews.ya-columns-2,
  .ya-reviews.ya-columns-3,
  .ya-reviews.ya-columns-4 {
    grid-template-columns: 1fr;
  }

  .ya-card {
    padding: 12px;
  }

  .ya-badge {
    padding: 12px;
  }

  .ya-score {
    font-size: 24px;
  }

  /* Кнопки слайдера снизу на мобильных */
  .ya-slider-prev,
  .ya-slider-next {
    position: static;
    transform: none;
    margin: 10px 5px;
    display: inline-flex;
  }

  .ya-slider-controls {
    text-align: center;
    margin-top: 15px;
  }

  .ya-slider-wrap {
    padding-bottom: 60px;
  }
}

/* Темы */
.ya-reviews.ya-theme-dark .ya-card {
  background: #2c2c2c;
  border-color: #444;
  color: #fff;
}

.ya-reviews.ya-theme-dark .ya-name {
  color: #fff;
}

.ya-reviews.ya-theme-dark .ya-text {
  color: #ddd;
}

.ya-reviews.ya-theme-dark .ya-date {
  color: #aaa;
}

/* Анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ya-card {
  animation: fadeInUp 0.3s ease forwards;
}

/* Улучшенная типографика */
.ya-text {
  word-wrap: break-word;
  hyphens: auto;
}

/* Доступность */
.ya-ava[src=""],
.ya-ava:not([src]) {
  background-color: #f0f0f0;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23999"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
}

/* Изображения в отзывах */
.ya-images {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.ya-image-item {
  flex: 0 0 auto;
}

.ya-image-link {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ya-image-link:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ya-review-image {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: none;
}

/* Кнопка "Показать ещё" и загрузка */
.ya-load-more-wrap {
  text-align: center;
  margin: 30px 0;
}

.ya-load-more-btn {
  background: #007cba;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: inherit;
}

.ya-load-more-btn:hover {
  background: #005a87;
  transform: translateY(-1px);
}

.ya-load-more-btn:active {
  transform: translateY(0);
}

.ya-load-more-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.ya-load-more-btn:disabled:hover {
  background: #ccc;
  transform: none;
}

.ya-loading {
  text-align: center;
  color: #666;
  font-style: italic;
  margin: 20px 0;
}

.ya-loading:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #007cba;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: ya-spinner 1s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes ya-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Контейнер для отзывов с подгрузкой */
.ya-reviews-container {
  position: relative;
}

/* Триггер для бесконечной прокрутки */
.ya-infinite-trigger {
  height: 10px;
  opacity: 0;
  pointer-events: none;
}

/* Адаптивные стили */
@media (max-width: 768px) {
  .ya-load-more-btn {
    width: 100%;
    max-width: 300px;
  }
}
