/* ── PRODUCTS PAGE ── */

.breadcrumb-bar {
  background: var(--gray-light);
  padding: 10px 0;
  margin-top: 70px;
  border-bottom: 1px solid rgba(27,188,176,.08);
}
.breadcrumb {
  display: flex; gap: .5rem; align-items: center;
  font-size: .82rem; color: var(--text-muted);
}
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: .5rem; }
.breadcrumb a { color: var(--teal); transition: opacity var(--transition); }
.breadcrumb a:hover { opacity: .75; }

/* PAGE HERO */
.products-page-hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  text-align: center;
  overflow: hidden;
}
.products-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(27,188,176,.12) 0%, transparent 65%);
}
.products-hero-inner {
  position: relative; z-index: 1;
}
.products-hero-inner .section-label { background: rgba(27,188,176,.2); color: var(--teal-mid); }
.products-hero-inner h1 { color: var(--white); margin: .8rem 0 1rem; }
.products-hero-inner p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* FILTER BAR */
.products-main-section { background: var(--gray-light); }

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-btn {
  padding: .7rem 1.6rem;
  border-radius: 50px;
  border: 2px solid rgba(27,188,176,.25);
  background: var(--white);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
}
.filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,188,176,.3);
}

/* PRODUCT FULL GRID */
.products-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.product-card-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(27,188,176,.1);
  display: grid;
  grid-template-columns: 420px 1fr;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card-full:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card-full:nth-child(even) {
  direction: rtl;
}
.product-card-full:nth-child(even) > * {
  direction: ltr;
}

.product-full-img {
  background: var(--gray-light);
  overflow: hidden;
  min-height: 340px;
}
.product-full-img img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.product-full-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-full-title {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--dark);
  margin: .5rem 0 .8rem;
}
.product-full-desc {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.7;
  font-size: .95rem;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.8rem;
}
.product-features li {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: .2rem;
}
.product-features li::marker { display: none; }
.product-card-full .btn {
  align-self: flex-start;
  min-width: 180px;
  justify-content: center;
}

/* WHY SECTION */
.products-why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.why-card {
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-left: 4px solid var(--teal);
  transition: transform var(--transition);
}
.why-card:hover { transform: translateY(-4px); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1rem; margin-bottom: .6rem; color: var(--dark); }
.why-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-card-full { grid-template-columns: 1fr; direction: ltr !important; }
  .product-card-full:nth-child(even) { direction: ltr; }
  .product-full-img { min-height: 260px; }
  .product-full-img img { min-height: 260px; height: 100%; }
  .product-full-body { padding: 24px; }
  .why-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
  .product-card-full .btn { width: 100%; }
  .filter-bar { justify-content: center; }
}
