/* --- Carrito --- */
#cart {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #49382f;
  color: white;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 1000;
  font-family: sans-serif;
}

#cart-details {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 20px;
  background: #fff8f0;
  color: #3e2c23;
  width: 300px;
  max-height: 400px;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  padding: 15px;
  z-index: 1000;
}

#cart-details button {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

#cart-details button:first-of-type {
  background-color: #49382f;
  color: white;
}

#clear-cart {
  background: transparent;
  color: #49382f;
  border: 1px solid #49382f;
}

/* --- Contadores --- */
.counter {
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  gap: 8px;
  margin-top: 8px;
}

.counter button {
  background-color: #49382f;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
}

.counter .count {
  min-width: 20px;
  text-align: center;
  font-weight: bold;
}

/* --- Grid de Productos --- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.item h3 a {
  text-decoration: none;
  color: #49382f;
  background-color: #f0e4d7;
  padding: 6px 12px;
  display: inline-block;
  margin-top: 8px;
  border-radius: 6px;
}

/* --- Responsive Layout --- */
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    text-align: center;
  }

  .logo-container img {
    width: 50%;
  }

  #cart, #cart-details {
    right: 10px;
    left: 10px;
  }

  #cart-details {
    width: calc(100% - 20px);
  }
}
