/**
 * IT Store — category tiles styles.
 */
.itstore-cats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 18px;
}
.itstore-cats__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 14px;
  background: #fff;
  border: 1px solid #e3e7ef;
  border-radius: 14px;
  color: #0b1220;
  transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}
.itstore-cats__tile:hover {
  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
  transform: translateY(-3px);
  border-color: #cdd8e6;
  color: #2f6fed;
}
.itstore-cats__media {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #eaf1ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.itstore-cats__media img { width: 100%; height: 100%; object-fit: cover; }
.itstore-cats__name { font-weight: 700; font-size: 14px; }
