/* 🌐 Base */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #f9fafb;
  color: #333;
}

/* 🔷 Encabezado */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #4b5563;
  padding: 1rem 2rem;
  color: white;
  position: relative;
}

.logo-titulo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 60px;
  border-radius: 50px;
}

.centro {
    margin-left: 7px;
    width: 200px;    
    height: 60px;
    border-radius: 5px;
}

nav h1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  margin: 0;
}

/* 🔸 Menú hamburguesa */
.hamburger {
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.hamburger {
    margin-left: auto;
    padding-right: .75rem;
}

.menu-dropdown {
  position: absolute;
  top: 100%;
  right: 80px;
  background: #374151;
  border-radius: 10px;
  padding: 1rem;
  display: none;
  flex-direction: column;
  z-index: 10;
}

.menu-dropdown a {
  color: white;
  text-decoration: none;
  margin-bottom: 1.6rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.menu-dropdown a:hover {
  color: #fbbf24;
}

/* 🔸 QR + botón */
.qr-img {
  height: 60px;
  width: 60px;
  margin-bottom: 0.3rem;
}

/* 🧩 Productos */
.product-container1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

.product-item1 {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1rem;
}

.product-item1 img {
  width: 50px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}

.nombre {
  font-size: 1.2rem;
  color: #111827;
  margin: 0.5rem 0;
  word-wrap: break-word;
}

.destacado {
 color: blue; 
 text-align: center;
}

.descripcion {
  font-size: 1rem;
  color: #374151;
  word-wrap: break-word;
}

/* 🔻 Pie */
footer {
  padding: 1rem;
  background: #d1d5db;
  font-size: 0.9rem;
  text-align: center;
}

.opciones {
   background: red;  
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}
.opciones label {
  display: block;
  margin-bottom: 10px;
}

/* 📱 Responsive: 3 columnas en móvil */
@media (max-width: 600px) {
  .product-container1 {
    grid-template-columns: repeat(3, 1fr);
  }

  nav h1 {
    font-size: 1.4rem;
  }

  .menu-dropdown {
    right: 2rem;
  }
}