body {
    font-family: satoshi, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff8f0;
    color: #333;
}

header {
    background: #000000;
    color: white;
    padding: 40px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background: #ffffff;
    /* Fondo blanco */
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    /* Mayúsculas */
    padding: 15px 10px;
    display: inline-block;
}

nav ul li a:hover {
    background-color: #5de79b;
    color: #fff;
}

main {
    padding: 40px 20px;
    text-align: center;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Botón flotante de WhatsApp */
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
}

.comentarios {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.comentarios h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #6b4c35;
}

.comentario {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f7f0e8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.comentario p {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}

.comentario .estrellas {
    color: gold;
    font-size: 20px;
    margin: 0;
}

.comentario strong {
    font-weight: bold;
    color: #6b4c35;
}

.icon-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.icon-bar a {
    color: #333;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
}

.icon-bar a:hover {
    color: #6b4c35;
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-content .close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

.extra-options {
    margin-top: 10px;
    text-align: center;
}

.extra-options a {
    color: #6b4c35;
    text-decoration: none;
    font-size: 0.9rem;
}

.logo-container {
    text-align: left;
    
}

.logo, .footer-logo {
    height: 100px;
    width: auto;
    display: block;
    margin-bottom: 10px;
    border-radius: 50%;
    overflow: hidden;
}

.estrellas-select {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    font-size: 1.2em;
    gap: 4px;
}

.estrellas-select label {
    cursor: pointer;
}

.estrellas-select input[type="radio"] {
    display: none;
}

.estrellas-select input[type="radio"]+span {
    color: gold;
}

.quienes-somos {
    background: #fdfdfd;
    padding: 40px 20px;
    text-align: center;
}

.productos-destacados {
    padding: 40px 20px;
    background: #f5f5f5;
    text-align: center;
}

.galeria-productos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.producto {
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    width: 280px;
    height: 500px;
    /* Altura fija para mantener proporción */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.producto img {
    height: 250px;
    /* Tamaño uniforme de imagen */
    width: 100%;
    object-fit: contain;
    /* Mantiene proporción sin deformar */
    border-radius: 8px;
    margin-bottom: 15px;
}

.producto h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
}

.producto p {
    font-size: 15px;
    color: #555;
    flex-grow: 1;
}
.footer {
  background-color: #444;
  color: #f0f0f0;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 200px;
  margin: 10px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-social a {
  display: inline-block;
  margin: 10px 10px 0 0;
  font-size: 18px;
  color: #fff;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

.newsletter input {
  padding: 8px;
  width: 100%;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
}

.newsletter button {
  padding: 8px 20px;
  background-color: #ccc;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}
.carrito-link {
    position: relative; /* Contenedor para el contador */
    display: inline-block;
}

#contador-carrito {
    position: absolute;
    top: -5px; /* Ajusta la posición vertical */
    right: -10px; /* Ajusta la posición horizontal */
    background-color: #5de79b; /* Color del círculo */
    color: #000;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    padding: 3px 6px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
