/* ───────────────────────────────────────────
   PANEL LATERAL DEL USUARIO  (desde la derecha)
   ─────────────────────────────────────────── */

.cliente-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: transform 0.4s ease;
  transform: translateX(100%);
  padding: 60px;
  overflow-y: auto;
  font-family: 'Arial', sans-serif;
}

.cliente-panel.open {
  transform: none;
}

/* Header del panel - mismo estilo que wishlist */
.cliente-header {
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -60px -60px 20px -60px;
  padding: 70px 60px 20px 60px;
}

#cliente-header-title,
.cliente-header h2 {
  font-size: 36px !important;
  font-weight: 400 !important;
  letter-spacing: -0.5px;
  color: #000;
  margin: 0;
  text-align: left;
  line-height: 1.2;
}

#close-cliente-panel {
  font-size: 28px;
  font-weight: 300;
  color: #000;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

#close-cliente-panel:hover {
  opacity: 0.6;
}


.logout-btn {
  display: inline-block;
  background: #000;
  color: white !important;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
}

.logout-btn:hover {
  opacity: 0.85;
}