/* ===============================
   💰 VELVET COINSHOP — Refined (no animation)
   =============================== */

.client-coinshop {
  color: var(--velvet-text, #f5f5f5);
  padding: 60px 30px;
  max-width: 1240px;
  margin: 0 auto;
}

/* ===== TÍTULO ===== */
.client-coinshop .dash-heading {
  font-family: "Playfair Display", serif;
  color: var(--gold, #f1c451);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 1.8rem;
}

/* ===== SALDO ===== */
.client-coinshop .coin-balance {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #f0ca32;
  border-radius: 10px;
  padding: 8px 16px;
  box-shadow: 0 0 12px rgba(240, 202, 50, 0.3);
  font-weight: 600;
  color: #ffd700;
  margin: 1rem auto;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}

/* ===== GRID ===== */
.client-coinshop .coinshop-packs {
  padding-top: 1.5rem;
}
.client-coinshop .coinpack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr)); /* sempre até 2 colunas */
  gap: 1.8rem;
  margin-top: 1rem;
  justify-items: center;
}

@media (max-width: 550px) {
  .client-coinshop .coinpack-grid {
    grid-template-columns: repeat(1, minmax(240px, 1fr)); /* mobile = 1 coluna */
  }
}

/* ===== CARD ===== */
.client-coinshop .coinpack-card {
  position: relative;
  background: var(--surface, #111);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 16px;
  text-align: center;
  padding: 1.6rem 1rem 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.client-coinshop .coinpack-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold, #f0ca32);
  box-shadow: 0 0 20px rgba(240, 202, 50, 0.35);
}

/* ===== TAG DE BÔNUS ===== */
.client-coinshop .pack-tag {
  position: absolute;
  top: 10px;
  right: 12px;
  background: linear-gradient(90deg, #f0ca32, #b88a1f);
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 2px 8px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* ===== ÍCONE PRINCIPAL ===== */
.client-coinshop .coinpack-card .coin-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.6rem;
  border-radius: 50%;
  background: radial-gradient(circle at center, #ffe98a 0%, #d4a51f 80%);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #000;
  font-size: 1.2rem;
  text-shadow: none;
}

/* ===== VALOR ===== */
.client-coinshop .coinpack-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold, #f1d27a);
  margin: 0.4rem 0;
}

.client-coinshop .coinpack-card .bonus {
  font-size: 0.9rem;
  color: var(--text-muted, #aaa);
}
.client-coinshop .coinpack-card .bonus strong {
  color: var(--gold, #f0ca32);
}

/* ===== BOTÃO DE COMPRA ===== */
.client-coinshop .btn-buy {
  display: inline-block;
  background: linear-gradient(90deg, #f0ca32, #b88a1f);
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-size: 0.95rem;
}
.client-coinshop .btn-buy:hover {
  background: linear-gradient(90deg, #ffd700, #e0a619);
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.4);
}

/* ===== HISTÓRICO ===== */
.client-coinshop .coinshop-history {
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  margin-top: 2.4rem;
  padding-top: 1.2rem;
}

.client-coinshop .coin-history-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.client-coinshop .coin-history-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.05);
  color: #e5e5e5;
}
.client-coinshop .coin-history-list li i {
  color: #f0ca32;
}
.client-coinshop time {
  font-size: 0.8rem;
  color: #888;
}
/* =======================================================
   💎 FIX — REMOVE GOLD ANIMATION FROM COINSHOP CARDS
   ======================================================= */

/* Remove qualquer animação residual */
.client-coinshop *,
.client-coinshop *::before,
.client-coinshop *::after {
  animation: none !important;
  transition: none !important;
  background-size: auto !important;
  background-position: center !important;
}

/* Define fundo fixo para os cards */
.client-coinshop .coinpack-card {
  background: radial-gradient(circle at top center, rgba(40,40,20,0.6) 0%, rgba(10,10,10,1) 90%) !important;
  background-attachment: fixed;
}

/* Mantém o dourado nos detalhes, mas sem brilho animado */
.client-coinshop .btn-buy {
  background: linear-gradient(180deg, #f0ca32 0%, #b88a1f 100%) !important;
  border: 1px solid #f0ca32 !important;
  color: #1a1a1a !important;
  box-shadow: 0 0 10px rgba(240,202,50,0.25);
}

.client-coinshop .btn-buy:hover {
  background: linear-gradient(180deg, #ffd84d 0%, #c29527 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(240,202,50,0.35);
}

/* Remove qualquer brilho animado de ícones ou bordas */
.client-coinshop .coinpack-card::before,
.client-coinshop .coinpack-card::after {
  display: none !important;
  background: none !important;
  content: none !important;
}


/* ===== LIGHT THEME ===== */
html[data-theme="light"] .client-coinshop .coinpack-card {
  background: #fffef9;
  border: 1px solid #f1e7b8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .client-coinshop .coinpack-card h3 {
  color: #b38b2b;
}
html[data-theme="light"] .client-coinshop .btn-buy {
  background: linear-gradient(90deg, #f1d27a, #b88a1f);
  color: #222;
}
html[data-theme="light"] .client-coinshop .btn-buy:hover {
  filter: brightness(1.05);
}
html[data-theme="light"] .client-coinshop .pack-tag {
  box-shadow: none;
}
