/* Thanks Section */
.bazaar-thanks-section {
  position: relative;
  min-height: calc(100vh - 400px);
  padding: 120px 0 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  height: 100vh;
}

.bazaar-thanks-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.bazaar-thanks-content {
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  background: white;
}

/* Начальные стили для плавного появления */
.bazaar-thanks-icon,
.bazaar-thanks-content h1,
.bazaar-thanks-message,
.bazaar-thanks-details,
.bazaar-thanks-actions,
.bazaar-thanks-social {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(30px);
}

.bazaar-thanks-animated {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.bazaar-thanks-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-accent);
  font-size: 4rem;
}

.bazaar-thanks-content h1 {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-size: 2.5rem;
}

.bazaar-thanks-message {
  margin-bottom: 2rem;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.8;
}

.bazaar-thanks-details {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.bazaar-thanks-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-color);
}

.bazaar-thanks-detail i {
  color: var(--primary-accent);
  font-size: 1.5rem;
}

.bazaar-thanks-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.bazaar-thanks-primary-btn,
.bazaar-thanks-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.bazaar-thanks-primary-btn {
  border: 2px solid var(--primary-accent);
  color: white;
  background: var(--primary-accent);
}

.bazaar-thanks-primary-btn:hover {
  box-shadow: 0 10px 20px rgba(247, 81, 92, 0.2);
  color: var(--primary-accent);
  background: transparent;
  transform: translateY(-3px);
}

.bazaar-thanks-secondary-btn {
  border: 2px solid var(--text-color);
  color: var(--text-color);
  background: transparent;
}

.bazaar-thanks-secondary-btn:hover {
  box-shadow: 0 10px 20px rgba(40, 42, 48, 0.2);
  color: white;
  background: var(--text-color);
  transform: translateY(-3px);
}

.bazaar-thanks-social p {
  margin-bottom: 1rem;
  color: var(--secondary-text-color);
}

.bazaar-thanks-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.bazaar-thanks-social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-color);
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.bazaar-thanks-social-link:hover {
  box-shadow: 0 10px 20px rgba(247, 81, 92, 0.2);
  color: white;
  background: var(--primary-accent);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .bazaar-thanks-section {
    padding: 100px 0 40px;
  }

  .bazaar-thanks-content {
    padding: 2rem;
  }

  .bazaar-thanks-content h1 {
    font-size: 2rem;
  }

  .bazaar-thanks-details {
    flex-direction: column;
    gap: 1rem;
  }

  .bazaar-thanks-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .bazaar-thanks-primary-btn,
  .bazaar-thanks-secondary-btn {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .bazaar-thanks-content {
    padding: 1.5rem;
  }

  .bazaar-thanks-content h1 {
    font-size: 1.8rem;
  }

  .bazaar-thanks-message {
    font-size: 1rem;
  }

  .bazaar-thanks-icon {
    font-size: 3rem;
  }

  .bazaar-thanks-detail {
    font-size: 0.9rem;
  }
}

