.floating-menu-wrapper {
  position: fixed;
  top: 50%;
  right: -210px;
  transform: translateY(-50%);
  transition: right 0.3s ease;
  z-index: 999;
  width: 288px;
}
.floating-menu-wrapper.open {
  right: 0;
}
.floating-menu {
  position: absolute;
  top: 0;
  left: 48px;
  width: 240px;
  max-height: 80vh;
  background: rgba(255,255,255,0.4);
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  overflow-y: auto;
  transition: background 0.3s ease;
}

/* Ensure no list bullets */
.floating-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.floating-menu li {
  list-style: none;
}

/* Full opacity when open */
.floating-menu-wrapper.open .floating-menu {
  background: rgba(255,255,255,1);
}

.floating-menu ul {
  margin: 0;
  padding: 16px;
}
.floating-menu li + li {
  margin-top: 12px;
}

.floating-menu a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-family: "Gothic A1" !important;
  font-weight:600 !important;
  line-height: 1.4;
  transition: color .2s;
}

.floating-menu a:hover {
text-decoration-line: underline !important;
text-decoration-thickness: 3px !important;
color: #000 !important;
}

.floating-menu a.active {
text-decoration-line: underline !important;
text-decoration-thickness: 3px !important;
color: #000 !important;
}



.floating-menu-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.floating-menu-icon {
  position: absolute;
  top: 30px;
  left: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #f0f0f0; /* adjust color as per design */
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-menu-icon img {
  width: 35px;
  height: 35px;
}
