.otc-bom { display: inline-block; }

.otc-bom-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.otc-bom-trigger .dashicons { display: inline-flex; align-items: center; justify-content: center; }
.otc-bom-trigger-img,
.otc-bom-trigger-svg { display: inline-flex; align-items: center; justify-content: center; }
.otc-bom-trigger-svg svg { display: block; }

.otc-bom-overlay[hidden] { display: none !important; }

.otc-bom-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0,0,0,0.75);
  padding: clamp(16px, 4vw, 32px);
}

.otc-bom-overlay-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.otc-bom-overlay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.otc-bom-title { font-size: 18px; font-weight: 600; }

.otc-bom-close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.2);
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.otc-bom-close .dashicons { font-size: 22px; width: 22px; height: 22px; }

.otc-bom-nav { padding: 18px; overflow: auto; }

.otc-bom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.otc-bom-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.12);
  text-decoration: none;
  color: inherit;
}

.otc-bom-link:focus { outline: 2px solid currentColor; outline-offset: 2px; }

.otc-bom-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
}

.otc-bom-icon-img { width: 28px; height: 28px; object-fit: contain; }
.otc-bom-icon-svg svg { width: 22px; height: 22px; }

.otc-bom-label { font-size: 16px; font-weight: 500; }

html.otc-bom-open { overflow: hidden; }
