/* ============================================================
   RAADIN SHABAKEH — Products Page Styles
   ============================================================ */

/* ── Filter Bar ───────────────────────────────────────────── */
.filter-bar-wrap {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bg-border);
  padding: 16px 0;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid var(--bg-border);
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0A0E1A;
}

/* ── Product Grid ─────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(212, 168, 67, 0.25);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.product-card.hidden {
  display: none;
}

.product-card .card-img {
  height: 180px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.product-card .card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10, 14, 26, 0.5) 100%);
}

.product-card .cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.product-card .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-card .specs {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.product-card .card-footer {
  display: flex;
  gap: 10px;
}

.product-card .card-footer .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.8125rem;
  padding: 9px 14px;
}

/* ── Services Alternating ─────────────────────────────────── */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 56px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-row--flip {
  direction: rtl;
}

.service-row--flip > * {
  direction: ltr;
}

.service-visual {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--blue-glow), transparent 70%);
}

.service-visual.gold-glow::before {
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.1), transparent 70%);
}

.service-text .text-eyebrow {
  margin-bottom: 16px;
}

.service-text h3 {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.service-text p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.service-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-text ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.service-text ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Custom Order CTA ─────────────────────────────────────── */
.custom-cta {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}

.custom-cta::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(var(--gold-alpha), transparent 70%);
}

.custom-cta h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.custom-cta p {
  font-size: 1rem;
  max-width: 500px;
}

.custom-cta .cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
