/* Base container */
.wpml-price-filter {
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 14px 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  max-width: 520px;
}

.wpml-pf-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.wpml-pf-title {
  font-weight: 600;
  font-size: 16px;
}

.wpml-pf-currency {
  color: #777;
  font-size: 13px;
}

.wpml-pf-body {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wpml-pf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.wpml-pf-input-wrap {
  position: relative;
}

.wpml-pf-symbol {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  color: #555;
}

.wpml-price-filter.rtl .wpml-pf-symbol {
  left: auto;
  right: 10px;
}

#wpml-pf-min,
#wpml-pf-max {
  width: 100%;
  padding: 10px 12px 10px 28px;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  font-size: 14px;
}

.wpml-price-filter.rtl #wpml-pf-min,
.wpml-price-filter.rtl #wpml-pf-max {
  padding-left: 12px;
  padding-right: 28px;
}

.wpml-pf-sep {
  color: #999;
}

.wpml-pf-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.wpml-pf-apply.button-primary {
  background: #2271b1;
  border-color: #0a4b78;
}

.wpml-pf-clear.button {
  background: #f6f7f7;
  border-color: #dcdcde;
}

@media (max-width: 480px) {
  .wpml-pf-body { flex-direction: column; }
}

