/* =======================================================
   KeraVit Tiles LLC – Products Page Stylesheet
   ======================================================= */

/* =====================================================
   PAGE HERO
   ===================================================== */
.pr-hero {
  position: relative;
  height: 60vh;
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.pr-hero-bg { position: absolute; inset: 0; z-index: 0; }
.pr-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.pr-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,24,18,0.3) 0%, rgba(22,24,18,0.88) 100%);
}
.pr-hero-container {
  position: relative; z-index: 2;
  padding-bottom: 60px;
}
.pr-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--fh); font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.5); margin-bottom: 18px;
}
.pr-breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--tr); }
.pr-breadcrumb a:hover { color: var(--p); }
.pr-breadcrumb i { font-size: 0.85rem; }
.pr-breadcrumb span { color: var(--p); }
.pr-hero-title {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--wh);
  margin-bottom: 16px;
}
.pr-hero-sub {
  font-size: 1rem; line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
}

/* Initial GSAP state */
.hero-el { opacity: 0; transform: translateY(24px); }

/* =====================================================
   FILTER BAR
   ===================================================== */
.pr-filter-wrap {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 12px;
}
.pr-filter-btn {
  font-family: var(--fh); font-size: 0.82rem; font-weight: 600;
  padding: 9px 22px;
  border: 1.5px solid var(--br);
  border-radius: 100px;
  background: transparent; color: var(--mu);
  cursor: pointer; transition: var(--tr);
  white-space: nowrap;
}
.pr-filter-btn:hover { border-color: var(--p); color: var(--p); }
.pr-filter-btn.active { background: var(--p); border-color: var(--p); color: var(--wh); }

.pr-count {
  font-family: var(--fh); font-size: 0.8rem; font-weight: 500;
  color: var(--mu); margin-bottom: 8px;
}

/* =====================================================
   NO RESULTS
   ===================================================== */
.pr-no-results {
  text-align: center; padding: 80px 20px; color: var(--mu);
}
.pr-no-results i { font-size: 2.5rem; color: var(--br); display: block; margin-bottom: 12px; }
.pr-no-results p { font-size: 0.9rem; }

/* =====================================================
   CATALOGUE CTA STRIP
   ===================================================== */
.pr-cta-strip {
  background: var(--lt);
  border-top: 1px solid var(--br);
  border-bottom: 1px solid var(--br);
  padding: 44px 0;
}
.pr-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 28px;
}
.pr-cta-inner h4 {
  font-family: var(--fh); font-size: 1.15rem; font-weight: 700;
  color: var(--dk); margin-bottom: 6px;
}
.pr-cta-inner p { font-size: 0.85rem; color: var(--mu); margin: 0; }
.pr-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 767px) {
  .pr-hero { height: 65vh; min-height: 380px; }
  .pr-cta-inner { flex-direction: column; align-items: flex-start; }
  .pr-filter-wrap { gap: 8px; }
  .pr-filter-btn { padding: 7px 14px; font-size: 0.78rem; }
}
