/* ── Country Popup ──────────────────────────────────────────────────────── */
#mlx-country-popup {
  position: fixed; inset: 0; z-index: 999999;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
#mlx-country-popup.is-visible {
  opacity: 1; pointer-events: auto;
}
.mlx-country-popup__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
}
.mlx-country-popup__modal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2rem 1.75rem;
  width: min(420px, 92vw);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.mlx-country-popup__icon {
  font-size: 2.5rem;
  margin-bottom: .5rem;
}
.mlx-country-popup__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--mlx-color-primary, #1a1a1a);
}
.mlx-country-popup__select-wrap {
  position: relative;
  margin-bottom: 1rem;
}
.mlx-country-popup__select {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 1rem center;
  cursor: pointer;
}
.mlx-country-popup__select:focus {
  outline: none;
  border-color: var(--mlx-color-accent, #e84545);
}
.mlx-country-popup__btn {
  width: 100%;
  padding: .875rem;
  background: var(--mlx-color-accent, #e84545);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s;
}
.mlx-country-popup__btn:hover { opacity: .88; }

/* ── Free Shipping eligible rules ───────────────────────────────────────── */
.mlx-fsb__eligible {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}
.mlx-fsb__rule {
  font-size: .8125rem;
  color: var(--mlx-color-primary, #1a1a1a);
}
