:root {
  --tile-radius: 22px;
  --tile-padding: 22px;
  --tile-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  --pill-bg: #fff37a;
  --text-dark: #14151a;
}
body {
  background: #fff;
  color: var(--text-dark);
}
.section-title {
  
  letter-spacing: 0.2px;
}

.cat-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 4px;
  scroll-behavior: smooth;
}
.cat-track::-webkit-scrollbar {
  display: none;
}

.cat-tile {
  flex: 0 0 150px;
  height: 185px;
  background: #f8fafc;
  border-radius: var(--tile-radius);
  box-shadow: var(--tile-shadow);
  padding: var(--tile-padding);
  position: relative;
  text-align: center;
  cursor: pointer;
}
.cat-tile .pill {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--pill-bg);
  font-weight: 500;
  font-size: x-small;
  padding: 3px 8px;
  border-radius: 20px;
}
.cat-figure {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.cat-figure img {
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
}
.cat-name {
  font-size: small;
  
}


/* Pastel backgrounds */
.bg-grocery {
  background: #f0f8e8;
}
.bg-lifestyle {
  background: #f8f1f1;
}
.bg-food {
  background: #fdeeee;
}
.bg-pet {
  background: #fff8e8;
}
.bg-electronics {
  background: #f2eeff;
}
.bg-repair {
  background: #faf1ef;
}
.bg-sports {
  background: #eaf5ff;
}
.bg-pharmacy {
  background: #f3efff;
}
.bg-gadgets {
  background: #f6fff6;
}
