/* themes/xgate/assets/css/prod-storegate.css */
/* Scoped Tier 3 CSS for StoreGate product page */

.store-visual {
  padding: 30px;
  min-height: 540px;
}
.pos-scene {
  border-radius: 28px;
  min-height: 392px;
  background:
    linear-gradient(180deg, rgba(7, 12, 28, .38), rgba(7, 12, 28, .88)),
    url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1200&q=80') center/cover;
  border: 1px solid rgba(255, 255, 255, .10);
  overflow: hidden;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.pos-panel {
  border-radius: 26px;
  background: rgba(5, 9, 22, .84);
  border: 1px solid rgba(255, 255, 255, .10);
  padding: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
}
.pos-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.pos-row strong {
  font-size: 13px;
  color: #fff;
}
.pos-row span {
  color: var(--muted2);
  font-size: 12px;
}
.pos-total {
  margin-top: 18px;
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 154, 82, .22), rgba(255, 102, 0, .10));
  border: 1px solid rgba(255, 102, 0, .18);
  color: #fff;
}
.stock-bars {
  display: grid;
  gap: 12px;
}
.stock-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(5, 9, 22, .76);
  border: 1px solid rgba(255, 255, 255, .09);
}
.stock-card strong {
  font-size: 13px;
  color: #fff;
}
.stock-card span {
  display: block;
  color: var(--muted2);
  font-size: 11px;
  margin-top: 4px;
}
.stock-bar {
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .12);
  margin-top: 10px;
  overflow: hidden;
}
.stock-bar div {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
}

@media(max-width: 880px) {
  .pos-scene {
    grid-template-columns: 1fr;
  }
}
