/* Base navbar */
.navbar-cement {
  background: #ffffff;
  padding: 14px 0;
  border-bottom: 2px solid #e7dfd3;
  transition: box-shadow 0.3s ease;
}

/* Sticky state */
.navbar-cement.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* Logo */
.navbar-brand img {
  height: 70px;
}

/* Menu */
.navbar-nav {
  gap: 32px;
}

.nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: #111 !important;
}

.nav-link.active {
  color: #f28c1f !important;
}

/* CTA */
.btn-list-plant {
  background: #f28c1f;
  color: #fff;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  user-select: none;
}

.btn-list-plant,
.btn-list-plant:hover,
.btn-list-plant:focus,
.btn-list-plant:active {
  background: #f28c1f;
  color: #fff;
  box-shadow: none;
  cursor: default;
}


/* ================= MOBILE ================= */

@media (max-width: 991px) {
  .navbar-brand img {
    height: 52px;
  }

  .navbar-nav {
    gap: 10px;
    padding-top: 12px;
  }

  .nav-link.active::after {
    display: none;
  }

  .btn-list-plant {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }
}
.navbar-nav .nav-link {
  position: relative;
  padding-left: 1rem;
  color: #333;
}

.navbar-nav .nav-link.active {
  color: #f28c1f;
  font-weight: 600;
}

.navbar-nav .nav-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 60%;
  background-color: #c0392b;
  transform: translateY(-50%);
  border-radius: 2px;
}

@media (max-width: 991px) {
  .navbar-nav .nav-link.active {
    background-color: #c0392b;
    color: #fff;
    border-radius: 6px;
  }
}
