/* About Section */
.main {
  margin-top: 20%;
}
#about {
  padding: 80px 0;
}

#about h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #4a6fa5;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-content img {
  width: 50%;
  border-radius: 10px;
}

.about-text {
  width: 50%;
}

.about-text p {
  margin-bottom: 20px;
}

/* Featured Products */
#featured {
  padding: 80px 0;
  background-color: #f0f0f0;
}

#featured h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #4a6fa5;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-card h3 {
  padding: 15px;
  font-size: 1.2rem;
}

.price {
  padding: 0 15px 15px;
  font-weight: bold;
  color: #4a6fa5;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  margin-right: 10px;
}
