
/* ===== Perfil / menú (añadir al archivo de estilos del header) ===== */
.perfil-dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

/* Botón del icono */
.btn-perfil {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 32px;
  color: #222;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-perfil:focus { outline: none; box-shadow: 0 0 0 3px rgba(34,139,34,0.12); }

/* Menú: oculto por defecto */
.perfil-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 200px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 6px 0;
  list-style: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 1200;
}

/* Mostrar con la clase .show (controlado por JS) */
.perfil-menu.show { display: block; }

.perfil-menu li { margin: 0; padding: 0; }
.perfil-menu li a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background .12s;
}
.perfil-menu li a:hover { background: #f5f5f5; }

/* Separador */
.perfil-menu li hr { margin: 6px 0; border: none; border-top: 1px solid #eee; }

/* Estilo para logout (color rojo) */
.perfil-menu li a.logout { color: #d32f2f; font-weight: 600; }

/* Ajustes responsive */
@media (max-width: 576px) {
  .btn-perfil { font-size: 28px; }
  .perfil-menu { right: -6px; left: auto; min-width: 170px; }
}



.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.cart-icon {
  width: 35px;
  height: 35px;
  color: #222;  /* ícono oscuro */
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e60023;  /* rojo más moderno */
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  border-radius: 50%;
  padding: 4px 7px;
  line-height: 1;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* Carrito lateral siempre flotando arriba */
/* Cambiamos a .cart-sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 6px rgba(0,0,0,.2);
  transition: right 0.3s ease;
  padding: 20px;
  overflow-y: auto;
  z-index: 9999;
}
.cart-sidebar.open {
  right: 0;
}
.cart-sidebar form .btn {
  display: block;
  width: 100%;
  background: #4d5d35;   /* mismo verde */
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

.cart-sidebar form .btn:hover {
  background: #3c482a;   /* verde más oscuro al pasar el mouse */
}

   .cart-item { display:flex; margin-bottom:15px; }
    .cart-item img { width:60px; height:60px; margin-right:10px; object-fit:cover; }
    .cart-item-desc { font-size:13px; color:#666; }
.cart-sidebar .btn {
  display: block;
  background: #4d5d35;
  color: #fff !important;  /* 🔹 fuerza blanco */
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

.cart-sidebar .btn:hover {
  background: #3a452a;
}

/* Aquí tu CSS existente, más el botón eliminar */
.btn-eliminar { background:none;border:none;font-size:20px;cursor:pointer;color:#e60023;margin-top:5px;transition:transform .2s,color .2s; }
.btn-eliminar:hover { color:#ff0000; transform:scale(1.2); }


