/* ══════════════════════════════════════
   FLYZER — products.css
   Styles specific to the Products page.
   Loads after styles.css.
══════════════════════════════════════ */

/* ══════════════════════════════════════
   PAGE HERO (reused pattern from about.css)
══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1e1e2e 55%, #2a0a0e 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.page-hero-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #aaa;
  text-decoration: none;
  transition: color .2s;
}

.breadcrumb a:hover { color: var(--red); }

.breadcrumb span:last-child { color: var(--red); }

.page-hero h1 {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  animation: fadeUp .6s ease both;
}

.page-hero h1 span { color: var(--red); }

.page-hero p {
  color: #aaa;
  font-size: 17px;
  line-height: 1.6;
  max-width: 500px;
  animation: fadeUp .6s .15s ease both;
}

/* ══════════════════════════════════════
   FILTER BAR
══════════════════════════════════════ */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 0;
  position: sticky;
  top: 70px;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.filter-tabs {
  display: flex;
  gap: 4px;
  padding: 14px 0;
  overflow-x: auto;
}

.filter-btn {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 30px;
  border: 2px solid transparent;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.filter-btn:hover {
  color: var(--red);
  border-color: var(--light-gray);
}

.filter-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ══════════════════════════════════════
   PRODUCT CATEGORY SECTION
══════════════════════════════════════ */
.product-category {
  padding: 80px 0;
  background: var(--white);
  transition: opacity .3s, transform .3s;
}

.product-category.alt-bg {
  background: var(--gray);
}

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

/* Category header */
.category-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.category-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.15;
  margin-top: 8px;
  margin-bottom: 12px;
}

.category-title span { color: var(--red); }

.category-desc {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
}

.category-badge-wrap {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  align-items: flex-start;
  padding-top: 16px;
}

.category-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  min-width: 90px;
}

.alt-bg .category-badge { background: var(--white); }

.badge-icon-lg { font-size: 28px; }

/* ── Product detail card grid ── */
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-detail-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.alt-bg .product-detail-card {
  background: var(--white);
}

.product-detail-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
  transform: translateY(-4px);
}

/* Product image placeholder */
.pd-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #aaa;
  font-family: var(--font-head);
  font-size: 12px;
  border-bottom: 1px solid var(--light-gray);

}



/* Product body */
.pd-body {
  padding: 22px;
}

.pd-body h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}

.pd-body > p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Specs list */
.pd-specs {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--light-gray);
  padding-top: 14px;
}

.pd-specs li {
  font-size: 12px;
  color: var(--text-light);
  padding: 4px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  gap: 6px;
}

.pd-specs li:last-child { border-bottom: none; }

.pd-specs li strong {
  color: var(--black);
  min-width: 70px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   COMING SOON SECTION
══════════════════════════════════════ */
.coming-soon-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.coming-soon-section.reverse {
  direction: rtl;
}

.coming-soon-section.reverse > * {
  direction: ltr;
}

.cs-text .category-title { margin-top: 8px; }

.cs-text p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  max-width: 460px;
}

.cs-placeholder {
  width: 100%;
  height: 340px;
  background: var(--light-gray);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #aaa;
  font-family: var(--font-head);
  font-size: 13px;
  border: 2px dashed #ccc;
  position: relative;
}

.cs-placeholder svg { opacity: .35; }

.cs-badge-lg {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   CTA BOX (shared pattern)
══════════════════════════════════════ */
.prod-cta {
  padding: 80px 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--dark) 0%, #2a0a0e 100%);
  border-radius: 16px;
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: var(--red);
  border-radius: 50%;
  opacity: .08;
}

.cta-text h2 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-text p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
  max-width: 420px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}

.btn-cta-primary:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}

.btn-cta-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
══════════════════════════════════════ */
@media (max-width: 900px) {
  .page-hero h1            { font-size: 36px; }
  .product-detail-grid     { grid-template-columns: 1fr 1fr; }
  .coming-soon-section     { grid-template-columns: 1fr; }
  .coming-soon-section.reverse { direction: ltr; }
  .category-badge-wrap     { padding-top: 0; }
  .cta-box                 { flex-direction: column; padding: 40px 28px; text-align: center; }
  .cta-text p              { max-width: 100%; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
══════════════════════════════════════ */
@media (max-width: 600px) {
  .product-detail-grid { grid-template-columns: 1fr; }
  .cta-actions         { flex-direction: column; width: 100%; }
  .btn-cta-primary,
  .btn-cta-outline     { justify-content: center; }

}