/* Section */
.fashion-section {
  background: #212529;
  padding: 80px 0;
  color: #fff;
} 

.fashion-section h1,
.fashion-section h2,
.fashion-section h3 {
  color: #ffffff;
}

/* Grid layout (different from your other pages) */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* Cards */
.eco-card {
  background: #1c1f23;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #2b3035;
  transition: 0.3s;
  position: relative;
}

.eco-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.eco-card p {
  color: #ccc;
  font-size: 14px;
}

/* Hover */
.eco-card:hover {
  transform: translateY(-5px);
  border-color: #ff2e2e;
}

 

/* Banner */
.eco-banner {
  margin-top: 50px;
  text-align: center;
  padding: 30px;
  background: linear-gradient(90deg, #1c1f23, #2b3035);
  border-left: 4px solid #ff2e2e;
  border-radius: 10px;
}

.eco-banner h3 {
  color: #fff;
}

.eco-banner p {
  color: #ccc;
}

/* Mobile */
@media (max-width: 767px) {
  .fashion-section {
    padding: 50px 15px;
  }

  .eco-banner {
    text-align: left;
  }
}