body {
  background-color: #FFF8F0;
  font-family: sans-serif;
  color: #5C4033;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 3rem auto;
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

h1 {
  text-align: center;
  color: #5C4033;
  margin-bottom: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 1rem;
  font-weight: bold;
  color: #8A7E72;
}

input,
textarea {
  padding: 0.6rem;
  border: 1px solid #C084FC;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 0.3rem;
  background-color: #FFF3B0;
}

textarea {
  resize: vertical;
}

.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  margin-top: 0.5rem;
}

.rating input {
  display: none;
}

.rating label {
  font-size: 2rem;
  color: #F7A4A4;
  cursor: pointer;
  transition: color 0.3s;
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
  color: #C084FC;
}

button {
  margin-top: 2rem;
  padding: 0.8rem;
  background-color: #A3D9A5;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #5C4033;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #8ccf8f;
}

@media (max-width: 600px) {
  .container {
    margin: 1rem;
    padding: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  button {
    width: 100%;
  }
}
/* Footer */
/* Footer */
.footer-banaco {
  background-color: #FFF3B0;
  color: #5C4033;
  font-family: 'Segoe UI', sans-serif;
  padding: 2rem 1rem 1rem;
  margin-top: 3rem;
  border-top: 3px dashed #C084FC;
}

.footer-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
  gap: 1rem;
  font-family: 'Lato', sans-serif;


}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.logo-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-footer img {
  width: 150px;
  height: auto;
  border-radius: 50%;
  border: 2px solid #F7A4A4;
  background-color: #fff;
}

.logo-footer p {
  font-weight: bold;
  margin: 0;
  font-size: 1.1rem;
  color: #5C4033;
}

.logo-footer span {
  font-weight: normal;
  font-size: 0.9rem;
  display: block;
  color: #8A7E72;
}

.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a, .footer-social a{
  text-decoration: none;
  color: #5C4033;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #C084FC;
}

.footer-social img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #8A7E72;
}

/* Estilo para el contador del carrito */
.contador-carrito {
  background-color: #C084FC; 
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 6px;
  display: inline-block;
  min-width: 20px;
  text-align: center;
}