.navbar .dropdown-menu {
  display: none;
  min-width: 220px;
  margin-top: 0.5rem;
  padding: 0.5rem;
  border: 1px solid rgba(12, 34, 61, 0.1);
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.25rem rgba(12, 34, 61, 0.12);
}

.navbar .dropdown-menu.show {
  display: block;
}

.navbar .dropdown-item {
  padding: 0.6rem 0.85rem;
  border-radius: 0.3rem;
  color: inherit;
  font-family: var(--headingFont, inherit);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: rgba(255, 109, 61, 0.1);
  color: #ff6d3d;
}

@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    width: 100%;
    margin-top: 0;
    padding: 0.35rem;
    border: 0;
    border-radius: 0.35rem;
    box-shadow: none;
    background-color: rgba(12, 34, 61, 0.035);
  }

  .navbar .dropdown-item {
    padding: 0.55rem 0.85rem;
    font-size: 14px;
  }
}
