body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, serif;
  background-color: #f6dce7;
  background-image: radial-gradient(#8a6f68 3px, transparent 3px);
  background-size: 28px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6f524b;
  padding: 20px;
  box-sizing: border-box;
}

.card {
  width: 90%;
  max-width: 430px;
  background: #fff8f4;
  border: 2px solid #8a6f68;
  border-radius: 28px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(111, 82, 75, 0.25);
}

.decoracion {
  font-size: 22px;
  margin-bottom: 10px;
}

h1 {
  font-size: 52px;
  margin: 0;
  color: #8a6f68;
}

h2 {
  font-size: 22px;
  margin-top: -5px;
  margin-bottom: 10px;
  color: #efb8cc;
  font-weight: normal;
}

/* FOTO CORAZÓN */

.foto-cumple {
  display: flex;
  justify-content: center;
  margin: 15px 0 5px;
}

.foto-cumple img {
  width: min(260px, 80vw);
  height: auto;

  filter: drop-shadow(
    0 8px 20px rgba(138, 111, 104, 0.25)
  );

  transition: transform 0.3s ease;
}

.foto-cumple img:hover {
  transform: scale(1.03);
}

.mini-texto {
  text-align: center;
  font-size: 14px;
  color: #8a6f68;
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.mensaje {
  font-size: 16px;
  line-height: 1.5;
}

.datos {
  background: #f6dce7;
  border-radius: 20px;
  padding: 15px;
  margin: 20px 0;
}

.datos p {
  margin: 8px 0;
}

.confirmar a,
button {
  display: inline-block;
  margin-top: 10px;
  background: #efb8cc;
  color: #6f524b;
  border: 2px solid #8a6f68;
  border-radius: 30px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  font-family: inherit;
}

button:hover,
.confirmar a:hover {
  background: #f4c8d9;
}

/* WISHLIST */

.regalos {
  margin-top: 20px;
  background: #f6dce7;
  border-radius: 20px;
  padding: 18px;
}

.oculto {
  display: none;
}

.grid-regalos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 15px;
}

.regalo {
  background: #fff8f4;
  border-radius: 18px;
  padding: 10px;
  border: 1px solid #8a6f68;
}

.regalo img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  border-radius: 14px;
}

.regalo span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.footer {
  margin-top: 25px;
  font-size: 18px;
}

/* RESPONSIVE */

@media (max-width: 480px) {

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 20px;
  }

  .mensaje {
    font-size: 15px;
  }

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

  .regalo img {
    height: 200px;
  }

}