body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Brand Menu */
.brand-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
}

.brand-menu span {
  color: #333;
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
}

.brand-menu span.active {
  color: green;
}

.brand-menu span.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: green;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 12px 25px;
  border: none;
  background: #f3f3f3;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background: #ddd;
}

.category-btn.active {
  background: green;
  color: #fff;
}

/* Product Section */
.products {
  max-width: 1250px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s;
}

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

.product-card img {
  width: 100%;
  max-height: 258px;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-card h4 {
  font-size: 16px;
  margin: 10px 0 5px;
}

.product-card p {
  font-size: 14px;
  color: #555;
}
