.tdm-menu {
  position: fixed;
  min-width: 180px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
  padding: 6px 0;
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  transition: 0.15s ease;
  z-index: 99999;
}

.tdm-menu.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.tdm-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  width: 100%;
}

/* LTR */
.tdm-menu[dir="ltr"] .tdm-item {
  direction: ltr;
  justify-content: flex-start;
  text-align: left;
}

/* RTL */
.tdm-menu[dir="rtl"] .tdm-item {
  direction: rtl;
  justify-content: flex-start;
  text-align: right;
}



.tdm-item:hover,
.tdm-item.active {
  background: #f3f4f6;
}

.tdm-menu[data-placement="top"] {
  transform-origin: bottom;
}

.tdm-menu[data-placement="bottom"] {
  transform-origin: top;
}

/* 📱 MOBILE BOTTOM SHEET */
.tdm-menu.mobile {
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  top: auto !important;

  width: 100%;
  border-radius: 16px 16px 0 0;
  transform-origin: bottom;
}