/* =========================
   ESTILOS GENERALES
========================= */
body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin:0;
  padding:0;
}

.logo img {
  width: 1400px;
  max-width: 100%;
  display: block;
  margin: 0 auto;

transform:scaleX(1.0)scaleY(0.75);
transform-origin: center top;
}

.buscador,
.categorias-dropdown {
  text-align: center;
  margin-bottom: 20px;
}

.buscador input,
.categorias-dropdown select {
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 280px;
  max-width: 90%;
}

/* =========================
   CATÁLOGO EN LISTA
========================= */
.catalogo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* =========================
   PRODUCTO
========================= */
.producto {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  padding: 12px 16px;

  width: 100%;
  max-width: 1000px;

  display: flex;
  align-items: center;
  gap: 18px;

  transition: transform 0.2s, background 0.2s;
}

.producto:hover {
  background: #f2f2f2;
  transform: translateY(-2px);
}

/* =========================
   IMAGEN (PUNTO MEDIO ??)
========================= */
.producto img {
  width: 150px; /* ?? aquí está la magia */
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

/* =========================
   INFO
========================= */
.producto .info {
  flex: 1;
}

.producto h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: #111;
}

.producto .precio {
  font-weight: bold;
  color: #333;
  font-size: 15px;
}

/* =========================
   ACCIONES
========================= */
.producto .acciones {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

input.cantidad {
  width: 65px;
  padding: 4px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* =========================
   BOTONES
========================= */
.producto button {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  width: 130px;
  font-size: 14px;
}

.producto button:hover {
  background: #e65c00;
}

/* =========================
   CARRITO
========================= */
#carrito {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 15px;
  max-width: 500px;
  margin: 20px auto;
}

#carrito ul {
  list-style: none;
  padding: 0;
}

#carrito li {
  margin-bottom: 6px;
}

#carrito button {
  background: #009900;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  width: 100%;
  font-size: 15px;
}

#carrito button:hover {
  background: #007700;
}

/* =========================
   BOTONES FLOTANTES
========================= */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 80px;
  z-index: 1000;
}

#carrito-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  cursor: pointer;
  z-index: 1001;
}

.whatsapp-float img,
#carrito-flotante img {
  width: 100%;
  height: 100%;
}

#contador-carrito {
  background: red;
  color: white;
  border-radius: 50%;
  padding: 3px 7px;
  font-size: 12px;
  position: absolute;
  top: -6px;
  right: -6px;
}

/* =========================
   POPUP IMAGEN
========================= */
#img-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

#img-popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}


/* =========================
   SECCIÓN CONTACTO
========================= */
.seccion-contacto {
  background: #fff;
  margin-top: 40px;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.seccion-contacto h2 {
  margin-bottom: 20px;
  font-size: 22px;
}

.seccion-contacto p {
  margin: 8px 0;
  font-size: 15px;
  color: #333;
}

.btn-wsp {
  display: inline-block;
  margin-top: 15px;
  background: #25d366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn-wsp:hover {
  background: #1ebc57;
}

/* BOTÓN CONTACTO ARRIBA */
.btn-contacto {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.btn-contacto:hover {
  background: #000;

.buscador-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.search {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.btn-contacto {
  padding: 10px 16px;
  background: #ff5a3c;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.btn-contacto:hover {
  background: #e14c33;
}

}