/* ================================================================
   DreamyGlobes — Wishlist / Favoritos CSS v2
   ================================================================ */

/* ── Botón en tarjeta de producto (tienda/inicio) ── */
.prod-wish.dg-wish-btn {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  border: none !important;
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(8px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all .25s ease !important;
  z-index: 2 !important;
  padding: 0 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}
.prod-wish.dg-wish-btn:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}
.prod-wish.dg-wish-btn .wish-icon {
  width: 16px !important;
  height: 16px !important;
  color: #bbb !important;
  transition: all .25s ease !important;
  flex-shrink: 0 !important;
}
.prod-wish.dg-wish-btn.is-wished {
  background: rgba(229,57,53,0.08) !important;
}
.prod-wish.dg-wish-btn.is-wished .wish-icon {
  fill: #e53935 !important;
  color: #e53935 !important;
  stroke: #e53935 !important;
}
.prod-wish.dg-wish-btn.is-loading {
  opacity: 0.6 !important;
  pointer-events: none !important;
}

/* ── Botón en página de producto individual ── */
.btn-wish.dg-wish-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 24px !important;
  border-radius: 30px !important;
  border: 1.5px solid rgba(244,167,185,0.4) !important;
  background: rgba(255,255,255,0.8) !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #2D3070 !important;
  cursor: pointer !important;
  transition: all .25s ease !important;
}
.btn-wish.dg-wish-btn:hover {
  border-color: #F4A7B9 !important;
  background: rgba(244,167,185,0.08) !important;
}
.btn-wish.dg-wish-btn .wish-icon {
  width: 18px !important;
  height: 18px !important;
  color: #bbb !important;
  transition: all .25s ease !important;
  flex-shrink: 0 !important;
}
.btn-wish.dg-wish-btn.is-wished {
  border-color: rgba(229,57,53,0.3) !important;
  background: rgba(229,57,53,0.05) !important;
}
.btn-wish.dg-wish-btn.is-wished .wish-icon {
  fill: #e53935 !important;
  color: #e53935 !important;
  stroke: #e53935 !important;
}
.btn-wish.dg-wish-btn .wish-label { display: inline !important; }
.btn-wish.dg-wish-btn.is-wished .wish-label { display: none !important; }
.btn-wish.dg-wish-btn.is-wished::after {
  content: 'En favoritos' !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* ================================================================
   PÁGINA /FAVORITOS/
   ================================================================ */
.fav-page { min-height: 80vh; }
.fav-hero {
  text-align: center;
  padding: clamp(40px,6vw,72px) clamp(20px,5vw,56px) clamp(20px,3vw,32px);
  background: linear-gradient(135deg,rgba(244,167,185,0.15) 0%,rgba(255,255,255,0) 60%);
}
.fav-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px,5vw,54px);
  font-weight: 600;
  color: #2D3070;
  margin: 0 0 10px;
}
.fav-heart { color: #e53935; }
.fav-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: clamp(13px,1.5vw,16px);
  font-weight: 300;
  color: #6B7280;
  margin: 0;
}
.fav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(20px,4vw,48px) clamp(16px,5vw,56px);
}
.fav-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr)) !important;
  gap: clamp(16px,2vw,24px) !important;
}
.fav-count {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #6B7280;
  text-align: center;
  margin-top: 24px;
}
.fav-empty {
  text-align: center;
  padding: 60px 20px;
}
.fav-empty-icon { font-size: 52px; margin-bottom: 16px; }
.fav-empty h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px,3vw,30px);
  font-weight: 600;
  color: #2D3070;
  margin: 0 0 10px;
}
.fav-empty p {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #6B7280;
  margin: 0 0 24px;
}
.fav-btn-shop {
  display: inline-block;
  background: #2D3070;
  color: white !important;
  border-radius: 30px;
  padding: 13px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.fav-btn-shop:hover { background: #3D4A8A; transform: translateY(-1px); }
.fav-login-banner {
  text-align: center;
  margin-top: 24px;
  padding: 14px 20px;
  background: rgba(244,167,185,0.1);
  border-radius: 14px;
  border: 1px solid rgba(244,167,185,0.3);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: #6B7280;
}
.fav-login-banner a { color: #2D3070; font-weight: 700; text-decoration: none; }

/* Mi Cuenta — Favoritos card */
.dg-fav-card { border-color: rgba(229,57,53,0.15) !important; }
.dg-fav-card:hover { border-color: rgba(229,57,53,0.35) !important; }
