


main {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.main-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.intro h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.intro hr {
  width: 100px;
  height: 2px;
  background-color: #000;
  margin: 10px auto 40px; 
}

.top-sells h3 {
  background-color: #bfb8b8;
  display: inline-block;
  padding: 5px 15px;
  font-size: 18px;
  margin-bottom: 30px;
  
}

/* Products Grid */
.product-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.product-item {
  text-align: center;
}

.product-item img {
  width: 150px;
  height: 150px;
  border: 1px solid #ccc;
}

.category {
  font-size: 14px;
  color: #888;
}

h4 {
  font-size: 18px;
  margin-top: 5px;
}



header ul li:nth-child(1) {
  background-color: lightgray;
}
