/* ═══════════════════════════════════════════════════════════════════════════
   pages/products.css — Products Page Styles
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Products Hero ────────────────────────────────────────────────────────── */

.products-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 5 L35 20 L20 35 L5 20 Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  pointer-events: none;
}




/* ── Feature Deep-dive sections ───────────────────────────────────────────── */
.product-feature {
  padding-block: var(--space-20);
}

.product-feature:nth-child(even) {
  background-color: var(--color-bg-light);
}

.product-feature__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.product-feature:nth-child(even) .product-feature__layout {
  direction: rtl;
}

.product-feature:nth-child(even) .product-feature__body {
  direction: ltr;
}

.product-feature:nth-child(even) .product-feature__visual {
  direction: ltr;
}

.product-feature__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background-color: var(--color-primary-light);
  margin-bottom: var(--space-5);
}

.product-feature__icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.product-feature__label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.product-feature__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-4);
}

.product-feature__desc {
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-6);
}

.product-feature__points {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}

.product-feature__points li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.product-feature__points li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary);
  margin-top: 7px;
}

.product-feature__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-feature__visual-icon {
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .product-feature__layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .product-feature:nth-child(even) .product-feature__layout {
    direction: ltr;
  }

  .product-feature__visual-icon {
    max-width: 600px;
  }
}
