/* ICC Online Shop — additive styles for live Firestore catalogue cards */

.product-grid.shop-grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.product-grid.shop-list-view {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.live-product-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 26px rgba(7, 26, 61, 0.07);
  min-width: 0;
}

.shop-grid-view .live-product-card {
  grid-template-columns: 1fr;
}

.live-product-media {
  position: relative;
  min-height: 150px;
  background: linear-gradient(145deg, #f8fafc, #eef4fb);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.live-product-media img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: contain;
  display: block;
}

.live-product-placeholder {
  font-size: 2.2rem;
  font-weight: 900;
  color: #94a3b8;
}

.live-product-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  background: rgba(7, 26, 61, 0.92);
  color: #fff;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.live-product-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.live-product-section {
  color: #64748b;
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.live-product-title {
  margin: 6px 0 5px;
  font-size: 1rem;
  line-height: 1.35;
  color: #071a3d;
  font-weight: 900;
}

.live-product-description {
  margin: 0;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.live-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.live-product-meta span {
  border-radius: 999px;
  padding: 4px 8px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.68rem;
  font-weight: 800;
}

.live-product-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 13px;
}

.live-product-price {
  color: #071a3d;
  font-size: 1.08rem;
  font-weight: 950;
}

.live-product-stock {
  color: #15803d;
  font-size: 0.7rem;
  font-weight: 850;
}

.live-product-stock.low { color: #b45309; }
.live-product-stock.out { color: #b91c1c; }

.live-add-button {
  min-height: 40px;
  border: 0;
  border-radius: 11px;
  background: #071a3d;
  color: #fff;
  padding: 0 13px;
  font-weight: 900;
  cursor: pointer;
}

.live-add-button:hover { background: #0f3d85; }
.live-add-button:disabled { opacity: 0.5; cursor: not-allowed; }

.live-empty,
.live-error,
.live-loading {
  grid-column: 1 / -1;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
  padding: 28px;
  text-align: center;
  color: #64748b;
  font-weight: 750;
}

.live-error {
  border-color: #fecaca;
  background: #fff7f7;
  color: #b91c1c;
}

.cart-line-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.cart-line-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.cart-line-copy { min-width: 0; }
.cart-line-copy strong { display: block; color: #071a3d; }
.cart-line-copy small { color: #64748b; }

.cart-line-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
}

.cart-line-controls button,
.cart-remove-button {
  border: 1px solid #cbd5e1;
  background: #fff;
  border-radius: 8px;
  min-width: 30px;
  min-height: 30px;
  font-weight: 900;
  cursor: pointer;
}

.cart-remove-button { color: #b91c1c; }

.live-order-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 13px;
  margin-top: 10px;
  background: #fff;
}

.live-order-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.live-order-card strong { color: #071a3d; }
.live-order-card p { margin: 7px 0 0; color: #64748b; font-size: 0.82rem; line-height: 1.45; }

.live-order-status {
  border-radius: 999px;
  padding: 5px 8px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .live-product-card { grid-template-columns: 105px minmax(0, 1fr); padding: 10px; }
  .shop-grid-view .live-product-card { grid-template-columns: 1fr; }
  .live-product-media { min-height: 110px; }
  .live-product-bottom { align-items: stretch; flex-direction: column; }
  .live-add-button { width: 100%; }
}
