/* Selector geo CariHub — mismos botones que Home (país / estado / ciudad) */

.ch-geo-picker {
  --geo-rosa: #e91e63;
  --geo-radio: 10px;
  --geo-grad: linear-gradient(180deg, #ff2d6f 0%, #ec1458 45%, #c8004a 100%);
  --geo-shadow: 0 5px 16px rgba(220, 0, 82, 0.35), 0 0 0 0.5px rgba(255, 50, 110, 0.22);
}

.ch-geo-picker__label {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  color: #8b5a72;
}

.ch-geo-picker__field {
  margin-bottom: 12px;
}

.ch-geo-picker__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.ch-geo-picker .home-field {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border-radius: var(--geo-radio);
  padding: 0;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  border: none;
  background: var(--geo-grad);
  box-shadow: var(--geo-shadow);
}

.ch-geo-picker .home-field__display {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.ch-geo-picker .home-field.is-selected .home-field__display {
  opacity: 0;
  visibility: hidden;
}

.ch-geo-picker .home-field__display-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

.ch-geo-picker .home-field__display-bg--carinosas::after,
.ch-geo-picker .home-field__display-bg--pais::before,
.ch-geo-picker .home-field__display-bg--estado::before,
.ch-geo-picker .home-field__display-bg--ciudad::before {
  opacity: 0;
}

.ch-geo-picker .home-field__dropzone {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ch-geo-picker .home-field__drop-text {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

.ch-geo-picker .home-field--pais .home-field__drop-text { animation-delay: 0.35s; }
.ch-geo-picker .home-field--estado .home-field__drop-text { animation-delay: 0.7s; }
.ch-geo-picker .home-field--ciudad .home-field__drop-text { animation-delay: 1.05s; }

.ch-geo-picker .home-field__value,
.ch-geo-picker .home-field__label {
  display: none;
  position: relative;
  z-index: 3;
  flex: 1;
  min-width: 0;
  padding: 8px 22px 8px 10px;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.15;
  text-align: center;
}

.ch-geo-picker .home-field.is-selected .home-field__value,
.ch-geo-picker .home-field.is-selected .home-field__label {
  display: block;
}

.ch-geo-picker .home-field__arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  color: #fff;
  font-size: 8px;
  opacity: 0.92;
  pointer-events: none;
}

.ch-geo-picker .home-field__glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  z-index: 4;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  pointer-events: none;
  opacity: 0.75;
}

/* ── Modal geo — pantalla país (referencia registro-perfil) ── */
.ch-geo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100001;
  background: #fde8f0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}

/* Home: pink sheen fuerza z-index:1 en hijos de body; el modal va en <html> con !important */
body.carihub-page-sheen-active > .ch-geo-modal,
html > .ch-geo-modal,
.ch-geo-modal.is-open {
  z-index: 100001 !important;
}

.ch-geo-modal.is-open {
  display: block;
}

body.ch-geo-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.ch-geo-sheet {
  box-sizing: border-box;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: transparent;
  font-family: 'Poppins', Montserrat, system-ui, sans-serif;
}

/* Primer fondo rosa — visible arriba (fuera del panel interior) */
.ch-geo-sheet__crest {
  position: relative;
  flex-shrink: 0;
  height: max(46px, calc(env(safe-area-inset-top, 0px) + 40px));
  background: transparent;
}

.ch-geo-modal--estado .ch-geo-sheet__crest,
.ch-geo-modal--ciudad .ch-geo-sheet__crest {
  height: max(52px, calc(env(safe-area-inset-top, 0px) + 46px));
}

/* Segundo fondo rosa — empieza debajo del crest, no llega hasta arriba */
.ch-geo-sheet__panel {
  box-sizing: border-box;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 10px max(14px, env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, #fff8fb 0%, #ffedf5 55%, #ffe8f2 100%);
  border-radius: 22px 22px 0 0;
}

.ch-geo-modal--pais .ch-geo-sheet__panel {
  padding-top: 0;
}

.ch-geo-modal--pais .ch-geo-sheet__head {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 10px 8px 6px;
  margin: 0;
}

.ch-geo-sheet__handle {
  display: none;
}

.ch-geo-sheet__topbar {
  position: absolute;
  top: max(6px, env(safe-area-inset-top, 0px));
  right: 10px;
  left: 10px;
  height: 34px;
  margin: 0;
}

.ch-geo-modal--pais .ch-geo-sheet__topbar {
  right: 10px;
  left: auto;
  width: auto;
}

.ch-geo-sheet__nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(233, 30, 99, 0.16);
  border-radius: 50%;
  background: #fff;
  color: #e91e63;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(233, 30, 99, 0.12);
}

.ch-geo-modal--pais .ch-geo-sheet__nav {
  display: none;
}

.ch-geo-sheet__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(233, 30, 99, 0.14);
  border-radius: 50%;
  background: #fff;
  color: #e91e63;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.1);
}

.ch-geo-sheet__head {
  flex-shrink: 0;
  padding: 8px 14px 10px;
}

.ch-geo-sheet__head--pais {
  text-align: center;
  padding: 12px 14px 10px;
}

.ch-geo-sheet__head--pais .ch-geo-sheet__heading {
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
}

.ch-geo-sheet__head--pais .ch-geo-sheet__title {
  font-size: 20px;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
}

.ch-geo-sheet__head--pais .ch-geo-sheet__subtitle {
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #555;
  white-space: normal;
}

.ch-geo-sheet__head--estado {
  text-align: center;
  padding: 12px 14px 10px;
}

.ch-geo-sheet__head--estado .ch-geo-sheet__heading {
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
}

.ch-geo-sheet__head--estado .ch-geo-sheet__title {
  font-size: 26px;
  font-weight: 800;
  color: #000;
  line-height: 1.05;
}

.ch-geo-sheet__head--estado .ch-geo-sheet__subtitle {
  text-align: center;
  margin: 0;
  font-size: 14px;
  color: #555;
}

.ch-geo-sheet__head--ciudad {
  text-align: center;
  padding: 12px 14px 10px;
}

.ch-geo-sheet__head--ciudad .ch-geo-sheet__heading {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
}

.ch-geo-sheet__head--ciudad .ch-geo-sheet__title {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
}

.ch-geo-sheet__head--ciudad .ch-geo-sheet__subtitle {
  text-align: center;
  margin: 0;
  padding-left: 0;
  font-size: 14px;
  color: #555;
}

.ch-geo-sheet__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
}

.ch-geo-modal--pais .ch-geo-sheet__heading {
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
}

.ch-geo-sheet__icon--globe {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  line-height: 0;
}

.ch-geo-sheet__globe-svg {
  display: block;
  width: 40px;
  height: 40px;
}

.ch-geo-sheet__head--pais .ch-geo-sheet__title {
  font-size: 20px;
  line-height: 1.1;
  padding-top: 0;
}

.ch-geo-sheet__head--estado .ch-geo-sheet__heading {
  gap: 12px;
}

.ch-geo-sheet__head--estado .ch-geo-sheet__title {
  font-size: 26px;
}

.ch-geo-sheet__head--ciudad .ch-geo-sheet__heading {
  flex-direction: row;
  gap: 12px;
}

.ch-geo-sheet__head--ciudad .ch-geo-sheet__title {
  font-size: 22px;
}

.ch-geo-sheet__icon {
  font-size: 32px;
  line-height: 1;
  margin: 0;
}

.ch-geo-sheet__icon--pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: none;
  font-size: 22px;
  line-height: 1;
  box-shadow: none;
}

.ch-geo-sheet__pin-svg {
  display: block;
  width: 34px;
  height: 44px;
}

.ch-geo-sheet__icon--flag-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.ch-geo-sheet__icon--flag-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ch-geo-sheet__icon--flag {
  font-size: 28px;
  line-height: 1;
}

.ch-geo-sheet__title {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.ch-geo-sheet__subtitle {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  line-height: 1.25;
}

.ch-geo-modal--pais .ch-geo-sheet__subtitle {
  text-align: left;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  max-width: none;
}

.ch-geo-sheet__banner {
  flex-shrink: 0;
  display: block;
  position: relative;
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-right: -10px;
  height: 88px;
  margin-top: 8px;
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(60, 0, 35, 0.24);
}

.ch-geo-sheet__banner-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.ch-geo-sheet__banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  z-index: 0;
}

.ch-geo-sheet__banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.ch-geo-sheet__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ch-geo-sheet__banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(180deg, rgba(15, 0, 25, 0.12), rgba(35, 0, 45, 0.58));
  color: #fff;
  text-align: center;
  padding: 6px;
}

.ch-geo-sheet__banner-title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.ch-geo-sheet__banner-cta {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5c9a, #e91e63);
  font-size: 11px;
  font-weight: 800;
}

.ch-geo-sheet__search {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 58px;
  margin: 0 0 14px;
  padding: 0 18px;
  border-radius: 29px;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 99, 0.32);
  box-shadow: 0 4px 16px rgba(233, 30, 99, 0.08);
  box-sizing: border-box;
}

.ch-geo-sheet__search-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #e91e63;
}

.ch-geo-sheet__search input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  color: #3d2030;
  outline: none;
}

.ch-geo-sheet__search input::placeholder {
  color: #c9a0b0;
}

.ch-geo-sheet__scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 16px;
}

.ch-geo-sheet__section-title {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 800;
  color: #e91e63;
  line-height: 1.2;
}

.ch-geo-sheet__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ch-geo-card {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 128px;
  padding: 12px;
  border: none;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(233, 30, 99, 0.11);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: 10px;
  box-sizing: border-box;
}

.ch-geo-card__thumb {
  flex: 0 0 38%;
  width: 38%;
  max-width: 138px;
  height: 104px;
  min-height: 104px;
  border-radius: 14px;
  overflow: hidden;
  background: #ffe4ef;
  flex-shrink: 0;
}

.ch-geo-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ch-geo-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.ch-geo-card__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.ch-geo-card__thumb--flag-real {
  background: transparent;
}

.ch-geo-card__thumb--flag-real img {
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.ch-geo-card__title {
  display: block;
  margin: 0;
  width: 100%;
  font-size: 22px;
  font-weight: 800;
  color: #e91e63;
  line-height: 1.12;
}

.ch-geo-card--pais .ch-geo-card__title {
  font-size: clamp(14px, 3.6vw, 17px);
  line-height: 1.15;
}

.ch-geo-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #4a4048;
  line-height: 1.25;
}

.ch-geo-card--pais .ch-geo-card__meta {
  font-size: 9px;
  line-height: 1.2;
  gap: 4px;
}

.ch-geo-card__meta span {
  min-width: 0;
}

.ch-geo-card__meta svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #e91e63;
}

.ch-geo-card__go {
  flex: 0 0 54px;
  align-self: center;
  width: 54px;
  height: 54px;
  margin: 0 2px 0 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--geo-grad, linear-gradient(180deg, #ff5c9a 0%, #e91e63 52%, #d81b7a 100%));
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--geo-shadow, 0 6px 18px rgba(233, 30, 99, 0.34));
  flex-shrink: 0;
}

.ch-geo-sheet__more {
  margin-top: 4px;
  width: 100%;
  min-height: 52px;
  padding: 14px;
  border: 1px dashed color-mix(in srgb, var(--rp-form-accent, #e91e63) 35%, transparent);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--rp-form-accent, #c2185b);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
}

.ch-geo-sheet__empty {
  padding: 22px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: #7a4a5d;
  font-size: 15px;
  text-align: center;
  line-height: 1.45;
}

.ch-geo-sheet__loading {
  padding: 28px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: #7a4a5d;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  line-height: 1.45;
}

.ch-geo-sheet__list-sentinel {
  height: 8px;
  flex-shrink: 0;
}

.ch-geo-sheet__footer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin-top: 12px;
  padding: 14px 18px;
  border: none;
  border-radius: 999px;
  background: var(--geo-grad, linear-gradient(180deg, #ff5c9a 0%, #e91e63 52%, #d81b7a 100%));
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--geo-shadow, 0 8px 24px rgba(233, 30, 99, 0.38));
  font-family: inherit;
}

@media (prefers-reduced-motion: reduce) {
  .ch-geo-picker .home-field__drop-text {
    animation: none !important;
  }
}

.ch-geo-modal--estado .ch-geo-sheet__topbar,
.ch-geo-modal--ciudad .ch-geo-sheet__topbar {
  position: absolute;
  top: max(8px, env(safe-area-inset-top, 0px));
  right: 10px;
  left: 10px;
  height: 36px;
}

.ch-geo-modal--estado .ch-geo-sheet__panel,
.ch-geo-modal--ciudad .ch-geo-sheet__panel {
  border-radius: 22px 22px 0 0;
}

.ch-geo-modal--estado .ch-geo-sheet__banner,
.ch-geo-modal--ciudad .ch-geo-sheet__banner {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  border-radius: 20px;
}

@media (max-width: 480px) {
  .ch-geo-picker .home-field {
    min-height: 40px;
  }
}

@media (max-width: 360px) {
  .ch-geo-modal--pais .ch-geo-sheet__title {
    font-size: 20px;
  }

  .ch-geo-modal--pais .ch-geo-sheet__subtitle {
    font-size: 11.5px;
  }
}

/* Home: modal país — premium pink neon (alineado con shell Home) */
html .ch-geo-modal.ch-geo-modal--home {
  background:
    linear-gradient(165deg, #fff5fa 0%, #ffd8eb 30%, #ffc4df 55%, #ffe8f2 100%) !important;
}

html .ch-geo-modal.ch-geo-modal--home::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 78% 58% at 12% 6%, rgba(255, 255, 255, 0.58) 0%, transparent 62%),
    radial-gradient(ellipse 62% 48% at 90% 10%, rgba(255, 190, 215, 0.42) 0%, transparent 58%),
    radial-gradient(circle at 50% 100%, rgba(233, 30, 99, 0.14) 0%, transparent 55%);
}

html .ch-geo-modal.ch-geo-modal--home .ch-geo-sheet {
  position: relative;
  z-index: 1;
}

html .ch-geo-modal.ch-geo-modal--home .ch-geo-sheet__panel {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 246, 250, 0.9) 48%,
    rgba(255, 237, 245, 0.88) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 -14px 44px rgba(233, 30, 99, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* Home país/estado/ciudad: banner rectangular, cover suave + rotación 3 slides */
html .ch-geo-modal.ch-geo-modal--home .ch-geo-sheet__banner {
  height: 152px;
  margin-top: 4px;
  margin-bottom: 14px;
  background: transparent;
}

html .ch-geo-modal.ch-geo-modal--home .ch-geo-sheet__banner-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

html .ch-geo-modal.ch-geo-modal--home .ch-geo-sheet__banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  z-index: 0;
}

html .ch-geo-modal.ch-geo-modal--home .ch-geo-sheet__banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

html .ch-geo-modal.ch-geo-modal--home .ch-geo-sheet__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

html .ch-geo-modal.ch-geo-modal--home.ch-geo-modal--pais .ch-geo-sheet__head {
  position: relative;
  overflow: hidden;
  padding-top: 4px;
}

html .ch-geo-modal.ch-geo-modal--home.ch-geo-modal--estado .ch-geo-sheet__head,
html .ch-geo-modal.ch-geo-modal--home.ch-geo-modal--ciudad .ch-geo-sheet__head {
  position: relative;
  overflow: hidden;
  padding-top: 4px;
  padding-bottom: 4px;
}

.ch-geo-head-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.ch-geo-head-deco__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 254, 0.55) 0%,
    rgba(255, 244, 250, 0.38) 52%,
    rgba(255, 236, 246, 0.22) 100%
  );
}

.ch-geo-head-deco--pais .ch-geo-head-deco__wash {
  background:
    radial-gradient(ellipse 72% 88% at 88% 18%, rgba(255, 182, 212, 0.28) 0%, transparent 62%),
    radial-gradient(ellipse 58% 70% at 8% 72%, rgba(255, 220, 236, 0.32) 0%, transparent 58%),
    linear-gradient(168deg, rgba(255, 248, 252, 0.62) 0%, rgba(255, 228, 240, 0.28) 100%);
}

.ch-geo-head-deco--estado .ch-geo-head-deco__wash,
.ch-geo-head-deco--ciudad .ch-geo-head-deco__wash {
  background: linear-gradient(
    180deg,
    rgba(255, 252, 254, 0.58) 0%,
    rgba(255, 242, 248, 0.34) 55%,
    rgba(255, 232, 242, 0.18) 100%
  );
}

.ch-geo-head-deco--estado .ch-geo-world-map,
.ch-geo-head-deco--ciudad .ch-geo-world-map {
  display: none;
}

.ch-geo-head-deco--estado .ch-geo-sparkle,
.ch-geo-head-deco--ciudad .ch-geo-sparkle {
  opacity: 0.38;
}

.ch-geo-head-deco[hidden] {
  display: none !important;
}

.ch-geo-sparkle {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(255, 220, 236, 0.75) 42%, transparent 72%);
  filter: blur(1.2px);
  opacity: 0.5;
  box-shadow: 0 0 10px rgba(255, 200, 220, 0.65);
}

.ch-geo-sparkle--tl.ch-geo-sparkle--1 { top: 6px; left: 18px; width: 5px; height: 5px; opacity: 0.42; }
.ch-geo-sparkle--tl.ch-geo-sparkle--2 { top: 18px; left: 34px; width: 8px; height: 8px; opacity: 0.55; }
.ch-geo-sparkle--tl.ch-geo-sparkle--3 { top: 10px; left: 52px; width: 4px; height: 4px; opacity: 0.35; }
.ch-geo-sparkle--tr.ch-geo-sparkle--4 { top: 8px; right: 56px; width: 6px; height: 6px; opacity: 0.48; }
.ch-geo-sparkle--tr.ch-geo-sparkle--5 { top: 20px; right: 34px; width: 9px; height: 9px; opacity: 0.58; }
.ch-geo-sparkle--tr.ch-geo-sparkle--6 { top: 12px; right: 18px; width: 4px; height: 4px; opacity: 0.38; }

.ch-geo-world-map {
  position: absolute;
  top: -28px;
  right: -36px;
  width: min(240px, 58vw);
  height: 140px;
  background: url('../img/geo/world-map-watermark.svg') no-repeat center / contain;
  opacity: 0.08;
  filter: blur(1px);
  z-index: 0;
}

.ch-geo-glow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 2px 0 10px;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

.ch-geo-glow-divider[hidden] {
  display: none !important;
}

.ch-geo-glow-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.42), transparent);
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.35);
}

.ch-geo-glow-divider__gem {
  flex-shrink: 0;
  font-size: 11px;
  line-height: 1;
  color: #e91e63;
  text-shadow: 0 0 12px rgba(233, 30, 99, 0.65);
  opacity: 0.88;
}

html .ch-geo-modal.ch-geo-modal--home .ch-geo-sheet__heading {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin-bottom: 2px;
}

html .ch-geo-modal.ch-geo-modal--home .ch-geo-sheet__title--gradient {
  background: linear-gradient(135deg, #ff2d6f 0%, #e91e63 48%, #c2185b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(24px, 6.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

html .ch-geo-modal.ch-geo-modal--home .ch-geo-sheet__head--pais .ch-geo-sheet__subtitle,
html .ch-geo-modal.ch-geo-modal--home .ch-geo-sheet__head--estado .ch-geo-sheet__subtitle,
html .ch-geo-modal.ch-geo-modal--home .ch-geo-sheet__head--ciudad .ch-geo-sheet__subtitle {
  position: relative;
  z-index: 1;
  color: #4a3540;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.35;
}

html .ch-geo-modal.ch-geo-modal--home .ch-geo-sheet__section-title {
  color: #c2185b;
  font-weight: 800;
  font-size: 15px;
}

html .ch-geo-modal.ch-geo-modal--home .ch-geo-sheet__search {
  border: 2px solid rgba(233, 30, 99, 0.2);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 4px 18px rgba(233, 30, 99, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

html .ch-geo-modal.ch-geo-modal--home .ch-geo-sheet__search-icon {
  color: #e91e63;
}

.ch-geo-sparkle--tl.ch-geo-sparkle--2::after,
.ch-geo-sparkle--tr.ch-geo-sparkle--5::after {
  content: '✦';
  position: absolute;
  top: -5px;
  left: -4px;
  font-size: 13px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 0 10px rgba(255, 190, 215, 0.95);
  filter: blur(0.35px);
  opacity: 0.72;
}
