/* ======== Fondo general ======== */
body {
  background-color: #fff; /* tono beige/amarillo de fondo */
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

/* ======== Título principal ======== */
#Elaborados h1.h1.p1 {
  text-align: center;
  font-size: 2rem;
  margin: 40px 0;
  text-transform: uppercase;
  color: #333;
}

/* ======== Tarjetas de producto ======== */
.product-wrapper {
  padding: 20px;
  margin: 20px auto;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  color: #000; /* texto oscuro */
}

/* Intercalado de colores */
.product-wrapper:nth-child(odd) {
  background-color: #f7e5a0; /* ej. #d9f2d9 */
}

.product-wrapper:nth-child(even) {
  background-color: #f7e5a0; /* ej. #f2e0c9 */
}

/* ======== Distribución interna ======== */
.product-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.product-info {
  flex: 1 1 55%;
  padding: 10px;
}

.product-info h1 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.product-info .content p {
  margin: 5px 0;
  line-height: 1.5;
}

.price {
  font-weight: bold;
  font-size: 1.3rem;
  margin-top: 12px;
}

/* Imagen */
.product-image {
  flex: 1 1 35%;
  text-align: center;
}

.product-image img {
  max-width: 220px;
  width: 100%;
  border-radius: 10px;
  height: auto;
}

/* Imagen a la izquierda */
.product-image.left {
  order: -1;
}

/* ======== Botón final ======== */
.button-container {
  text-align: center;
  margin: 40px 0;
}

.pedido-button {
  background-color: #333;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.pedido-button:hover {
  background-color: #555;
}

/* =========== RESPONSIVE DESIGN =========== */

/* --- Tablets y pantallas medianas --- */
@media (max-width: 1024px) {
  .product-container {
    flex-direction: column;         /* apila la info e imagen */
    text-align: center;
  }
  .product-info, .product-image {
    flex: 1 1 100%;
    padding: 10px 0;
  }
  .product-image.left {
    order: 0;                       /* la imagen vuelve arriba */
  }
  .product-image img {
    max-width: 250px;
  }
}

/* --- Móviles grandes (pantallas <768px) --- */
@media (max-width: 768px) {
  #Elaborados h1.h1.p1 {
    font-size: 1.6rem;
  }
  .product-info h1 {
    font-size: 1.2rem;
  }
  .price {
    font-size: 1.1rem;
  }
  .product-wrapper {
    padding: 15px;
    margin: 15px;
  }
}

/* --- Móviles pequeños (<480px) --- */
@media (max-width: 480px) {
  #Elaborados h1.h1.p1 {
    font-size: 1.4rem;
    margin: 25px 0;
  }
  .product-info h1 {
    font-size: 1rem;
  }
  .product-image img {
    max-width: 200px;
  }
  .price {
    font-size: 1rem;
  }
  .pedido-button {
    width: 90%;
    font-size: 0.9rem;
  }
}
