/* ============================================
   Product filter chips (jump nav)
   ============================================ */
.product-jump {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.product-jump a {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  color: var(--grey-400);
  font-size: 13.5px;
  font-weight: 600;
  transition: 0.2s;
}
.product-jump a:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================
   Product overview grid
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card { overflow: hidden; }
.product-card .portfolio-thumb { height: 150px; }
.product-card .portfolio-body h3 { font-size: 17px; margin-top: 10px; }
.product-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 14px;
}
.product-tags span {
  font-size: 11px;
  color: var(--grey-400);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 5px 11px;
}
.product-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold);
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Spotlight sections (flagship products) —
   reuses .service-block / .service-block-grid / .mini-dash / .feature-list
   ============================================ */
.spotlight-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
}

/* Map mockup — delivery / distribution routes */
.mock-map {
  position: relative;
  height: 150px;
  background: var(--black-soft);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
}
.mock-map svg { width: 100%; height: 100%; }
.mock-map .map-pin {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,184,0,0.18);
}

/* Invoice / QR mockup — FBR & ZATCA compliance, transport bilty */
.mock-invoice {
  background: var(--black-soft);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  gap: 16px;
}
.mock-invoice-lines { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.mock-invoice-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.mock-invoice-line.w60 { width: 60%; }
.mock-invoice-line.w80 { width: 80%; }
.mock-invoice-line.w40 { width: 40%; }
.mock-invoice-line.gold { background: var(--gold); opacity: 0.6; }
.mock-qr {
  width: 64px; height: 64px;
  flex-shrink: 0;
  border-radius: 6px;
  background:
    conic-gradient(var(--white) 0 25%, transparent 0 50%, var(--white) 0 75%, transparent 0) top left / 20px 20px,
    conic-gradient(transparent 0 25%, var(--white) 0 50%, transparent 0 75%, var(--white) 0) top right / 20px 20px,
    conic-gradient(var(--white) 0 25%, transparent 0 50%, var(--white) 0 75%, transparent 0) bottom left / 20px 20px,
    conic-gradient(transparent 0 25%, var(--white) 0 50%, transparent 0 75%, var(--white) 0) bottom right / 20px 20px;
  background-repeat: no-repeat;
  padding: 6px;
  background-color: #111;
}

/* Gauge mockup — petrol pump */
.mock-gauge {
  display: flex;
  gap: 14px;
}
.gauge-item {
  flex: 1;
  background: var(--black-soft);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.gauge-ring {
  width: 56px; height: 56px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) calc(var(--pct,70) * 1%), rgba(255,255,255,0.08) 0);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.gauge-ring::before {
  content: '';
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--black-soft);
  position: absolute;
}
.gauge-ring span {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}
.gauge-item p { font-size: 11.5px; color: var(--grey-400); margin-top: 2px; }

/* Progress bars — construction */
.mock-progress { display: flex; flex-direction: column; gap: 12px; }
.progress-row span { display: flex; justify-content: space-between; font-size: 12px; color: var(--grey-400); margin-bottom: 6px; }
.progress-track { height: 8px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gold); border-radius: 999px; }

/* Storefront grid — ecommerce */
.mock-store { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mock-store-item {
  background: var(--black-soft);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.mock-store-item .swatch { height: 32px; border-radius: 5px; background: linear-gradient(135deg, var(--gold-dim), var(--gold)); opacity: 0.5; margin-bottom: 6px; }
.mock-store-item span { font-size: 10px; color: var(--grey-400); }
