/* ===== Transparent Section ===== */
.category-section {
  text-align: center;
  padding: 40px 0;
  background: transparent; /* No background */
}

/* ===== Title ===== */
.category-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
  text-transform: capitalize;
}


/* ===== Grid (4 Columns Default, Expandable to 6) ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
 
  margin: 0 auto;
  transition: all 0.3s ease;
}

/* Expanded state when showing all */
.category-grid.expanded {
  grid-template-columns: repeat(6, 1fr);
}


/* ===== Category Item ===== */
.category-item a {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 20px 15px;
  font-size: 18px;
  color: #333;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-decoration: none;
}
.category-item a:hover {
  background: #0073e6;
  color: #fff;
  transform: translateY(-3px);
}

/* ===== Show More Button ===== */
.show-more-btn {
  margin-top: 40px;
  background: #0073e6;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.show-more-btn:hover {
  background: #005bb5;
}


/* ===== Responsive Layout ===== */
@media (max-width: 991px) {
  .category-grid,
  .category-grid.expanded {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .category-grid,
  .category-grid.expanded {
    grid-template-columns: repeat(1, 1fr);
  }

  .category-item a {
    font-size: 16px;
    padding: 16px 12px;
  }
  .category-title {
    font-size: 24px;
  }
}