/* Reset di base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #eef1f4;
  color: #1a1a1a;

  /* Centra il contenuto orizzontalmente e verticalmente */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.product-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-bottom: 2rem;
}

.title {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive: smartphone */
@media (max-width: 480px) {
  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .product-image {
    max-width: 200px;
  }
}
