/* فیلتر پاپ‌آپ — PopupManager.tsx / FilterPopup */

.ic-fil-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.ic-fil-popup[hidden] {
  display: none !important;
}

.ic-fil-popup__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.ic-fil-popup.is-open .ic-fil-popup__overlay {
  opacity: 1;
}

.ic-fil-popup__card {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: min(80vh, 500px);
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ic-fil-popup.is-open .ic-fil-popup__card {
  opacity: 1;
  transform: scale(1);
}

.ic-fil-popup__title {
  margin: 0 0 15px;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: right;
  color: #2d3a4a;
}

.ic-fil-popup__search {
  width: 100%;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.ic-fil-popup__search[hidden] {
  display: none !important;
}

.ic-fil-popup__search-box {
  position: relative;
}

.ic-fil-popup__search-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 48px 0 50px;
  font-size: 12px;
  color: #919aaf;
  text-align: right;
  pointer-events: none;
}

.ic-fil-popup__search-ph[hidden] {
  display: none !important;
}

.ic-fil-popup__search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 48px 15px 50px;
  border: 0;
  border-radius: 12px;
  background: #f8f9fb;
  font-family: inherit;
  font-size: 11.5px;
  color: #2d3a4a;
  text-align: right;
}

.ic-fil-popup__search-input:focus {
  outline: none;
}

.ic-fil-popup__search-input::-webkit-search-cancel-button,
.ic-fil-popup__search-input::-webkit-search-decoration {
  display: none !important;
}

.ic-fil-popup__search-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: #919aaf;
  pointer-events: none;
}

.ic-fil-popup__search-clear {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #919aaf;
  cursor: pointer;
}

.ic-fil-popup__search-clear[hidden] {
  display: none !important;
}

.ic-fil-popup__list-wrap {
  width: 100%;
  min-height: 0;
  flex: 1;
  overflow: hidden;
}

.ic-fil-popup__list-wrap.is-fixed {
  height: 428px;
  flex: 0 0 428px;
}

.ic-fil-popup__list {
  width: 100%;
  max-height: min(80vh, 500px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.ic-fil-popup__list-wrap.is-fixed .ic-fil-popup__list {
  max-height: 100%;
  height: 100%;
}

.ic-fil-popup__empty {
  margin: 0;
  padding: 16px 0;
  font-size: 11.5px;
  text-align: center;
  color: #919aaf;
}

.ic-fil-popup__empty[hidden] {
  display: none !important;
}

.ic-fil-popup__row {
  display: flex;
  flex-direction: row;
  direction: ltr;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin: 0 0 6px;
  padding: 8px 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  text-align: right;
}

.ic-fil-popup__row:last-child {
  margin-bottom: 0;
}

.ic-fil-popup__label {
  flex: 1;
  min-width: 0;
  margin-right: 8px;
  font-size: 11.8px;
  line-height: 1.5;
  color: #2d3a4a;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ic-fil-popup__radio {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background: #fff;
}

.ic-fil-popup__radio-dot {
  display: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4e91e6;
}

.ic-fil-popup.is-accent-green .ic-fil-popup__radio-dot {
  background: #2e9e5b;
}

.ic-fil-popup__row.is-selected .ic-fil-popup__radio {
  border-color: #4e91e6;
}

.ic-fil-popup.is-accent-green .ic-fil-popup__row.is-selected .ic-fil-popup__radio {
  border-color: #2e9e5b;
}

.ic-fil-popup__row.is-selected .ic-fil-popup__radio-dot {
  display: block;
}

.ic-fil-popup__row.is-child .ic-fil-popup__label {
  font-size: 11px;
  color: #2e9e5b;
}

.ic-fil-popup__row.is-child .ic-fil-popup__radio {
  width: 16px;
  height: 16px;
  border-width: 1.5px;
  border-color: #2e9e5b;
}

.ic-fil-popup__row.is-child .ic-fil-popup__radio-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: #2e9e5b;
}

@media (max-width: 480px) {
  .ic-fil-popup__card {
    width: 100%;
    padding: 24px 20px;
  }

  .ic-fil-popup__list-wrap.is-fixed {
    height: min(428px, 58vh);
    flex-basis: min(428px, 58vh);
  }
}
