/* ============================================
   CATEGORIES PAGE STYLES
   ============================================ */

.cat-list {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cat-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 16px;
}

.cat-row-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,162,75,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.cat-row-icon svg {
  width: 24px;
  height: 24px;
}

.cat-row-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.cat-row-text {
  flex: 1;
}

.cat-row-text h3 {
  color: var(--color-text-dark);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.cat-row-text p {
  color: var(--color-text-gray);
  font-size: 12px;
}

.cat-row-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .cat-list {
    max-width: 700px;
    margin: 0 auto;
    padding: 32px 0;
  }

  .cat-row {
    padding: 22px;
  }
}