body {
  padding-top: 80px;
}

.sticky-top {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}

.header-img {
  max-width: 100%;
  height: auto;
}

.category-tab img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.category-tab img:hover {
  transform: scale(1.03);
}

.product-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.category-side-tabs a {
  text-decoration: none;
  color: inherit;
  padding: 8px;
  border-radius: 10px;
  display: block;
  transition: background 0.2s;
}

.category-side-tabs a:hover {
  background-color: #f0f0f0;
}

.category-side-tabs .active-tab {
  background-color: #d4edda; /* light green */
  font-weight: bold;
  border: 2px solid #28a745;
}

.store-card {
  transition: transform 0.2s;
}

.store-card:hover {
  transform: scale(1.02);
}
