.fgchp-native-select {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.fgchp-select-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 4px 0 0;
  font-family: inherit;
  z-index: 50;
}

.fgchp-select-wrap.fgchp-open {
  z-index: 2147483000 !important;
}

.fgchp-select-wrap.fgchp-open .fgchp-select-button {
  z-index: 2147483001 !important;
}

.wpforms-field:has(.fgchp-select-wrap.fgchp-open),
.wpforms-field-select:has(.fgchp-select-wrap.fgchp-open) {
  z-index: 2147482999 !important;
  position: relative !important;
}

.fgchp-select-button {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 42px 10px 12px;
  border: 1px solid #c5ccc0;
  border-radius: 6px;
  background: #fff;
  color: #333;
  cursor: pointer;
  text-align: left;
  line-height: 1.35;
  font-size: inherit;
  position: relative;
}

.fgchp-select-button:after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: -3px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #4F5A43;
}

.fgchp-select-button:focus {
  outline: 2px solid rgba(79, 90, 67, 0.25);
  outline-offset: 2px;
}

.fgchp-options {
  display: none;
  position: fixed !important;
  left: auto;
  right: auto;
  top: auto;
  max-height: 330px;
  overflow-y: auto;
  padding: 6px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #c5ccc0;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  z-index: 2147483646 !important;
}

.fgchp-options.fgchp-options-open {
  display: block !important;
}

.fgchp-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 7px 9px;
  border-radius: 6px;
  cursor: pointer;
  color: #333;
  line-height: 1.35;
}

.fgchp-option:hover,
.fgchp-option.fgchp-active {
  background: #F5F2EC;
  color: #4F5A43;
}

.fgchp-option-thumb {
  width: 42px;
  height: 30px;
  flex: 0 0 42px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #e6e1d8;
  background: #f5f2ec;
}

.fgchp-option-no-thumb {
  width: 42px;
  height: 30px;
  flex: 0 0 42px;
}

.fgchp-preview-box {
  position: fixed;
  z-index: 2147483647;
  width: 460px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border: 1px solid #c5ccc0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.24);
  padding: 10px;
  display: none;
  pointer-events: none;
}

.fgchp-preview-box img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f2ec;
}

.fgchp-preview-box span {
  display: block;
  color: #4F5A43;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 7px;
}

@media (max-width: 640px) {
  .fgchp-preview-box {
    display: none !important;
  }

  .fgchp-options {
    max-height: 300px;
  }
}

@media (max-width: 900px) {
  .fgchp-preview-box {
    width: 380px;
    max-width: calc(100vw - 32px);
  }

  .fgchp-preview-box img {
    max-height: 300px;
  }
}
