/* ========== Shop ========== */
.shop-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop-section {
  background: var(--bg-panel);
  border: 1px solid var(--border-panel);
  border-radius: 12px;
  padding: 14px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 2px 14px var(--card-shadow), var(--glass-inset);
}

.shop-section-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--accent-gold);
  margin-bottom: 10px;
  text-shadow: 0 0 8px var(--accent-gold-glow);
}

.shop-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* .shop-item* 已随商店「统一卡」重构删除：货架改用 .shop-cell/.shop-card（见 screens.css 商店区）。
   容器类 .shop-items 仍在用，保留于上方。 */

.shop-empty {
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  padding: 16px;
}

.shop-actions {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* Jokers in shop */
.shop-jokers {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.shop-joker {
  position: relative;
}

.sell-btn {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--accent-red-border);
  background: var(--accent-red-bg);
  color: var(--accent-red);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Noto Sans SC', sans-serif;
}

.sell-btn:hover {
  background: var(--accent-red);
  color: #fff;
}

/* Consumables */
.shop-consumable-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* 裸 .consumable-card/.consumable-icon/.consumable-name/.consumable-desc 已删除：
   商店「我的消耗品」改用 .shop-cell/.shop-card；对战托盘用 .blt-consumable*，
   图例弹窗用 .info-consumable-card（二者均仍在用，未受影响）。 */

/* Curses */
.shop-curses {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* 裸 .curse-card(.*) 及 .curse-icon/.curse-name/.curse-desc 已全部删除：
   攻击牌商店/持有改用 .shop-cell/.shop-card（见 shop.js renderCurseOffers/renderHeldCurses）。
   js/html 零引用（仅 info-overlay 的 .info-curse-desc 仍在用，属不同类，未受影响）。 */

/* Bottom */
.shop-bottom {
  text-align: center;
  padding: 10px 0;
}

/* Cursed notification toast */
.curse-toast {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-red-bg);
  border: 1px solid var(--accent-red-border);
  color: var(--accent-red);
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  z-index: 999;
  animation: curseToastIn 0.3s ease;
}

@keyframes curseToastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Responsive rules moved to mobile.css */
