

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fffafc;
  color: #df0c75;
  margin: 0;
  padding: 0;
  text-align: center;
}


header {
  background-color: #f8a5c2;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 0 0 20px 20px;
}

header h1 {
  color: crimson;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

header h2 {
  text-align: center;
  color: #d46a8c;
  margin-top: 30px;
}

nav {
  text-align: center;
  margin: 20px 0;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #b33951;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff5fa2;
}


section {
  background: white;
  margin: 30px auto;
  padding: 20px;
  border-radius: 15px;
  width: 80%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}


img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12%;
  width: 200px;
  height: 200px;
}


button {
  background-color: deeppink;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.5em 1.5em;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background-color: #ff70b8;
  transform: scale(1.05);
}

h2 {
  color: mediumvioletred;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h3 {
  color: darkorchid;
  font-family: 'Times New Roman', Times, serif;
}


.productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 20px;
  padding: 10px;
}

.producto {
  background: #fff;
  border: 2px solid #f7c6d0;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.producto:hover {
  transform: scale(1.05);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

.producto img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}

.precio {
  display: inline-block;
  margin-top: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #a44;
  background: #f7e1eb;
  padding: 5px 10px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .productos {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    justify-items: center;

  .producto {
    margin: 0 auto; 
  }

  .producto img {
    width: 70px;
    height: 80px;
  }

  .producto h3 {
    font-size: 16px;
  }

  .producto p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .productos {
    grid-template-columns: 1fr;
    justify-items: center; 
  }

  .producto {
    padding: 12px;
    margin: 0 auto; 
  }

  .producto img {
    width: 70px;
    height: 70px;
  }

  .producto h3 {
    font-size: 15px;
  }
}
















footer {
  text-align: center;
  padding: 30px 10px;
  background-color: #fff5f8;
}

.footer-container {
  display: inline-block;
  background: linear-gradient(135deg, #ffe6f1, #f8a5c2);
  color: #6a0049;
  padding: 20px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-top: 20px;
}

.footer-container p {
  margin: 5px 0;
  font-size: 15px;
}















