.shop-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-item .price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.shop-item .price .price-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
/* Shop tab styles */
#tab-shop .wallet-display {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 600;
  color: #00c6ff;
  text-shadow: 0 0 6px #00c6ff;
}

.shop-tabs {
  display: flex;
  gap: 8px;
  margin: 8px 0 12px;
}
.shop-tab {
  background: #141414;
  color: #e6f7ff;
  border: 1px solid #2a2a2a;
  padding: 10px 18px;
  min-width: 110px;
  text-align: center;
  letter-spacing: 0.5px;
  border-radius: 8px;
  cursor: pointer;
  text-shadow: 0 0 6px rgba(0,198,255,0.8);
}
.shop-tab.active {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 12px rgba(0,198,255,0.6);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.shop-item {
  background: #222;
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  box-shadow: 0 0 8px rgba(0,198,255,0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.shop-image-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: 8px;
  overflow: hidden;
  background: radial-gradient( circle at 30% 20%, rgba(0,198,255,0.15), rgba(0,0,0,0.4) );
  border: 1px solid rgba(0,198,255,0.25);
  margin: 6px 0 12px;
}
.shop-image-wrap img.shop-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.6));
}
.shop-item:hover .shop-image-wrap {
  box-shadow: 0 0 16px rgba(0,198,255,0.35);
  border-color: rgba(0,198,255,0.45);
}
.admin-controls {
  display: flex;
  gap: 6px;
}
.admin-btn {
  border: none;
  background: #2b2b2b;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
}
.admin-delete {
  background: #8b0000;
}
.admin-edit {
  background: #444;
}
.admin-upload {
  background: #006400;
}
.admin-add {
  background: #0066cc;
}
.shop-addbar {
  display: flex;
  gap: 8px;
  margin: 6px 0 12px;
}

.shop-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px #00c6ff;
}

.shop-item h4 {
  font-family: 'Orbitron', sans-serif;
  margin: 6px 0 6px;
  color: #00c6ff;
  text-align: center;
  font-size: 1rem;
}

.shop-item .price {
  font-weight: bold;
  margin: 6px 0;
  justify-content: center;
}
.shop-item .qty {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 6px;
  text-align: center;
}
.shop-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.category {
  text-align: center;
  font-size: 0.85rem;
  color: #bbb;
}
.badge-kit {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: #7a00ff;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(122,0,255,0.4);
}

/* Centered labels for other views (bank/garage/crates) if they share classes */
.bank-item .name,
.garage-item .name,
.crates-item .name {
  text-align: center;
}

.shop-item button {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
}

.shop-item button:hover {
  background: linear-gradient(135deg, #00eaff, #0099ff);
}
