/* Products Hero Section */

.container {
  max-width: 1200px;
  margin: 0 auto;
}
.products-hero {
  padding: 200px 20px 60px 20px;
  background-color: black;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  overflow: hidden;
}

.products-hero .container {
  position: relative;
  z-index: 1;
  /* max-width: 1200px; */
  width: 100%;
}

.products-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.products-hero p {
  font-size: 20px;
  color: #cdcdcd;
}

/* Mobile styles for Hero */
@media (max-width: 716px) {
  .products-hero {
    padding: 120px 20px 40px 20px;
    min-height: 300px;
  }

  .products-hero h1 {
    font-size: 2rem;
  }

  .products-hero p {
    font-size: 1rem;
  }
}

/* Products Section */
.products-section {
  padding: 80px 20px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.products-section .container {
  max-width: 1800px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: #1f1f1f;
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.5rem;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.product-info p {
  font-size: 1rem;
  color: #cdcdcd;
  line-height: 1.6;
}

/* Mobile styles for Products Section */
@media (max-width: 716px) {
  .products-section {
    padding: 60px 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-image {
    height: 200px;
  }

  .product-info h3 {
    font-size: 1.25rem;
  }
}
