* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  margin: 0;
  min-height: 100vh;          /* ocupa todo el alto visible */
  display: flex;              /* flexbox para centrar */
  justify-content: center;    /* centra horizontal */
  align-items: center;        /* centra vertical */
  background: #f3f4f6;        /* color de fondo */
  font-family: "Quicksand", sans-serif;
}

.product {
  max-width: 400px;
  margin: 40px auto;
  border-radius: 16px;
  overflow: hidden;           /* esquinas redondeadas para las dos secciones */
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  text-align: center;
}

.product-top {
  background: #ff2945;      /* rojo como referencia */
  padding: 40px 20px;       /* espacio interno */
}

.product-top img {
  max-width: 220px;
  height: auto;
}

.product-bottom {
  background: #0b1a2d;   /* azul oscuro como referencia */
  color: #fff;
  padding: 30px 20px;
  font-size: 12px;
}

.product-title {
  margin: 0 0 16px 0;
  font-size: 22px;
  font-weight: bold;
}

.tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  border: 1px solid #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.section-title {
  font-size: 14px;
  margin: 20px 0 8px;
  font-weight: bold;
  text-transform: uppercase;
}

.product-price {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px;
}

.btn {
  background: #ff2744;
  border: none;
  border-radius: 1.6rem;
  color: #fff;
  padding: 12px 20px;
  font-weight: bold;
  cursor: pointer;
}

.btn:hover {
  background: #ff203d;
}
