/* Общие стили */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #fffafc;
  color: #333;
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
}

section {
  padding: 40px 20px;
  text-align: center;
}

section > p,
section > ul {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Шапка hero */
.hero {
  background: linear-gradient(to right, #ffd6e8, #fff);
  text-align: center;
  padding: 100px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.hero h1 {
  font-size: 2.5rem;
}

/* Анимация появления */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Товары */
.products ul {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.products li {
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid #f0dbe2;
  display: flex;
  justify-content: space-between;
}

.products span {
  font-weight: bold;
  color: #d04e8c;
}

/* Цены */
.price-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background-color: #fff0f6;
  border-radius: 16px;
  padding: 20px;
  width: 150px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card h3 {
  color: #d04e8c;
}

/* Адаптивность */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .card {
    width: 100%;
    max-width: 300px;
  }
}
