/* Estética dorada + utilidades del proyecto original. */

.glass-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gold-gradient {
  background-image: linear-gradient(to right, #d2a63d, #ead99d, #b8862d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-button {
  background-image: linear-gradient(to right, #b8862d, #9e6825);
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -10px rgba(87, 53, 29, 0.4);
}
.gold-button:hover {
  background-image: linear-gradient(to right, #d2a63d, #b8862d);
}

/* Scrollbar oculto */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Marquee del hero */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee { animation: marquee 30s linear infinite; }

/* Modal animado */
#product-modal.is-open { display: flex; }
.modal-anim {
  animation: modalIn 0.3s ease-out;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Micro-pop para botones */
.micro-pop { transition: transform 0.15s ease-out; }
.micro-pop:hover  { transform: scale(1.05); }
.micro-pop:active { transform: scale(0.95); }

/* Entrada al hacer scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal[data-reveal="left"]  { transform: translateX(-24px); }
.reveal[data-reveal="right"] { transform: translateX(24px); }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Fade-up para el hero */
.fade-up { animation: fadeUp 0.9s ease-out both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Cards del listado */
.product-card { transition: transform 0.4s ease, border-color 0.5s ease; }
.product-card:hover { transform: translateY(-8px); }

/* Navbar al hacer scroll */
#navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Chat */
#chat-window.is-open { display: flex; }

/* Spin para iconos */
.animate-spin { animation: spin 1s linear infinite; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
