

/* === GLOBAL NAV SETTINGS === */
#nav-right {
  position: absolute;
  top: 0;
  right: 20px; /* Right offset */
  height: 55px; /* Navbar height */
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: 'Inter', sans-serif;
  color: #54613F;
}

/* === TEXT ITEMS === */
.nav-item {
  font-size: 10px;
  letter-spacing: 0.4px;
  color: #54613F;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* === DOTS === */
.dot {
  width: 6px;
  height: 6px;
  background: #54613F;
  border-radius: 50%;
  margin-right: 6px;
}

.status-dot {
  background: #00D26A;
}

/* === TOOLTIP === */
.tooltip {
  position: absolute;
  top: 22px;
  right: 0;
  background: #fff;
  padding: 6px 10px;
  font-size: 10px;
  border-radius: 4px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(-5px);
  pointer-events: none;
  transition: 0.25s ease;
  white-space: nowrap;
}

.status-wrapper:hover .tooltip {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* === LANGUAGE === */
.lang-wrapper {
  position: relative;
}

.lang-btn {
  width: 22px;
  height: 22px;
  font-size: 9px;
  border-radius: 50%;
  border: 1px solid rgba(84, 97, 63, 0.2);
  color: #54613F;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: 28px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.18);
  padding: 6px 8px;
  font-size: 9px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: 0.25s ease;
}

.lang-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-menu div {
  padding: 3px 0;
  cursor: pointer;
}

/* === CART === */
.cart-wrapper {
  position: relative;
  cursor: pointer;
}

.cart-icon {
  width: 14px;
  height: 19px;
}

/* === MENU TEXT + BURGER === */
.menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

.burger {
  width: 18px;
  height: 12px;
  position: relative;
}

.burger-line {
  position: absolute;
  width: 18px;
  height: 1px;
  background: #54613F;
  transition: 0.3s ease;
}

.burger-line:nth-child(1) { top: 0; }
.burger-line:nth-child(2) { top: 5px; }
.burger-line:nth-child(3) { top: 10px; }

/* Active menu animation */
.burger.active .burger-line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}


