.thankyou-page {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 60px);
  font-family: "Commissioner", sans-serif;
}

/* Контейнер: 50/50 */
.thankyou__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 80px);
  align-items: center;
}

/* Левая колонка */
.thankyou__eyebrow {
  color: rgba(0, 0, 0, 0.55);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.thankyou__title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 800;
  color: #E94290;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* Детали заказа */
.thankyou__details {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  font-size: 20px;
  color: #570029;
  line-height: 1.6;
}

.thankyou__details strong {
  color: #E94290;
}

/* Кнопка */
.thankyou__btn {
  display: inline-block;
  background: #E94290;
  color: #fff;
  padding: 16px 36px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: filter .2s ease;
  text-transform: uppercase;
}

.thankyou__btn:hover {
  filter: brightness(0.9);
}

/* Правая колонка */
.thankyou__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Мобильная версия */
@media (max-width: 900px) {
  .thankyou__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .thankyou__image {
    order: -1;
  }

  .thankyou__btn {
    margin: 0 auto;
  }
}
