/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #000;
}

.brand {
  color: #c59a3a;
  letter-spacing: 4px;
  font-size: 22px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.navbar ul li a:hover {
  color: #c59a3a;
}

.icons i {
  margin-left: 15px;
  color: #c59a3a;
}

.login-btn {
    padding: 10px 20px;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.login-btn:hover {
    opacity: 0.9;
}

.icon-with-badge {
     position: relative;
     display: inline-flex;
   }

   .icon-with-badge .badge {
     position: absolute;
     top: -8px;
     right: -10px;
     background: #c9a84c;
     color: #000;
     font-size: 0.65rem;
     font-weight: 700;
     min-width: 16px;
     height: 16px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0 4px;
     line-height: 1;
   }