/* t1624 — country picker styles (shared; account + checkout). Panel is portaled to body. */
.cv2-cpick {
  position: relative;
  width: 100%;
  display: block;
  box-sizing: border-box;
}
.cv2-cpick-native,
.cv2-cpick select.cv2-cpick-native,
select.cv2-cpick-native {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
.cv2-cpick__btn {
  width: 100%;
  min-height: 44px;
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #d5cfc8;
  border-radius: 10px;
  background: #fff;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}
.cv2-cpick.is-open .cv2-cpick__btn,
.cv2-cpick__btn:focus {
  outline: none;
  border-color: #9d0048;
  box-shadow: 0 0 0 2px rgba(157,0,72,.15);
}
.cv2-cpick__btn .cv2-clabel {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cv2-cflag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex: 0 0 auto;
}
.cv2-cpick__panel {
  position: fixed !important;
  z-index: 10060 !important;
  background: #fff;
  border: 1px solid #d5cfc8;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
  display: none;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
}
.cv2-cpick__panel[hidden] { display: none !important; }
.cv2-cpick__panel.is-open { display: flex !important; }
.cv2-cpick__search {
  flex: 0 0 auto;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #eee;
  padding: 12px 14px;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0;
  min-height: 0;
}
.cv2-cpick__list {
  flex: 1 1 auto;
  min-height: 120px;
  max-height: inherit;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}
.cv2-cpick__opt {
  width: 100%;
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  font-size: 14.5px;
  font-weight: 400;
  color: #1a1a1a;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  min-height: 0;
}
.cv2-cpick__opt:hover,
.cv2-cpick__opt.is-selected { background: #f7f3ef; }
.cv2-cpick__opt.is-selected { font-weight: 600; }
.cv2-cpick__empty { padding: 14px; color: #888; font-size: 14px; }

/* Account / Pure form: keep field overflow visible so button isn’t clipped */
#account_update .floatl,
#account_registration .floatl,
#account_table_form .floatl,
#account_update .pure-form,
#account_registration .pure-form,
.account-dev-panel[data-account-panel="profile"] {
  overflow: visible !important;
}
#account_update .cv2-cpick,
#account_registration .cv2-cpick,
#account_table_form .cv2-cpick {
  width: 100%;
  max-width: 100%;
}
