* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background: #fff7df;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(120deg, #fff6a8 0%, #ffd5bc 38%, #ff9feb 100%);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: bold;
  color: #f389d8;
  text-shadow: 0 1px 8px rgba(255,255,255,.5);
}

.links {
  display: flex;
  gap: 20px;
}

.links a,
.socials a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.hero-content {
  max-width: 950px;
  margin: 160px auto 0;
  text-align: center;
}

.tagline {
  font-size: 20px;
  margin-bottom: 38px;
}

h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 400;
  color: #d56cf2;
  margin-bottom: 28px;
}

.subtitle {
  font-size: 22px;
  max-width: 680px;
  margin: 0 auto 34px;
  line-height: 1.5;
}

.button {
  display: inline-block;
  background: #ffffff;
  color: #d56cf2;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(201, 86, 190, .25);
}

.socials {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

main {
  background: linear-gradient(180deg, #fff7df, #ffe5f8);
  color: #8c4f7f;
}

.products,
.about,
.contact {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 28px;
  text-align: center;
}

h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 42px;
  color: #d56cf2;
  margin-bottom: 16px;
}

.section-text,
.about p,
.contact p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 36px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 36px;
}

.card {
  background: rgba(255,255,255,.75);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(201, 86, 190, .12);
}

.image-placeholder {
  height: 230px;
  border-radius: 22px;
  background: #ffffff;
  margin-bottom: 20px;
  border: 2px dashed #ffd2f2;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #c85fe1;
}

.card p {
  font-weight: bold;
  color: #a65ca0;
}

footer {
  text-align: center;
  padding: 28px;
  background: #ffa9ec;
  color: #ffffff;
}

@media (max-width: 800px) {
  .nav {
    flex-direction: column;
  }

  .links {
    font-size: 14px;
  }

  .hero-content {
    margin-top: 90px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .subtitle {
    font-size: 18px;
  }
}
