/* Герой-секция */
.order-success__hero {
  text-align: center;
  padding: 4rem 2rem;
  margin-bottom: 6rem;
  background: white;
  border-radius: 2rem;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.06);
}

.order-success__icon {
  margin-bottom: 3rem;
  animation: successIcon 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successIcon {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.order-success__title {
  font-size: 4.8rem;
  font-weight: 600;
  color: #2C2C2C;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.order-success__subtitle {
  font-size: 2rem;
  color: #6B778A;
  max-width: 60rem;
  margin: 0 auto;
  line-height: 1.6;
}

.order-details__step-content strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 0.5rem;
}

.order-details__step-content p {
  font-size: 1.4rem;
  color: #6B778A;
  margin: 0;
  line-height: 1.6;
}

/* Кнопки действий */
.order-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 8rem;
  flex-wrap: wrap;
}

.order-actions__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.8rem 3.2rem;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  min-width: 22rem;
  border: 2px solid transparent;
}

.order-actions__btn--primary {
  background: #2C2C2C;
  color: white;
}

.order-actions__btn--primary:hover {
  background: #363636;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(44, 44, 44, 0.2);
}

.order-actions__btn--secondary {
  background: white;
  color: #2C2C2C;
  border-color: #D3D7DC;
}

.order-actions__btn--secondary:hover {
  background: #F7F8F9;
  border-color: #2C2C2C;
  transform: translateY(-2px);
}

.order-benefits__content h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2C2C2C;
  margin: 0 0 0.5rem 0;
}

.order-benefits__content p {
  font-size: 1.4rem;
  color: #6B778A;
  margin: 0;
  line-height: 1.6;
}

.order-benefits__content a {
  color: #2C2C2C;
  font-weight: 600;
  text-decoration: none;
}

.order-benefits__content a:hover {
  color: #FF264D;
}

@media (max-width: 992px) {
  .order-success__title {
    font-size: 3.6rem;
  }

  .order-actions__btn {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .order-success__hero {
    padding: 3rem 1.5rem;
  }

  .order-success__title {
    font-size: 2.8rem;
  }

  .order-success__subtitle {
    font-size: 1.6rem;
  }



  .order-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Стили для печати */
@media print {
  .order-success__container {
    padding: 0;
  }

  .breadcrumbs,
  .order-actions,
  .order-recommendations,
  .order-benefits,
  header,
  footer {
    display: none !important;
  }

  .order-success__hero,
  .order-details__card {
    box-shadow: none;
    border: 2px solid #000;
  }

  .order-details__value--highlight {
    background: none;
    color: #000;
  }
}





.error-code {
  font-size: 12rem;
  font-weight: 700;
  color: #e0e0e0;
  margin: 0;
  line-height: 1;
}

.error-title {
  font-size: 28px;
  margin: 20px 0 15px;
  color: #333;
}

.error-text {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}



/* Адаптивность */
@media (max-width: 768px) {
  .error-code {
    font-size: 80px;
  }

  .error-title {
    font-size: 24px;
  }

  .error-text {
    font-size: 16px;
  }


}