.city-dialog-open { overflow: hidden; }
.city-dialog { width: min(480px, calc(100% - 40px)); max-width: none; max-height: calc(100dvh - 40px); margin: auto; padding: 0; border: 1px solid #ffffff80; border-radius: 12px; background: #f7f7f4; color: #091d0c; box-shadow: 0 24px 90px #0005; font-family: Manrope, sans-serif; }
.city-dialog::backdrop { background: #0009; backdrop-filter: blur(3px); }
.city-dialog[open] { animation: city-entrance .2s ease-out; }
.city-layout { position: relative; }
.city-content { padding: 32px; }
.city-dialog h2 { font-family: Manrope, sans-serif; font-size: 24px; font-weight: 700; line-height: 1.3; letter-spacing: -.025em; margin: 0 32px 10px 0; outline: none; }
.city-description { font-size: 14px; line-height: 1.6; color: #596057; margin: 0 0 24px; }
.city-close { position: absolute; z-index: 2; right: 12px; top: 12px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: #f7f7f4; color: #091d0c; font-size: 28px; line-height: 1; cursor: pointer; }
.city-available { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid #091d0c28; background: #091d0c05; border-radius: 6px; }
.city-available img { width: 28px; height: 32px; }
.city-available strong { display: block; font-family: Manrope, sans-serif; font-size: 18px; font-weight: 600; }
.city-available span:not(.city-check) { display: block; font-size: 12px; margin-top: 4px; }
.city-check { margin-left: auto; display: grid; place-items: center; width: 26px; height: 26px; background: #091d0c; color: white; border-radius: 50%; }
.city-unavailable { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; margin: 10px 0 28px; }
.city-unavailable > div { padding: 15px 0; border-bottom: 1px solid #091d0c18; }
.city-unavailable strong { display: block; font-size: 14px; font-weight: 500; color: #5b6059; }
.city-unavailable span { display: block; margin-top: 4px; font-size: 10px; color: #6b7068; }
.city-actions { display: grid; gap: 10px; }
.city-primary, .city-secondary { width: 100%; min-height: 48px; padding: 13px 16px; border-radius: 4px; font: 600 12px/1.5 Manrope, sans-serif; cursor: pointer; transition: background .15s, color .15s; }
.city-primary { background: #091d0c; border: 1px solid #091d0c; color: white; }
.city-primary span { margin-left: 12px; font-size: 18px; }
.city-primary:hover { background: #173a1b; }
.city-secondary { background: transparent; border: 1px solid #091d0c30; color: #091d0c; }
.city-secondary:hover { background: #b8785c10; }
.city-dialog :focus-visible { outline: 2px solid #b8785c; outline-offset: 4px; }
.city-form { display: grid; gap: 16px; }
.city-form > label { display: grid; gap: 6px; font-size: 12px; font-weight: 600; }
.city-form input:not([type=checkbox]), .city-form select { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid #091d0c30; border-radius: 3px; background: white; font: 14px Manrope, sans-serif; color: #091d0c; }
.city-form .city-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 11px; font-weight: 400; line-height: 1.6; }
.city-consent input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: #091d0c; }
.city-consent a { color: #764833; text-decoration: underline; }
.city-back { justify-self: start; padding: 0; border: 0; background: transparent; font: 500 12px Manrope, sans-serif; color: #764833; cursor: pointer; }
.city-feedback { margin: 0; font-size: 12px; line-height: 1.6; }
.city-dialog [hidden] { display: none !important; }
.city-dialog button:disabled { opacity: .6; cursor: wait; }
.city-success h3 { font: 500 24px/1.2 Archivo, sans-serif; }
.city-success p { font-size: 14px; line-height: 1.7; margin: 18px 0 28px; }
@keyframes city-entrance { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@media (min-width: 651px) and (max-height: 800px) {
  .city-content { padding-top: 32px; padding-bottom: 30px; }
  .city-unavailable > div { padding-block: 12px; }
}
@media (max-width: 650px) {
  .city-dialog { width: calc(100% - 24px); max-height: calc(100dvh - 24px); }
  .city-content { padding: 30px 24px 26px; }
  .city-dialog h2 { font-size: 22px; }
  .city-description { font-size: 13px; margin-bottom: 22px; }
  .city-available { padding: 16px; }
  .city-unavailable { margin-bottom: 22px; }
}
@media (prefers-reduced-motion: reduce) { .city-dialog[open] { animation: none; } .city-primary, .city-secondary { transition: none; } }
