/* all var user here located in dark css file  */
/* main part */
.page-hero {
  background: linear-gradient(
    120deg,
    var(--accent-primary) 0%,
    color-mix(in srgb, var(--accent-primary) 70%, var(--accent-secondary)) 100%
  );
  color: white;
  padding: 4rem 0;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.page-hero p {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}
/* simple section */
.cta-section {
  background-color: var(--accent-primary);
  padding: 4rem 0;
  text-align: center;
  color: white;
  margin-top: 2rem;
}
.cta-section h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-section p {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}
.cta-button {
  background-color: var(--accent-secondary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cta-button:hover {
  background-color: color-mix(in srgb, var(--accent-secondary) 85%, black);
  transform: translateY(-3px) scale(1.05);
}

/* responsive but need wok */

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-column .footer-title {
    margin-top: 1rem;
  }
  .social-links {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .product-info {
    padding: 1.25rem;
  }
  .product-info h3 {
    font-size: 1.3rem;
  }
}
