/* Logo Styling */
/* .logo-img {
  width: 50px;
  height: auto;
} */

.logo-text {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
}

/* Navbar Layout */
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Center Menu */
.navbar-collapse {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

/* Navbar Links */
.navbar-nav {
  gap: 20px;
}

/* Right Search + Icons */
.navbar .d-flex {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

/* Search box */
.input-group {  
  border: 1px solid #000;
  border-radius: 3px;
  overflow: hidden;
}

.input-group-text {
  background-color: white;
  border: none;
  border-right: 1px solid #ccc;
}

.form-control {
  border: none;
  box-shadow: none;
}

/* Icon spacing */
.navbar .fa-user,
.navbar .fa-shopping-bag {
  font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar-collapse {
    justify-content: flex-start;
    width: 100%;
  }
  .d-flex {
    width: 100%;
    justify-content: flex-start;
    margin-top: 10px;
  }
  .input-group {
    width: 100%;
  }
}