/* RESET Y BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5e9f7;
  color: #3d0066;
  text-align: center;
}

/* ENCABEZADO */
header {
  background-color: #5b189a;
  color: white;
  padding: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.logo img {
  height: 70px;
  margin-right: 20px;
}

.titulo-color {
  display: flex;
  gap: 0.2rem;
  font-size: 2rem;
  font-weight: bold;
  flex-wrap: wrap;
  justify-content: center;
}

.letra {
  animation: colores 5s infinite;
}

.estilo1 { font-family: 'Chewy', cursive; }
.estilo2 { font-family: 'Montserrat', sans-serif; }
.estilo3 { font-family: 'Quicksand', sans-serif; }

@keyframes colores {
  0%   { color: #ff3c3c; }
  25%  { color: #ffa500; }
  50%  { color: #28a745; }
  75%  { color: #007bff; }
  100% { color: #800080; }
}

/* MENÚ */
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-left: 0;
}

nav ul li a {
  text-decoration: none;
  background-color: #7b3dbf;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-weight: bold;
  transition: background 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
}

nav ul li a:hover {
  background-color: #a55df0;
}

/* PRODUCTOS */
.productos {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.productos h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.productos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.producto {
  width: 250px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.producto:hover {
  transform: translateY(-5px);
}

.producto img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.producto h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}

.producto p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.producto button {
  background-color: #5b189a;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}

.producto button:hover {
  background-color: #7b3dbf;
}

/* CARRITO */
#carrito {
  background-color: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  margin: 3rem auto;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: left;
}

#carrito h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

#listaCarrito {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

#listaCarrito li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

#carrito p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

#procesarCompra {
  background-color: #5b189a;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
  display: block;
  margin: 0 auto;
}

#procesarCompra:hover {
  background-color: #7b3dbf;
}

/* FOOTER */
footer {
  background-color: #5b189a;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .productos-container {
    flex-direction: column;
    align-items: center;
  }

  .producto {
    width: 90%;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .titulo-color {
    justify-content: center;
  }

  .logo {
    flex-direction: column;
  }
}
