/* Scrollable expanded catalog */
.catalog-box,
.mobile-catalog-box {
  max-height: min(70vh, 480px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}

.catalog-box::-webkit-scrollbar,
.mobile-catalog-box::-webkit-scrollbar {
  width: 6px;
}

.catalog-box::-webkit-scrollbar-thumb,
.mobile-catalog-box::-webkit-scrollbar-thumb {
  background: rgba(220, 38, 38, 0.45);
  border-radius: 999px;
}

.catalog-item {
  font-size: 12px;
  padding: 8px 6px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .mobile-catalog-box {
    max-height: 50vh;
    grid-template-columns: repeat(2, 1fr);
  }
}
