.phone-combo {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid rgba(11, 19, 38, 0.1);
  background: #f8f9ff;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  z-index: 1;
}
.phone-combo:focus-within,
.phone-combo.is-open {
  border-color: #ff6b00;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
  z-index: 40;
}
.phone-combo__dial {
  position: relative;
  flex: 0 0 auto;
}
.phone-combo__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  height: 100%;
  padding: 0.85rem 0.55rem 0.85rem 0.85rem;
  border: 0;
  background: transparent;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0b1326;
  cursor: pointer;
  white-space: nowrap;
}
.phone-combo__flag { font-size: 1.05rem; line-height: 1; }
.phone-combo__code { font-variant-numeric: tabular-nums; }
.phone-combo__caret { font-size: 1.1rem !important; color: #5a6578; transition: transform 0.2s; }
.phone-combo.is-open .phone-combo__caret { transform: rotate(180deg); }
.phone-combo__sep {
  width: 1px;
  align-self: stretch;
  margin: 0.55rem 0;
  background: rgba(11, 19, 38, 0.12);
  flex-shrink: 0;
}
.phone-combo > input[data-phone-national] {
  flex: 1;
  min-width: 0;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none;
  padding: 0.85rem 1rem 0.85rem 0.85rem;
  color: #0b1326;
}
.phone-combo__panel {
  position: absolute;
  left: 0;
  top: calc(100% + 0.35rem);
  width: min(20.5rem, calc(100vw - 2rem));
  background: #fff;
  border: 1px solid rgba(11, 19, 38, 0.1);
  border-radius: 0.9rem;
  box-shadow: 0 18px 40px rgba(11, 19, 38, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 50;
}
.phone-combo__search-bar {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(11, 19, 38, 0.08);
  background: #f8f9ff;
}
.phone-combo__search-ico {
  font-size: 1.15rem !important;
  color: #5a6578;
  flex-shrink: 0;
}
.phone-combo__search {
  flex: 1;
  min-width: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: #0b1326;
}
.phone-combo__list {
  max-height: 240px;
  overflow-y: auto;
  padding: 0.35rem;
  overscroll-behavior: contain;
}
.phone-combo__option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
  padding: 0.65rem 0.75rem;
  border: 0;
  border-radius: 0.55rem;
  background: transparent;
  font-size: 0.875rem;
  color: #0b1326;
  cursor: pointer;
}
.phone-combo__option:hover,
.phone-combo__option.is-active {
  background: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
}
.phone-combo__option strong { font-weight: 700; white-space: nowrap; }
.phone-combo__empty {
  padding: 1rem;
  text-align: center;
  color: #5a6578;
  font-size: 0.875rem;
}
