/* Shared country + dial code picker (merchant profile, admin shops) */
.bz-cp-mount .country-picker {
  position: relative;
  user-select: none;
  width: 100%;
}
.bz-cp-mount .country-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.68rem 0.9rem;
  background: #fff;
  cursor: pointer;
  font: inherit;
  text-align: start;
  color: #1e293b;
}
.bz-cp-mount .country-trigger:hover,
.bz-cp-mount .country-picker.open .country-trigger {
  border-color: #556ee6;
  box-shadow: 0 0 0 3px rgba(85, 110, 230, 0.12);
}
.bz-cp-mount .country-trigger .bz-cp-flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  flex-shrink: 0;
  object-fit: cover;
}
.bz-cp-mount .country-trigger .bz-cp-name {
  flex: 1;
  font-size: 0.9rem;
  color: #1e293b;
  text-align: start;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bz-cp-mount .country-trigger .bz-cp-dial {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  flex-shrink: 0;
}
.bz-cp-mount .country-trigger .bz-cp-caret {
  font-size: 0.65rem;
  color: #94a3b8;
  flex-shrink: 0;
  margin-inline-start: auto;
}
.bz-cp-mount .country-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 5000;
  max-height: 230px;
  flex-direction: column;
  overflow: hidden;
}
.bz-cp-mount .country-picker.open .country-dropdown {
  display: flex;
}
.bz-cp-mount .country-search-wrap {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}
.bz-cp-mount .country-search-wrap .bz-cp-search-icon {
  position: absolute;
  inset-inline-start: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.8rem;
  pointer-events: none;
}
.bz-cp-mount .country-search {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.4rem 0.7rem 0.4rem 2rem;
  font-size: 0.82rem;
  font-family: inherit;
  outline: none;
}
.bz-cp-mount .country-list {
  overflow-y: auto;
  flex: 1;
  max-height: 160px;
}
.bz-cp-mount .country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  font-size: 0.85rem;
}
.bz-cp-mount .country-option:hover {
  background: rgba(102, 126, 234, 0.07);
}
.bz-cp-mount .country-option img {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  flex-shrink: 0;
  object-fit: cover;
}
.bz-cp-mount .country-option .bz-cp-opt-dial {
  margin-inline-start: auto;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
}

html[dir="rtl"] .bz-cp-mount .country-search {
  padding: 0.4rem 2rem 0.4rem 0.7rem;
}
