.mm-category-section {
  padding: 30px 0;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
}

.mm-category-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.mm-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.mm-category-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mm-category-title {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
  font-weight: 500;
}

.mm-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mm-category-item {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}

.mm-category-item:hover {
  color: #007aff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mm-category-section {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
  .mm-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .mm-category-grid {
    grid-template-columns: 1fr;
  }
  .mm-category-container {
    padding: 0 15px;
  }
  .mm-category-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

/* -------------- Dark Mode Support Start--------------*/

/* Dark Mode Background */
body.dark-mode .mm-category-section {
  background: #1a1a1a;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

/* Dark Mode Title Text */
body.dark-mode .mm-category-title {
  color: #aaa;
}

/* Dark Mode List Items */
body.dark-mode .mm-category-item {
  color: #fff;
}

/* Hover Highlight in Dark Mode */
body.dark-mode .mm-category-item:hover {
  color: #4da3ff;
}


/* -------------- Dark Mode Support End--------------*/
