.category-title-header {
  text-align: center;
  margin-bottom: 30px;
}
.category-title-header .section-title {
  margin: 0 auto;
}

/* Featured Products Grid Section */
.featured-products-section {
  padding: 40px;
  background: #f8f9fa;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-products-grid .product-card {
  min-width: auto;
  width: 100%;
}
.location-section {
  width: 100%;
  margin: 40px 0;
}


.location-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.location-content {
  position: relative;
  z-index: 10;
  text-align: left; /* align text to the left */
  color: white;
  max-width: 600px;
  padding: 0 20px;
}

.location-content h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.location-content p {
  font-size: 18px;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
  line-height: 1.5;
}

.location-btn {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.location-btn:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

/* Best Sellers Grid Section */
.bestsellers-section {
  padding: 40px;
  background: white;
}

.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.bestsellers-grid .product-card {
  min-width: auto;
  width: 100%;
}