/* ============================================================
   BULLZ EYE BILLIARDS — Products Page Styles
   ============================================================ */

.products-page { padding-top: calc(var(--nav-h) + 60px); padding-bottom: 100px; }

/* Filter Tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.filter-tab {
  padding: 8px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover { border-color: rgba(212,168,67,0.4); color: var(--gold); }
.filter-tab.active { background: var(--gold); border-color: var(--gold); color: #000; font-weight: 600; }

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Product Card (shared with home.css for featured products) */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.product-card:hover {
  border-color: rgba(212,168,67,0.45);
  box-shadow: 0 0 30px rgba(212,168,67,0.12);
  transform: translateY(-4px);
}

.product-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #0a0a0a;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}

.product-badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 1;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  padding: 4px 10px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card-body { flex: 1; display: flex; flex-direction: column; padding: 1.75rem; }
.product-card-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.product-card:hover h3 { color: var(--gold); }
.product-card-body .desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.product-specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.product-specs li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.btn-product-quote {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--gold);
  color: #000;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-product-quote:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 16px rgba(212,168,67,0.3);
}

/* No results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 0;
  color: var(--muted);
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .product-grid { grid-template-columns: 1fr; } }
