/* Locations Widget Shortcode: [ie_locations_menu] — Compact (See more countries) */

.ie-loc-widget{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

/* Panel (no header now) */
.ie-loc-widget__panel{
  padding: 8px;
}

/* Country cards (tight) */
.ie-loc-widget__country{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.ie-loc-widget__country + .ie-loc-widget__country{
  margin-top: 6px;
}

.ie-loc-widget__country-summary{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  cursor: pointer;
  user-select: none;
  line-height: 1.2;
}
.ie-loc-widget__country-summary::-webkit-details-marker{ display:none; }
.ie-loc-widget__country-summary::marker{ content:""; }

.ie-loc-widget__country-summary:hover{
  background: rgba(0,0,0,.03);
}

/* Chevron */
.ie-loc-widget__chev{
  display: inline-block;
  transition: transform .15s ease;
  opacity: .75;
  line-height: 1;
  font-size: 12px;
}

.ie-loc-widget__country[open] > .ie-loc-widget__country-summary .ie-loc-widget__chev{
  transform: rotate(90deg);
}

/* Round flag (smaller) */
.ie-loc-widget__flag{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 14px;
}
.ie-loc-widget__flag img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Links */
.ie-loc-widget__country-link{
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
}
.ie-loc-widget__country-link:hover{
  text-decoration: underline;
}

/* Cities (no bullets, indented) */
.ie-loc-widget__cities{
  margin: 0;
  padding: 6px 9px 9px 34px; /* indentation */
  list-style: none;
}

.ie-loc-widget__city{
  margin-left: 10px;
padding-bottom: 1px !important;
}

.ie-loc-widget__city + .ie-loc-widget__city{
  margin-top: 0; /* tight */
}

.ie-loc-widget__city a{
  text-decoration: none;
  font-size: 13px;
  line-height: 1.2;
  display: inline-block;
}
.ie-loc-widget__city a:hover{
  text-decoration: underline;
}

/* See more countries toggle (match country card style) */
.ie-loc-widget__more{
  margin-top: 8px;
}

.ie-loc-widget__more-summary{
  list-style: none;
  cursor: pointer;
  user-select: none;

  /* match country card look */
  padding: 7px 9px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  background: #fff;

  font-size: 13px;
  font-weight: 800;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.2;
}
.ie-loc-widget__more-summary::-webkit-details-marker{ display:none; }
.ie-loc-widget__more-summary::marker{ content:""; }

.ie-loc-widget__more-summary:hover{
  background: rgba(0,0,0,.03);
}

/* Small arrow like toggle */
.ie-loc-widget__more-arrow{
  display: inline-block;
  transition: transform .15s ease;
  opacity: .75;
  line-height: 1;
  font-size: 12px;
}
.ie-loc-widget__more[open] .ie-loc-widget__more-arrow{
  transform: rotate(180deg);
}

/* Swap text (See more vs See fewer) */
.ie-loc-widget__more-text--close{ display:none; }
.ie-loc-widget__more[open] .ie-loc-widget__more-text--open{ display:none; }
.ie-loc-widget__more[open] .ie-loc-widget__more-text--close{ display:inline; }

.ie-loc-widget__more-panel{
  margin-top: 6px;
}

/* Empty */
.ie-loc-widget__empty{
  margin: 0;
  padding: 8px 10px;
  font-size: 13px;
}
