/* Portal shop overlay — shared (Gomoku / Pyatak / …) */

.portal-shop-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  flex-direction: column;
  background: #12352c;
  color: #f5f0e6;
  padding: 10px 12px 14px;
  box-sizing: border-box;
}

.portal-shop-panel.open {
  display: flex;
}

.portal-shop-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex: 0 0 auto;
  margin-bottom: 8px;
}

.portal-shop-bar h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffe08a;
}

.portal-shop-sub {
  margin: 4px 0 0;
  font-size: 0.82rem;
  opacity: 0.85;
}

.portal-shop-close {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(245, 240, 230, 0.35);
  background: transparent;
  color: #f5f0e6;
  font-weight: 700;
  cursor: pointer;
}

.portal-shop-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.portal-shop-table {
  width: 100%;
  border-collapse: collapse;
}

.portal-shop-table thead th {
  position: sticky;
  top: 0;
  background: #164536;
  z-index: 1;
  text-align: left;
  padding: 8px 6px;
  font-size: 0.78rem;
  color: #ffe08a;
}

.portal-shop-table th.col-price,
.portal-shop-table td.col-price {
  text-align: center;
  white-space: nowrap;
}

.portal-shop-table th.col-buy,
.portal-shop-table td.col-buy {
  text-align: right;
  width: 5.5rem;
}

.portal-shop-row td {
  padding: 10px 6px;
  border-bottom: 1px solid rgba(245, 240, 230, 0.12);
  vertical-align: middle;
}

.portal-shop-row.rarity-common {
  box-shadow: inset 3px 0 0 #8a9199;
}
.portal-shop-row.rarity-uncommon {
  box-shadow: inset 3px 0 0 #3d9e5c;
}
.portal-shop-row.rarity-rare {
  box-shadow: inset 3px 0 0 #3b82f6;
}
.portal-shop-row.rarity-epic {
  box-shadow: inset 3px 0 0 #a855f7;
}
.portal-shop-row.rarity-legendary {
  box-shadow: inset 3px 0 0 #e6b422;
}

.portal-shop-title {
  font-weight: 700;
  display: block;
}

.portal-shop-kind {
  display: block;
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 2px;
}

.portal-shop-price {
  font-weight: 800;
  color: #ffe08a;
}

.portal-shop-price .rub {
  margin-left: 2px;
  font-size: 0.85em;
}

.portal-shop-buy {
  min-height: 40px;
  padding: 6px 12px;
  border: none;
  border-radius: 10px;
  background: #c9a227;
  color: #1a1408;
  font-weight: 800;
  cursor: pointer;
}

.portal-shop-buy:disabled {
  opacity: 0.55;
  cursor: wait;
}

.portal-shop-tip {
  flex: 0 0 auto;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(245, 240, 230, 0.18);
  font-size: 0.85rem;
  line-height: 1.35;
  opacity: 0.9;
}

.portal-shop-tip.active {
  border-color: rgba(230, 180, 34, 0.45);
  opacity: 1;
}

.portal-shop-empty {
  padding: 24px;
  text-align: center;
  opacity: 0.8;
}
