/* Popup overlay & container */

.destination-popup {

  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;

  justify-content: center;

  align-items: center;

  pointer-events: none; /* disabled until opened */

}

.destination-popup[aria-hidden="false"] {

  pointer-events: auto;

}



/* overlay */

.destination-popup-overlay {

  position: absolute;

  inset: 0;

  background: rgba(0,0,0,0.45);

}



/* inner content */

.destination-popup-inner {

  position: relative;

  background: #fff;

  width: 92%;

  max-width: 820px;

  max-height: 86vh;

  overflow-y: auto;

  border-radius: 12px;

  padding: 30px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      font-family: 'Poppins';

}



/* close button */

.destination-popup-close {

  position: absolute;

  right: 14px;

  top: 1px;

  border: none;

  background: transparent;

  font-size: 28px;

  cursor: pointer;

}



/* header */

.destination-popup-header {

  display: flex;

  gap: 12px;

  align-items: center;

  margin-bottom: 12px;

}

.destination-popup-header h2 {

  margin: 0;

  font-size: 20px;

}

#popup-search {

  flex: 1;

  padding: 8px 10px;

  border: 1px solid #ddd;

  border-radius: 8px;

  font-family: 'Poppins';

}



/* list */

.destination-list-wrap { padding-top: 6px; }

.country-group { margin-bottom: 6px; }

.country-title {

  font-weight: 700;

  padding: 8px 10px;

  background: #fafafa;

  border-radius: 6px;

  margin-bottom: 4px;

}

.subcountry-list { padding-left: 10px; }

.destination-item {

  padding: 8px 10px;

  border-bottom: 1px solid #f0f0f0;

  cursor: pointer;

}

.destination-item:focus { outline: 2px solid #cbd5e1; }

.destination-item:hover { background: #f6f7f8; }

.item-count { color: #777; font-size: 12px; margin-left: 6px; }



/* small screens */

@media(max-width:520px){

  .destination-popup-inner { padding: 14px; border-radius: 8px; }

  .country-title { font-size: 16px; }

}

