* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== NAVBAR STYLING ===== */
.navbar.custom-navbar {
  background-color: rgb(13, 64, 8);
  padding: 15px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar Brand (Title) */
.navbar-brand {
  color: rgb(254, 234, 165) !important;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 1px;
}

.navbar-brand:hover {
  color: rgb(254, 234, 165) !important;
}

/* Navbar Toggler Icon (Mobile) */
.navbar-toggler {
  border-color: rgb(254, 234, 165);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(254, 234, 165)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: rgb(254, 234, 165) !important;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(254, 234, 165, 0.15);
}

/* Cart Badge */
#cart-count {
  background-color: #ff4444;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  margin-left: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    justify-content: center;
    margin: 5px 0;
  }

  .navbar.custom-navbar {
    padding: 15px;
  }
}