/* ══════════════════════════════════════════════
   SHOP SCREEN
══════════════════════════════════════════════ */
.shop-ether { display: flex; align-items: center; gap: 5px; font-size: 18px; color: var(--gold); }

.shop-body { flex: 1; overflow-y: auto; padding: 14px; }

.shop-section { margin-bottom: 22px; }
.shop-section-title {
  font-family: 'Press Start 2P'; font-size: 9px;
  color: var(--text); margin-bottom: 10px;
  padding-bottom: 5px; border-bottom: 1px solid var(--border);
}

.slot-buy-card {
  background: var(--bg3); border: 2px solid var(--border);
  padding: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.slot-buy-title { font-family: 'Press Start 2P'; font-size: 9px; color: var(--text); margin-bottom: 4px; }
.slot-buy-desc { font-size: 15px; color: var(--text-dim); line-height: 1.4; }

.btn-buy {
  background: none; border: 2px solid var(--gold);
  color: var(--gold); font-family: 'Press Start 2P'; font-size: 8px;
  padding: 8px 12px; cursor: pointer; white-space: nowrap;
  transition: all 0.15s; flex-shrink: 0;
}
.btn-buy:hover { background: rgba(255,215,0,0.1); }
.btn-buy:disabled { opacity: 0.4; cursor: not-allowed; }

.shop-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
@media (max-width: 380px) {
  .shop-items-grid { grid-template-columns: 1fr 1fr; }
}

.shop-item-card {
  background: var(--bg3); border: 2px solid var(--border);
  padding: 10px; position: relative;
  transition: all 0.15s; display: flex; flex-direction: column; gap: 5px;
}
.shop-item-card:hover:not(.locked) { border-color: var(--border2); transform: translateY(-1px); }
.shop-item-card.locked { opacity: 0.5; }
.shop-item-card.owned { border-color: var(--green); }

.owned-badge {
  position: absolute; top: 5px; right: 5px;
  font-size: 10px; color: var(--green); font-family: 'Share Tech Mono';
  background: rgba(0,255,136,0.1); padding: 1px 5px; border: 1px solid var(--green);
}
.shop-item-icon { font-size: 26px; }
.shop-item-name { font-family: 'Press Start 2P'; font-size: 6px; color: var(--text); line-height: 1.6; }
.shop-item-desc { font-size: 13px; color: var(--text-dim); line-height: 1.3; flex: 1; }
.shop-item-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 6px; border-top: 1px solid var(--border); padding-top: 7px;
}
.shop-item-cost { font-size: 15px; color: var(--gold); }
.shop-item-req { font-size: 11px; color: var(--text-dark); font-family: 'Share Tech Mono'; }