.jung-salad-popup {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body, Helvetica, Arial, sans-serif);
  color: #000;
}

html.jung-salad-popup-open .jung-salad-popup {
  display: flex;
}

html.jung-salad-popup-open {
  overflow: hidden;
}

.jung-salad-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
}

.jung-salad-popup__dialog {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(440px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  padding: 28px;
}

/* Monochrome enforcement — neutralize global button colors/borders. */
.jung-salad-popup button {
  -webkit-appearance: none;
  appearance: none;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
  font-size: 12px;
  width: 100%;
}

.jung-salad-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  color: #000 !important;
  font-size: var(--fs-menu-d) !important;
  width: auto !important;
  font-weight: 400 !important;
}

.jung-salad-popup__title {
  margin: 0 30px 6px 0;
  font-size: var(--fs-menu-d, 21px);
  font-weight: 900;
  line-height: 1.16;
}

.jung-salad-popup__note {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
}

.jung-salad-popup__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.jung-salad-popup__option {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.jung-salad-popup__option input {
  width: 18px;
  height: 18px;
  accent-color: #000;
  margin: 0;
}

.jung-salad-popup__add {
  width: 100%;
  height: 32px;
  background: #000 !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.jung-salad-popup__add:hover,
.jung-salad-popup__add:focus {
  background: #222 !important;
}
