
    .navbar-custom {
      background-color:	#ceab8c;
    }
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-brand {
      color: #1e2749;
      font-weight: 600;
      letter-spacing: 1px;
    }
    .navbar-nav .nav-link {
      margin-right: 20px;
    }
    .nav-highlight {
      background-color: #1e2849;
      padding: 10px 20px;
      border-radius: 0;
    }
    .nav-highlight .nav-link {
      color: white !important;
      font-weight: bold;
    }
    .dropdown-toggle::after {
      margin-left: 5px;
    }
body {
      margin: 0;
      justify-content: center;
    }
.nav-link{
  position: relative;
  color: white !important;
  padding-bottom: 5px;
  text-decoration: none;
}
.nav-link::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease, left 0.3s ease ;
  transform: translateX(-50%);
}
.nav-link:hover::after{
  width: 100%;
}
.navDrinkMenu-link{
  position: relative;
  color:  #1e2849!important;
  padding-bottom: 5px;
  text-decoration: none;
}
.navDrinkMenu-link::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #1e2849;
  transition: width 0.3s ease, left 0.3s ease ;
  transform: translateX(-50%);
}
.navDrinkMenu-link:hover::after{
  width: 100%;
}
.shine-hover{
  position: relative;
  overflow: hidden;
  color: white !important;
  z-index: 0;
}
.shine-hover::before{
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  z-index: -1;
  pointer-events: none;
}
.shine-hover:hover::before{
  left: 125%;
}
.price {
      color: #f0b94a;
      font-weight: bold;
      font-size: 2rem;
    }
    .order-btn {
      background-color: #e2aa4a;
      border: none;
      color: white;
      padding: 10px 30px;
      border-radius: 30px;
      font-weight: bold;
    }
    .rating-stars {
      color: #ccc;
      font-size: 1.2rem;
    }
    .quantity-selector {
      border: 1px solid #ddd;
      border-radius: 30px;
      display: inline-flex;
      align-items: center;
      padding: 5px 10px;
      gap: 10px;
    }
    .quantity-selector button {
      border: none;
      background: none;
      font-size: 1.2rem;
    }