/* 会员页 · 灵物商城 */
.ms-shop {
  padding: clamp(32px, 5vw, 56px) 0 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ms-shop-head {
  text-align: center;
  margin-bottom: 28px;
}
.ms-shop-head h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: #f3e8ff;
  margin: 0 0 8px;
}
.ms-shop-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}
.ms-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.ms-shop-card.is-highlight {
  animation: msShopCardHighlight 2.4s ease;
  border-color: rgba(251, 191, 36, 0.55);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.35);
}

@keyframes msShopCardHighlight {
  0%, 100% { filter: none; }
  25%, 55% { filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.45)); }
}

.ms-shop-card {
  position: relative;
  border-radius: 20px;
  padding: 22px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(30, 20, 50, 0.85), rgba(69, 10, 10, 0.35));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.ms-shop-card::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.25), transparent 70%);
  pointer-events: none;
}
.ms-shop-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.ms-shop-name {
  margin: 0 0 4px;
  font-size: 1.15rem;
  color: #fde68a;
}
.ms-shop-price {
  margin: 0 0 14px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.ms-shop-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}
.ms-shop-desc {
  margin: -8px 0 12px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
}
.ms-shop-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ms-shop-qty label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}
.ms-shop-qty input {
  width: 72px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  text-align: center;
}
.ms-shop-buy {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  color: #1a0a2e;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ms-shop-buy:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(251, 191, 36, 0.35);
}
.ms-shop-buy:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.ms-shop-wallet {
  text-align: center;
  margin-top: 18px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}
.ms-shop-wallet strong {
  color: #fbbf24;
}
