/* ============================================================
   PRODUCTS PAGE
   ============================================================ */

#productsParticles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #000;
}

.products-page,
.products-wrapper,
.cta-section,
#footer {
  position: relative;
  z-index: 1;
}

#header {
  position: relative;
  z-index: 1000;
}

.products-wrapper {
  padding: calc(var(--nav-h) + 72px) 0 100px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 56px 40px;
  border-bottom: 1px solid #1a1a1a;
}

.product-feature:last-of-type {
  border-bottom: none;
}

.product-feature:nth-child(even) .product-feature__media {
  order: 2;
}

.product-feature:nth-child(even) .product-feature__copy {
  order: 1;
}

.product-feature__kicker {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-feature__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.product-feature__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 560px;
}

.product-feature__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.product-feature__media img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow: var(--shadow);
}

.products-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 22px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.products-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease, opacity 0.7s ease;
}

.products-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.products-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.32) 100%),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
}

.products-image:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  transform: translateY(-4px);
}

.products-image:hover img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.05);
  opacity: 0.96;
}

.products-image:hover::before {
  transform: translateX(120%);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .products-wrapper {
    padding: calc(var(--nav-h) + 48px) 0 80px;
  }

  .product-feature {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 44px 0;
  }

  .product-feature:nth-child(even) .product-feature__media,
  .product-feature:nth-child(even) .product-feature__copy {
    order: unset;
  }

  .product-feature__desc {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .products-wrapper {
    padding: calc(var(--nav-h) + 32px) 0 64px;
  }

  .product-feature {
    gap: 32px;
    padding: 32px 0 44px;
  }

  .product-feature__title {
    font-size: clamp(26px, 9vw, 34px);
  }

  .product-feature__desc {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .product-feature__actions {
    flex-direction: column;
    gap: 12px;
  }

  .product-feature__actions .btn {
    width: 100%;
  }

  .products-image {
    border-radius: 18px;
  }
}

@media (max-width: 380px) {
  .product-feature {
    padding: 28px 0 40px;
  }

  .product-feature__title {
    font-size: 25px;
  }
}