/* ============================================
   Reviews: «Показати всі відгуки»
   ============================================ */

.reviews .more {
  margin-top: 0.35rem;
}

.reviews .more:not(.is-open) .reviews__shots > li:nth-child(n + 4) {
  display: none;
}

@media (max-width: 700px) {
  .reviews .more:not(.is-open) .reviews__shots > li:nth-child(n + 3) {
    display: none;
  }
}

/* Expanded: smaller thumbs so the page stays short */
.reviews .more.is-open .reviews__shots {
  grid-template-columns: repeat(auto-fill, minmax(5.5rem, 1fr));
  gap: 0.45rem;
}

@media (min-width: 760px) {
  .reviews .more.is-open .reviews__shots {
    grid-template-columns: repeat(auto-fill, minmax(6.5rem, 1fr));
    gap: 0.55rem;
  }
}

@media (min-width: 1100px) {
  .reviews .more.is-open .reviews__shots {
    grid-template-columns: repeat(auto-fill, minmax(7.25rem, 1fr));
  }
}

.reviews .more.is-open .review-shot {
  border-radius: 0.55rem;
}

.reviews .more.is-open .review-shot__zoom {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0.75rem;
}

.more__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  max-width: 22rem;
  margin: 1.15rem auto 0;
  min-height: 2.75rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid rgba(21, 32, 28, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink, #15201c);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.more__toggle:hover {
  background: #fff;
  border-color: var(--moss, #5a7a68);
  color: var(--moss-deep, #3d5648);
}

.more__toggle-icon {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -2px);
  transition: transform 0.25s ease;
}

.more.is-open .more__toggle-icon {
  transform: rotate(225deg) translate(-1px, -1px);
}

.more__toggle-wrap {
  display: flex;
  justify-content: center;
}
