.ecommerce-section {
  padding: 80px 20px;
  text-align: center;
  color:black;
  overflow: hidden;
}

.ecommerce-section .section-heading {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-heading{
  color: white;
}


.ecommerce-section .section-subheading {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.852);
  max-width: 700px;
  margin: 0 auto 40px;
}

.ecommerce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.ecommerce-product-card {
  background: #fff;
  color: #000;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.ecommerce-product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.ecommerce-product-card .product-title {
  font-weight: bold;
}

.ecommerce-product-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
}

.ecommerce-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.ecommerce-cta {
  background: #ff00ff;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.ecommerce-cta:hover {
  background: #ff00ffdc;
}

@media (max-width: 600px) {
  .ecommerce-section .section-heading {
    font-size: 1.8rem;
  }

  .ecommerce-section .section-subheading {
    font-size: 1rem;
  }
}
