.mobile-shortcuts {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  gap: 10px;
  padding: 10px;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  -webkit-overflow-scrolling: touch;
}

/* width */
.mobile-shortcuts::-webkit-scrollbar {
  height: 7px;
  border-radius: 5px; 
}

/* Track */
.mobile-shortcuts::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

/* Handle */
.mobile-shortcuts::-webkit-scrollbar-thumb {
  background: #991200;
  border-radius: 5px;
}

/* Handle on hover */
.mobile-shortcuts::-webkit-scrollbar-thumb:hover {
  background: #7A0E00;
}

.mobile-shortcuts a {
  flex: 0 0 auto;
  text-decoration: none;
  font-size: 16px;
  color: #2F1D13;
  transition: 0.3s ease;
  margin: 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
}

.mobile-shortcuts a:hover {
  border-bottom: 2px solid #2F1D13;
}

/* Only mobile */
@media (min-width: 981px) {
  .mobile-shortcuts {
    display: none;
  }
}